Re: CephFS Slow writes with 1MB files

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Here is the mds output from the command you requested. I did this
during the small data run . ( time cp small1/* small2/ )
It is 20MB in size so I couldn't find a place online that would accept
that much data.

Please find attached file.

Thanks,

Beeij


On Mon, Mar 30, 2015 at 10:59 PM, Yan, Zheng <ukernel@xxxxxxxxx> wrote:
> On Sun, Mar 29, 2015 at 1:12 AM, Barclay Jameson
> <almightybeeij@xxxxxxxxx> wrote:
>> I redid my entire Ceph build going back to to CentOS 7 hoping to the
>> get the same performance I did last time.
>> The rados bench test was the best I have ever had with a time of 740
>> MB wr and 1300 MB rd. This was even better than the first rados bench
>> test that had performance equal to PanFS. I find that this does not
>> translate to my CephFS. Even with the following tweaking it still at
>> least twice as slow as PanFS and my first *Magical* build (that had
>> absolutely no tweaking):
>>
>> OSD
>>  osd_op_treads 8
>>  /sys/block/sd*/queue/nr_requests 4096
>>  /sys/block/sd*/queue/read_ahead_kb 4096
>>
>> Client
>>  rsize=16777216
>>  readdir_max_bytes=16777216
>>  readdir_max_entries=16777216
>>
>> ~160 mins to copy 100000 (1MB) files for CephFS vs ~50 mins for PanFS.
>> Throughput on CephFS is about 10MB/s vs PanFS 30 MB/s.
>>
>> Strange thing is none of the resources are taxed.
>> CPU, ram, network, disks, are not even close to being taxed on either
>> the client,mon/mds, or the osd nodes.
>> The PanFS client node was a 10Gb network the same as the CephFS client
>> but you can see the huge difference in speed.
>>
>> As per Gregs questions before:
>> There is only one client reading and writing (time cp Small1/*
>> Small2/.) but three clients have cephfs mounted, although they aren't
>> doing anything on the filesystem.
>>
>> I have done another test where I stream data info a file as fast as
>> the processor can put it there.
>> (for (i=0; i < 1000000001; i++){ fprintf (out_file, "I is : %d\n",i);}
>> ) and it is faster than the PanFS. CephFS 16GB in 105 seconds with the
>> above tuning vs 130 seconds for PanFS. Without the tuning it takes 230
>> seconds for CephFS although the first build did it in 130 seconds
>> without any tuning.
>>
>> This leads me to believe the bottleneck is the mds. Does anybody have
>> any thoughts on this?
>> Are there any tuning parameters that I would need to speed up the mds?
>
> could you enable mds debugging for a few seconds (ceph daemon mds.x
> config set debug_mds 10; sleep 10; ceph daemon mds.x config set
> debug_mds 0). and upload /var/log/ceph/mds.x.log to somewhere.
>
> Regards
> Yan, Zheng
>
>>
>> On Fri, Mar 27, 2015 at 4:50 PM, Gregory Farnum <greg@xxxxxxxxxxx> wrote:
>>> On Fri, Mar 27, 2015 at 2:46 PM, Barclay Jameson
>>> <almightybeeij@xxxxxxxxx> wrote:
>>>> Yes it's the exact same hardware except for the MDS server (although I
>>>> tried using the MDS on the old node).
>>>> I have not tried moving the MON back to the old node.
>>>>
>>>> My default cache size is "mds cache size = 10000000"
>>>> The OSDs (3 of them) have 16 Disks with 4 SSD Journal Disks.
>>>> I created 2048 for data and metadata:
>>>> ceph osd pool create cephfs_data 2048 2048
>>>> ceph osd pool create cephfs_metadata 2048 2048
>>>>
>>>>
>>>> To your point on clients competing against each other... how would I check that?
>>>
>>> Do you have multiple clients mounted? Are they both accessing files in
>>> the directory(ies) you're testing? Were they accessing the same
>>> pattern of files for the old cluster?
>>>
>>> If you happen to be running a hammer rc or something pretty new you
>>> can use the MDS admin socket to explore a bit what client sessions
>>> there are and what they have permissions on and check; otherwise
>>> you'll have to figure it out from the client side.
>>> -Greg
>>>
>>>>
>>>> Thanks for the input!
>>>>
>>>>
>>>> On Fri, Mar 27, 2015 at 3:04 PM, Gregory Farnum <greg@xxxxxxxxxxx> wrote:
>>>>> So this is exactly the same test you ran previously, but now it's on
>>>>> faster hardware and the test is slower?
>>>>>
>>>>> Do you have more data in the test cluster? One obvious possibility is
>>>>> that previously you were working entirely in the MDS' cache, but now
>>>>> you've got more dentries and so it's kicking data out to RADOS and
>>>>> then reading it back in.
>>>>>
>>>>> If you've got the memory (you appear to) you can pump up the "mds
>>>>> cache size" config option quite dramatically from it's default 100000.
>>>>>
>>>>> Other things to check are that you've got an appropriately-sized
>>>>> metadata pool, that you've not got clients competing against each
>>>>> other inappropriately, etc.
>>>>> -Greg
>>>>>
>>>>> On Fri, Mar 27, 2015 at 9:47 AM, Barclay Jameson
>>>>> <almightybeeij@xxxxxxxxx> wrote:
>>>>>> Opps I should have said that I am not just writing the data but copying it :
>>>>>>
>>>>>> time cp Small1/* Small2/*
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>> BJ
>>>>>>
>>>>>> On Fri, Mar 27, 2015 at 11:40 AM, Barclay Jameson
>>>>>> <almightybeeij@xxxxxxxxx> wrote:
>>>>>>> I did a Ceph cluster install 2 weeks ago where I was getting great
>>>>>>> performance (~= PanFS) where I could write 100,000 1MB files in 61
>>>>>>> Mins (Took PanFS 59 Mins). I thought I could increase the performance
>>>>>>> by adding a better MDS server so I redid the entire build.
>>>>>>>
>>>>>>> Now it takes 4 times as long to write the same data as it did before.
>>>>>>> The only thing that changed was the MDS server. (I even tried moving
>>>>>>> the MDS back on the old slower node and the performance was the same.)
>>>>>>>
>>>>>>> The first install was on CentOS 7. I tried going down to CentOS 6.6
>>>>>>> and it's the same results.
>>>>>>> I use the same scripts to install the OSDs (which I created because I
>>>>>>> can never get ceph-deploy to behave correctly. Although, I did use
>>>>>>> ceph-deploy to create the MDS and MON and initial cluster creation.)
>>>>>>>
>>>>>>> I use btrfs on the OSDS as I can get 734 MB/s write and 1100 MB/s read
>>>>>>> with rados bench -p cephfs_data 500 write --no-cleanup && rados bench
>>>>>>> -p cephfs_data 500 seq (xfs was 734 MB/s write but only 200 MB/s read)
>>>>>>>
>>>>>>> Could anybody think of a reason as to why I am now getting a huge regression.
>>>>>>>
>>>>>>> Hardware Setup:
>>>>>>> [OSDs]
>>>>>>> 64 GB 2133 MHz
>>>>>>> Dual Proc E5-2630 v3 @ 2.40GHz (16 Cores)
>>>>>>> 40Gb Mellanox NIC
>>>>>>>
>>>>>>> [MDS/MON new]
>>>>>>> 128 GB 2133 MHz
>>>>>>> Dual Proc E5-2650 v3 @ 2.30GHz (20 Cores)
>>>>>>> 40Gb Mellanox NIC
>>>>>>>
>>>>>>> [MDS/MON old]
>>>>>>> 32 GB 800 MHz
>>>>>>> Dual Proc E5472  @ 3.00GHz (8 Cores)
>>>>>>> 10Gb Intel NIC
>>>>>> _______________________________________________
>>>>>> ceph-users mailing list
>>>>>> ceph-users@xxxxxxxxxxxxxx
>>>>>> http://lists.ceph.com/listinfo.cgi/ceph-users-ceph.com
>> _______________________________________________
>> ceph-users mailing list
>> ceph-users@xxxxxxxxxxxxxx
>> http://lists.ceph.com/listinfo.cgi/ceph-users-ceph.com
2015-03-31 11:02:21.306214 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407282 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.306259 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407282 cr=0x26d3e900)
2015-03-31 11:02:21.306262 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407282 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.306267 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407282 cr=0x26d3e900) #1000006b2a0
2015-03-31 11:02:21.306269 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a0 snap head
2015-03-31 11:02:21.306271 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.306273 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.306297 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407282 cr=0x26d3e900)
2015-03-31 11:02:21.306300 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.306335 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.306349 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.306364 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.306376 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.306403 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.306419 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.306443 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.306453 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.306462 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.306474 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.306484 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) auth_pin by 0x29a74600 on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228] now 1+0
2015-03-31 11:02:21.306495 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.306511 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.306526 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.306537 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.306548 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.306557 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.306569 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.306579 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.306597 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407282 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.306602 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407282 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.306615 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.306619 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.306624 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:21.306627 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.306644 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407282 cr=0x26d3e900)
2015-03-31 11:02:21.306669 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.306688 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.306704 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.306714 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.306725 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.306737 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.306760 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.306770 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.306780 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.306806 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.306819 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.306831 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) auth_unpin by 0x29a74600 on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f44c228] now 0+0
2015-03-31 11:02:21.307977 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e28 follows 0 op update
2015-03-31 11:02:21.307982 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.307994 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.307996 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.308015 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.308016 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308023 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308032 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.308034 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308040 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308049 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308054 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.308056 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308063 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308070 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308076 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308082 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.308083 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.308085 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e28 [2,head] /test_small/small1/blarg10010 auth v136838 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cdfc8]
2015-03-31 11:02:21.308092 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.348093 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407283 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.348123 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407283 cr=0x26d3f080)
2015-03-31 11:02:21.348126 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407283 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.348130 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407283 cr=0x26d3f080) #1000006b2a0
2015-03-31 11:02:21.348132 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a0 snap head
2015-03-31 11:02:21.348134 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.348135 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.348156 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407283 cr=0x26d3f080)
2015-03-31 11:02:21.348160 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.348181 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.348195 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.348220 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.348232 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.348248 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.348274 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.348297 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.348309 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.348319 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.348331 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.348341 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) auth_pin by 0x29a74600 on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228] now 1+0
2015-03-31 11:02:21.348352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.348367 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.348382 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.348391 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.348402 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.348413 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.348424 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.348435 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.348452 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407283 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.348457 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407283 getattr Xs #1000006b2a0 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.348470 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.348474 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.348478 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:21.348481 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.348498 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407283 cr=0x26d3f080)
2015-03-31 11:02:21.348523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.348542 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.348558 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.348570 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.348582 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.348594 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.348617 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.348629 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f44c228]
2015-03-31 11:02:21.348641 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.348657 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.348669 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.348679 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) auth_unpin by 0x29a74600 on [inode 1000006b2a0 [2,head] {#1000006b2a0 /test_small/small5/blarg10010} auth v178620 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f44c228] now 0+0
2015-03-31 11:02:21.348948 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407284 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.348972 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407284 cr=0x26d39680)
2015-03-31 11:02:21.348974 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407284 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.348978 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407284 cr=0x26d39680) #10000004e2c
2015-03-31 11:02:21.348980 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e2c snap head
2015-03-31 11:02:21.348982 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.348983 7fbe462be700 10 mds.0.server ref is [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.348996 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407284 cr=0x26d39680)
2015-03-31 11:02:21.348999 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.349017 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.349029 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.349041 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.349047 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.349063 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.349078 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.349088 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.349101 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.349111 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a74600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.349123 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.349128 7fbe462be700 10 mds.0.cache.ino(10000004e2c) auth_pin by 0x29a74600 on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690] now 1+0
2015-03-31 11:02:21.349135 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.349151 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.349167 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.349177 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.349188 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.349209 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.349232 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349238 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349244 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349251 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349265 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407284 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.349270 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407284 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.349282 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.349287 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.349292 7fbe462be700 10 mds.0.cache.ino(10000004e2c) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:21.349294 7fbe462be700 10 mds.0.cache.ino(10000004e2c) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.349310 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407284 cr=0x26d39680)
2015-03-31 11:02:21.349332 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.349351 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.349366 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.349378 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.349390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.349400 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.349410 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349431 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349437 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.349451 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.349466 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.349476 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a74600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.349486 7fbe462be700 10 mds.0.cache.ino(10000004e2c) auth_unpin by 0x29a74600 on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cd690] now 0+0
2015-03-31 11:02:21.349889 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407285 lookup #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.349914 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407285 cr=0x26d3bc00)
2015-03-31 11:02:21.349918 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407285 lookup #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.349922 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407285 cr=0x26d3bc00) #1000006026a/blarg10011
2015-03-31 11:02:21.349924 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.349927 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10011 [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock) v=177604 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cd00]
2015-03-31 11:02:21.349939 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.349941 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407285 lookup #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.349957 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.349970 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407285 cr=0x26d3bc00)
2015-03-31 11:02:21.350480 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407286 lookup #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.350505 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407286 cr=0xaeeeb80)
2015-03-31 11:02:21.350509 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407286 lookup #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.350512 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407286 cr=0xaeeeb80) #1000006026a/blarg10011
2015-03-31 11:02:21.350515 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.350518 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10011 [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock) v=177604 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cd00]
2015-03-31 11:02:21.350529 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.350530 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407286 lookup #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.350543 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.350561 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407286 cr=0xaeeeb80)
2015-03-31 11:02:21.351076 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407287 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.351101 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407287 cr=0xaee8f00)
2015-03-31 11:02:21.351105 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407287 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.351109 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407287 cr=0xaee8f00) #10000004e2c
2015-03-31 11:02:21.351111 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e2c snap head
2015-03-31 11:02:21.351114 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.351115 7fbe462be700 10 mds.0.server ref is [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.351128 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407287 cr=0xaee8f00)
2015-03-31 11:02:21.351134 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.351155 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.351169 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.351181 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.351187 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.351203 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.351218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.351228 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.351240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.351251 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a74600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.351262 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.351268 7fbe462be700 10 mds.0.cache.ino(10000004e2c) auth_pin by 0x29a74600 on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690] now 1+0
2015-03-31 11:02:21.351277 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.351304 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.351332 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.351343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.351354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.351362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.351370 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351376 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351382 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351388 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351403 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407287 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.351408 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407287 getattr Xs #10000004e2c 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.351422 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.351425 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.351430 7fbe462be700 10 mds.0.cache.ino(10000004e2c) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:21.351432 7fbe462be700 10 mds.0.cache.ino(10000004e2c) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.351450 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407287 cr=0xaee8f00)
2015-03-31 11:02:21.351475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.351494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.351509 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.351522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.351533 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.351544 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.351567 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351577 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351586 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351592 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cd690]
2015-03-31 11:02:21.351600 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.351617 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.351630 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a74600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.351641 7fbe462be700 10 mds.0.cache.ino(10000004e2c) auth_unpin by 0x29a74600 on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9cd690] now 0+0
2015-03-31 11:02:21.352016 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407288 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.352043 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407288 cr=0xaee9180)
2015-03-31 11:02:21.352045 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407288 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.352049 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407288 cr=0xaee9180) #1000006026a
2015-03-31 11:02:21.352052 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.352054 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.352055 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352077 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407288 cr=0xaee9180)
2015-03-31 11:02:21.352081 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.352099 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.352113 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352126 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.352141 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.352157 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.352166 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.352179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352191 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.352204 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.352220 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.352246 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.352270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.352281 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352301 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352313 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31265} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352331 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407288 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.352337 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407288 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.352350 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.352354 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.352359 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31266
2015-03-31 11:02:21.352361 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31266 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.352379 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407288 cr=0xaee9180)
2015-03-31 11:02:21.352405 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.352424 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.352439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.352451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.352462 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352474 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352497 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352509 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.352520 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.352536 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.352548 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.352940 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407289 create #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.352965 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407289 cr=0xaeeb200)
2015-03-31 11:02:21.352967 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407289 create #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.352970 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10011
2015-03-31 11:02:21.352971 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407289 cr=0xaeeb200) #1000006026a/blarg10011
2015-03-31 11:02:21.352974 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10011
2015-03-31 11:02:21.352976 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.352978 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.352980 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178621 v=178611 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=13+1591,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.352994 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178621 v=178611 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=13+1591,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.353005 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10011 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178621 v=178611 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=13+1591,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.353018 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407289 cr=0xaeeb200)
2015-03-31 11:02:21.353024 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353046 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353060 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353074 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock) v=177604 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353081 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353097 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.353113 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353124 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.353137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=5+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353160 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.353172 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock) v=177604 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353177 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10011) auth_pin by 0x29a74600 on [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock) v=177604 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00] now 1+0
2015-03-31 11:02:21.353197 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock) v=177604 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353202 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177604 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353208 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177604 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353213 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177604 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353219 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177604 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353223 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10011) auth_pin by 0x676ce58 on [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177604 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00] now 2+0
2015-03-31 11:02:21.353229 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a74600) [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dn xlock x=1 by 0x29a74600) (dversion lock w=1 last_client=708310) v=177604 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353234 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353250 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353265 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353279 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353304 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353314 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353323 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353345 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353357 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353369 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353380 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353391 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353403 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353413 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353423 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353434 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353455 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a1 ([1000006b2a2~381], 897 left)
2015-03-31 11:02:21.353459 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:21.353461 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a1 [2,head] #1000006b2a1 auth v1 s=0 n() (iversion lock) 0x3f326dd0]
2015-03-31 11:02:21.353466 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178622
2015-03-31 11:02:21.353468 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10011)  pre_dirty [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dn xlock x=1 by 0x29a74600) (dversion lock w=1 last_client=708310) pv=178622 v=177604 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353477 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f326dd0]
2015-03-31 11:02:21.353486 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a74600 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178622 v=178611 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=13+1591,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:21.353498 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x4e396b0
2015-03-31 11:02:21.353499 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178623
2015-03-31 11:02:21.353501 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178611 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=13+1591,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.353508 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178611 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=13+1591,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.353515 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f326dd0]
2015-03-31 11:02:21.353521 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.353523 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295192 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353539 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295194
2015-03-31 11:02:21.353541 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295182 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.353546 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295194 (current v 3295182)
2015-03-31 11:02:21.353547 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178611 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=13+1591,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.353555 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.353556 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a74600 on [dir 10000000000 /test_small/ [2,head] auth pv=3295194 v=3295183 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382309+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:21.353566 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x4acb910
2015-03-31 11:02:21.353567 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295195
2015-03-31 11:02:21.353568 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353581 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353593 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353606 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.353608 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.69487 < 1, stopping
2015-03-31 11:02:21.353620 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.353632 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:21.353638 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295182 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.353643 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31266} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.353660 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f326dd0]
2015-03-31 11:02:21.353669 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:21.353673 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353681 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.353683 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353692 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353699 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353707 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353715 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353722 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353728 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353737 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353742 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353750 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353756 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353764 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353770 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353778 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353803 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f326dd0]
2015-03-31 11:02:21.353816 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.353817 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:21.353821 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f326dd0 tracedn 0x676cd00
2015-03-31 11:02:21.353825 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a74600) [dentry #1/test_small/small5/blarg10011 [2,head] auth NULL (dn xlock x=1 by 0x29a74600) (dversion lock w=1 last_client=708310) pv=178622 v=177604 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cd00]
2015-03-31 11:02:21.353833 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407289 create #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.353843 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.353847 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31267
2015-03-31 11:02:21.353850 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31267 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.353857 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:21.353861 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:21.353863 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) including xattrs version 0
2015-03-31 11:02:21.353909 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353943 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353960 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353969 7fbe406af700  5 mds.0.log _submit_thread 5419511073~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:21.353975 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.353992 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354017 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354031 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354041 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354054 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354068 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354081 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354093 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354106 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354117 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354465 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407290 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.354494 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407290 cr=0xaeeeb80)
2015-03-31 11:02:21.354496 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407290 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.354500 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407290 cr=0xaeeeb80) #1000006b2a1
2015-03-31 11:02:21.354503 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a1 snap head
2015-03-31 11:02:21.354505 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.354506 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f326dd0]
2015-03-31 11:02:21.354526 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407290 cr=0xaeeeb80)
2015-03-31 11:02:21.354530 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.354550 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354564 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354578 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f326dd0]
2015-03-31 11:02:21.354590 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.354607 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:21.354623 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354632 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:21.354646 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354658 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:21.354670 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f326dd0]
2015-03-31 11:02:21.354692 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_pin by 0x2367ad00 on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f326dd0] now 1+0
2015-03-31 11:02:21.354704 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.354732 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.354748 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354760 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354770 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354790 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354802 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.354813 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.354831 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407290 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.354837 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407290 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.354852 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.354856 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.354860 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:21.354864 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.354882 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407290 cr=0xaeeeb80)
2015-03-31 11:02:21.354907 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.354927 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.354943 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354954 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.354966 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.354978 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.355002 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.355014 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.355025 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.355042 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.355054 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.355067 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_unpin by 0x2367ad00 on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f326dd0] now 0+0
2015-03-31 11:02:21.355394 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407291 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.355417 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407291 cr=0x26d3bc00)
2015-03-31 11:02:21.355421 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407291 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.355425 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407291 cr=0x26d3bc00) #1000006b2a1
2015-03-31 11:02:21.355427 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a1 snap head
2015-03-31 11:02:21.355429 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.355430 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.355447 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407291 cr=0x26d3bc00)
2015-03-31 11:02:21.355450 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.355469 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.355482 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.355495 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.355506 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.355522 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:21.355537 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.355546 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:21.355559 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.355571 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:21.355584 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.355594 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_pin by 0x2367ad00 on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0] now 1+0
2015-03-31 11:02:21.355606 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.355622 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.355650 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.355674 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.355686 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.355697 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.355708 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.355718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.355734 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407291 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.355740 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407291 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.355754 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.355758 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.355762 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:21.355764 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.355787 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407291 cr=0x26d3bc00)
2015-03-31 11:02:21.355811 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.355830 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.355847 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.355859 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.355871 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.355883 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.355907 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.355919 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.355929 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.355946 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.355959 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.355969 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_unpin by 0x2367ad00 on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f326dd0] now 0+0
2015-03-31 11:02:21.359307 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e2c follows 0 op update
2015-03-31 11:02:21.359312 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359326 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.359331 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.359350 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.359351 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359359 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359369 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:21.359382 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359397 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359419 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359425 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.359428 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359438 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359444 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359450 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359450 7fbe406af700  5 mds.0.log _submit_thread 5419512713~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:21.359458 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359465 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359471 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359490 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.359500 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.399113 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407292 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.399142 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407292 cr=0x26d39680)
2015-03-31 11:02:21.399144 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407292 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.399149 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407292 cr=0x26d39680) #1000006b2a1
2015-03-31 11:02:21.399151 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a1 snap head
2015-03-31 11:02:21.399153 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.399155 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.399176 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407292 cr=0x26d39680)
2015-03-31 11:02:21.399180 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399200 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399217 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399243 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.399255 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399272 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:21.399288 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399300 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:21.399324 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399348 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:21.399360 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.399368 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_pin by 0x2367ad00 on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0] now 1+0
2015-03-31 11:02:21.399377 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399393 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399407 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399419 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399430 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399441 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399454 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.399464 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.399482 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407292 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.399488 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407292 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.399503 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.399507 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.399511 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:21.399514 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.399533 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407292 cr=0x26d39680)
2015-03-31 11:02:21.399558 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399578 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399595 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399607 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399620 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399632 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399656 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.399667 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.399678 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.399695 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.399707 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.399720 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_unpin by 0x2367ad00 on [inode 1000006b2a1 [2,head] {#1000006b2a1 /test_small/small5/blarg10011} auth v178622 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f326dd0] now 0+0
2015-03-31 11:02:21.399767 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407293 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.399811 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407293 cr=0x26d3f080)
2015-03-31 11:02:21.399813 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407293 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.399817 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407293 cr=0x26d3f080) #1000006026a
2015-03-31 11:02:21.399819 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.399820 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.399821 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399839 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407293 cr=0x26d3f080)
2015-03-31 11:02:21.399843 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399873 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399885 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399909 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399922 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:21.399937 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.399947 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:21.399959 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.399971 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:21.399983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.399999 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.400015 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400026 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400051 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400063 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400073 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400085 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31267} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400103 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407293 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.400106 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407293 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.400117 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.400123 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.400127 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31268
2015-03-31 11:02:21.400129 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31268 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.400146 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407293 cr=0x26d3f080)
2015-03-31 11:02:21.400171 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.400189 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.400205 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400229 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400241 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400265 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400277 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400287 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.400303 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.400315 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.400679 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407294 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.400709 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407294 cr=0x26d3e900)
2015-03-31 11:02:21.400715 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407294 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.400720 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407294 cr=0x26d3e900) #1000006026a
2015-03-31 11:02:21.400723 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.400726 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.400727 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400750 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407294 cr=0x26d3e900)
2015-03-31 11:02:21.400754 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.400772 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400791 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400804 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.400820 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:21.400836 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400847 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:21.400860 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400872 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:21.400884 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.400911 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.400939 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400950 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.400961 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400972 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400983 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.400994 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.401005 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=8+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:21.401017 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=8+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.401026 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0xb37f650 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:21.401029 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=8+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.416871 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:21.416880 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:21.416892 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:21.416895 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) mark_dirty [inode 1000006b29c [2,head] /test_small/small5/blarg10007 auth v178611 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f48af00]
2015-03-31 11:02:21.416914 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10007)  mark_dirty [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178612 v=177594 ap=2+0 inode=0x3f48af00 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0]
2015-03-31 11:02:21.416926 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178612 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 13=13+0) hs=14+1590,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178612
2015-03-31 11:02:21.416950 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) mark_dirty_parent
2015-03-31 11:02:21.416953 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295182 pv3295194 ap=8+1 f(v0 m2015-03-31 11:02:57.000000 13=13+0) n(v1 rc2015-03-31 11:02:57.000000 14=13+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.416969 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295182 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.416974 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295184 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382309+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295184
2015-03-31 11:02:21.416986 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178613 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 14=14+0) hs=14+1590,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178613
2015-03-31 11:02:21.416993 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295185 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382317=382310+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295185
2015-03-31 11:02:21.417005 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b29c [2,head] /test_small/small5/blarg10007 auth v178612 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48af00]
2015-03-31 11:02:21.417016 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:21.417020 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27486 client_caps(grant ino 1000006b29c 1851473 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.417057 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178612 ap=2+0 inode=0x3f48af00 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0]
2015-03-31 11:02:21.417081 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407239 create #1000006026a/blarg10007 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.417107 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b29c
2015-03-31 11:02:21.417110 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178612 ap=2+0 inode=0x3f48af00 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0]
2015-03-31 11:02:21.417121 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178612 ap=2+0 inode=0x3f48af00 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0]
2015-03-31 11:02:21.417129 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178612 ap=2+0 inode=0x3f48af00 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0]
2015-03-31 11:02:21.417135 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10007) auth_unpin by 0x676c4f8 on [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178612 ap=1+0 inode=0x3f48af00 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0] now 1+0
2015-03-31 11:02:21.417142 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178612 ap=1+0 inode=0x3f48af00 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0]
2015-03-31 11:02:21.417149 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.417166 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295184 pv3295194 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 15=14+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417193 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295184 pv3295194 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 15=14+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417206 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295184 pv3295194 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 15=14+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417219 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178612 ap=1+0 inode=0x3f48af00 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c3a0]
2015-03-31 11:02:21.417238 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407239 cr=0x25f48000)
2015-03-31 11:02:21.417249 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53467 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.417268 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.417282 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a76400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295185 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382317=382310+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:21.417307 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a76400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178613 cv=170705/170705 ap=5+11+11 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 14=14+0) hs=14+1590,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 11
2015-03-31 11:02:21.417317 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295184 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 15=14+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:21.417330 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10007) auth_unpin by 0x29a76400 on [dentry #1/test_small/small5/blarg10007 [2,head] auth (dn sync l=1) (dversion lock) v=178612 inode=0x3f48af00 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676c3a0] now 0+0
2015-03-31 11:02:21.417358 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:21.417361 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:21.417367 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:21.417369 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) mark_dirty [inode 1000006b29d [2,head] /test_small/small5/blarg10008 auth v178613 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4657c8]
2015-03-31 11:02:21.417383 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10008)  mark_dirty [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178614 v=177596 ap=2+0 inode=0x3f4657c8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580]
2015-03-31 11:02:21.417390 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178614 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 14=14+0) hs=15+1589,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178614
2015-03-31 11:02:21.417401 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) mark_dirty_parent
2015-03-31 11:02:21.417402 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295184 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 14=14+0) n(v1 rc2015-03-31 11:02:58.000000 15=14+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417417 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295184 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.417421 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295186 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382317=382310+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295186
2015-03-31 11:02:21.417434 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178615 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 15=15+0) hs=15+1589,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178615
2015-03-31 11:02:21.417445 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295187 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382318=382311+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295187
2015-03-31 11:02:21.417456 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b29d [2,head] /test_small/small5/blarg10008 auth v178614 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4657c8]
2015-03-31 11:02:21.417466 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:21.417471 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27487 client_caps(grant ino 1000006b29d 1851474 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.417495 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178614 ap=2+0 inode=0x3f4657c8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580]
2015-03-31 11:02:21.417506 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407249 create #1000006026a/blarg10008 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.417520 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b29d
2015-03-31 11:02:21.417523 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178614 ap=2+0 inode=0x3f4657c8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580]
2015-03-31 11:02:21.417533 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178614 ap=2+0 inode=0x3f4657c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580]
2015-03-31 11:02:21.417539 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178614 ap=2+0 inode=0x3f4657c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580]
2015-03-31 11:02:21.417546 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10008) auth_unpin by 0x676c6d8 on [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178614 ap=1+0 inode=0x3f4657c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580] now 1+0
2015-03-31 11:02:21.417553 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178614 ap=1+0 inode=0x3f4657c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580]
2015-03-31 11:02:21.417559 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.417576 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295186 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 16=15+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417591 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295186 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 16=15+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417602 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295186 pv3295194 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 16=15+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417615 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178614 ap=1+0 inode=0x3f4657c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c580]
2015-03-31 11:02:21.417632 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407249 cr=0xb267300)
2015-03-31 11:02:21.417642 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53467 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.417661 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.417674 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295187 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382318=382311+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:21.417686 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178615 cv=170705/170705 ap=4+9+9 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 15=15+0) hs=15+1589,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 9
2015-03-31 11:02:21.417696 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295186 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 16=15+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.417710 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10008) auth_unpin by 0x29a75a00 on [dentry #1/test_small/small5/blarg10008 [2,head] auth (dn sync l=1) (dversion lock) v=178614 inode=0x3f4657c8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676c580] now 0+0
2015-03-31 11:02:21.417735 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:21.417738 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:21.417744 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:21.417745 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) mark_dirty [inode 1000006b29e [2,head] /test_small/small5/blarg10009 auth v178615 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f350590]
2015-03-31 11:02:21.417758 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10009)  mark_dirty [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178616 v=177598 ap=2+0 inode=0x3f350590 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760]
2015-03-31 11:02:21.417765 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178616 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 15=15+0) hs=16+1588,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178616
2015-03-31 11:02:21.417775 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) mark_dirty_parent
2015-03-31 11:02:21.417777 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295186 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 15=15+0) n(v1 rc2015-03-31 11:02:58.000000 16=15+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.417808 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295186 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.417813 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295188 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382318=382311+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295188
2015-03-31 11:02:21.417826 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178617 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 16=16+0) hs=16+1588,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178617
2015-03-31 11:02:21.417833 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295189 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382319=382312+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295189
2015-03-31 11:02:21.417844 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b29e [2,head] /test_small/small5/blarg10009 auth v178616 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f350590]
2015-03-31 11:02:21.417856 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:21.417859 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27488 client_caps(grant ino 1000006b29e 1851475 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.417882 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178616 ap=2+0 inode=0x3f350590 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760]
2015-03-31 11:02:21.417894 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407259 create #1000006026a/blarg10009 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.417908 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b29e
2015-03-31 11:02:21.417922 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178616 ap=2+0 inode=0x3f350590 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760]
2015-03-31 11:02:21.417931 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178616 ap=2+0 inode=0x3f350590 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760]
2015-03-31 11:02:21.417937 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178616 ap=2+0 inode=0x3f350590 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760]
2015-03-31 11:02:21.417944 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10009) auth_unpin by 0x676c8b8 on [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178616 ap=1+0 inode=0x3f350590 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760] now 1+0
2015-03-31 11:02:21.417951 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178616 ap=1+0 inode=0x3f350590 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760]
2015-03-31 11:02:21.417971 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.418000 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295188 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 17=16+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418015 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295188 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 17=16+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418028 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295188 pv3295194 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 17=16+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418039 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178616 ap=1+0 inode=0x3f350590 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c760]
2015-03-31 11:02:21.418059 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407259 cr=0x2645c100)
2015-03-31 11:02:21.418081 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53467 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.418100 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.418114 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295189 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382319=382312+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:21.418126 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178617 cv=170705/170705 ap=3+7+7 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 16=16+0) hs=16+1588,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 7
2015-03-31 11:02:21.418137 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295188 pv3295194 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 17=16+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.418151 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10009) auth_unpin by 0x29a75500 on [dentry #1/test_small/small5/blarg10009 [2,head] auth (dn sync l=1) (dversion lock) v=178616 inode=0x3f350590 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676c760] now 0+0
2015-03-31 11:02:21.418192 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:21.418195 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:21.418202 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:21.418204 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) mark_dirty [inode 1000006b29f [2,head] /test_small/small5/blarg1001 auth v178617 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f345fa0]
2015-03-31 11:02:21.418218 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1001)  mark_dirty [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178618 v=177600 ap=2+0 inode=0x3f345fa0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940]
2015-03-31 11:02:21.418225 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178618 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 16=16+0) hs=17+1587,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178618
2015-03-31 11:02:21.418235 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) mark_dirty_parent
2015-03-31 11:02:21.418237 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295188 pv3295194 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 16=16+0) n(v1 rc2015-03-31 11:02:58.000000 17=16+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418251 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295188 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.418255 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295190 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382319=382312+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295190
2015-03-31 11:02:21.418268 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178619 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 17=17+0) hs=17+1587,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178619
2015-03-31 11:02:21.418275 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295191 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382320=382313+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295191
2015-03-31 11:02:21.418286 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b29f [2,head] /test_small/small5/blarg1001 auth v178618 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f345fa0]
2015-03-31 11:02:21.418296 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:21.418300 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27489 client_caps(grant ino 1000006b29f 1851476 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.418322 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178618 ap=2+0 inode=0x3f345fa0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940]
2015-03-31 11:02:21.418333 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407269 create #1000006026a/blarg1001 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.418346 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b29f
2015-03-31 11:02:21.418348 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178618 ap=2+0 inode=0x3f345fa0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940]
2015-03-31 11:02:21.418358 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178618 ap=2+0 inode=0x3f345fa0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940]
2015-03-31 11:02:21.418364 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178618 ap=2+0 inode=0x3f345fa0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940]
2015-03-31 11:02:21.418371 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1001) auth_unpin by 0x676ca98 on [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178618 ap=1+0 inode=0x3f345fa0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940] now 1+0
2015-03-31 11:02:21.418377 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178618 ap=1+0 inode=0x3f345fa0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940]
2015-03-31 11:02:21.418383 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.418399 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295190 pv3295194 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 18=17+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418413 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295190 pv3295194 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 18=17+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418426 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295190 pv3295194 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 18=17+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418438 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178618 ap=1+0 inode=0x3f345fa0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676c940]
2015-03-31 11:02:21.418453 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407269 cr=0x5e8b480)
2015-03-31 11:02:21.418463 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53467 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.418481 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.418494 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295191 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382320=382313+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:21.418506 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178619 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 17=17+0) hs=17+1587,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:21.418514 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295190 pv3295194 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 18=17+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.418528 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1001) auth_unpin by 0x29a75f00 on [dentry #1/test_small/small5/blarg1001 [2,head] auth (dn sync l=1) (dversion lock) v=178618 inode=0x3f345fa0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676c940] now 0+0
2015-03-31 11:02:21.418551 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:21.418553 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:21.418559 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:21.418560 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) mark_dirty [inode 1000006b2a0 [2,head] /test_small/small5/blarg10010 auth v178619 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.418573 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10010)  mark_dirty [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178620 v=177602 ap=2+0 inode=0x3f44c228 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20]
2015-03-31 11:02:21.418580 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178620 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 17=17+0) hs=18+1586,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178620
2015-03-31 11:02:21.418589 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) mark_dirty_parent
2015-03-31 11:02:21.418590 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295190 pv3295194 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 17=17+0) n(v1 rc2015-03-31 11:02:58.000000 18=17+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418604 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295190 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.418609 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295192 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382320=382313+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295192
2015-03-31 11:02:21.418621 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178621 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 18=18+0) hs=18+1586,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178621
2015-03-31 11:02:21.418629 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295193 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382321=382314+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295193
2015-03-31 11:02:21.418639 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a0 [2,head] /test_small/small5/blarg10010 auth v178620 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f44c228]
2015-03-31 11:02:21.418651 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:21.418654 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27490 client_caps(grant ino 1000006b2a0 1851477 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.418676 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178620 ap=2+0 inode=0x3f44c228 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20]
2015-03-31 11:02:21.418686 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407279 create #1000006026a/blarg10010 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.418699 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a0
2015-03-31 11:02:21.418701 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178620 ap=2+0 inode=0x3f44c228 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20]
2015-03-31 11:02:21.418709 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178620 ap=2+0 inode=0x3f44c228 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20]
2015-03-31 11:02:21.418716 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178620 ap=2+0 inode=0x3f44c228 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20]
2015-03-31 11:02:21.418723 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10010) auth_unpin by 0x676cc78 on [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178620 ap=1+0 inode=0x3f44c228 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20] now 1+0
2015-03-31 11:02:21.418729 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178620 ap=1+0 inode=0x3f44c228 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20]
2015-03-31 11:02:21.418734 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.418750 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295192 pv3295194 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 19=18+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418765 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295192 pv3295194 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 19=18+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418778 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295192 pv3295194 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 19=18+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418798 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178620 ap=1+0 inode=0x3f44c228 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cb20]
2015-03-31 11:02:21.418814 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407279 cr=0x5412080)
2015-03-31 11:02:21.418825 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.418843 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.418856 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295193 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382321=382314+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:21.418869 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178621 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 18=18+0) hs=18+1586,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:21.418876 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295192 pv3295194 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 19=18+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.418890 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10010) auth_unpin by 0x29a75000 on [dentry #1/test_small/small5/blarg10010 [2,head] auth (dn sync l=1) (dversion lock) v=178620 inode=0x3f44c228 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676cb20] now 0+0
2015-03-31 11:02:21.418916 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:21.418919 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:21.418924 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:21.418926 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) mark_dirty [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178621 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.418939 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10011)  mark_dirty [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178622 v=177604 ap=2+0 inode=0x3f326dd0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00]
2015-03-31 11:02:21.418945 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178622 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 18=18+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178622
2015-03-31 11:02:21.418955 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) mark_dirty_parent
2015-03-31 11:02:21.418957 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295192 pv3295194 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 18=18+0) n(v1 rc2015-03-31 11:02:58.000000 19=18+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.418970 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295194 v=3295192 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.418974 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295194 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382321=382314+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295194
2015-03-31 11:02:21.418986 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178623 v=178623 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178623
2015-03-31 11:02:21.418993 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295195 v=3295195 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382322=382315+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295195
2015-03-31 11:02:21.419003 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.419014 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:21.419017 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27491 client_caps(grant ino 1000006b2a1 1851478 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.419040 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178622 ap=2+0 inode=0x3f326dd0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00]
2015-03-31 11:02:21.419050 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407289 create #1000006026a/blarg10011 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.419063 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a1
2015-03-31 11:02:21.419066 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178622 ap=2+0 inode=0x3f326dd0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00]
2015-03-31 11:02:21.419073 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178622 ap=2+0 inode=0x3f326dd0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00]
2015-03-31 11:02:21.419079 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178622 ap=2+0 inode=0x3f326dd0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00]
2015-03-31 11:02:21.419084 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10011) auth_unpin by 0x676ce58 on [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178622 ap=1+0 inode=0x3f326dd0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00] now 1+0
2015-03-31 11:02:21.419090 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178622 ap=1+0 inode=0x3f326dd0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00]
2015-03-31 11:02:21.419095 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.419112 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.419125 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.419139 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.419152 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.419165 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:21.419169 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.419182 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.419193 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:21.419195 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407294 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.419199 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407294 cr=0x26d3e900) #1000006026a
2015-03-31 11:02:21.419202 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.419204 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.419205 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419217 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407294 cr=0x26d3e900)
2015-03-31 11:02:21.419223 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.419241 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.419254 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419265 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.419282 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.419295 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419305 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.419322 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.419345 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419367 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419379 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419390 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419402 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419413 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419424 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419434 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419446 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31268} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419465 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407294 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.419471 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407294 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.419485 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.419488 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.419493 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31269
2015-03-31 11:02:21.419495 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31269 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.419512 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407294 cr=0x26d3e900)
2015-03-31 11:02:21.419535 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.419565 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.419581 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.419593 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.419604 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419616 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419628 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419651 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419663 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419674 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419687 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419699 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419709 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419718 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419728 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.419755 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.419768 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.419806 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419821 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419833 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419846 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178622 ap=1+0 inode=0x3f326dd0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cd00]
2015-03-31 11:02:21.419856 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.419896 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407289 cr=0xaeeb200)
2015-03-31 11:02:21.419920 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.419948 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.419961 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a74600 on [dir 10000000000 /test_small/ [2,head] auth v=3295195 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382322=382315+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:21.419973 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a74600 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:21.419982 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=0+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:21.419994 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10011) auth_unpin by 0x29a74600 on [dentry #1/test_small/small5/blarg10011 [2,head] auth (dn sync l=1) (dversion lock) v=178622 inode=0x3f326dd0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676cd00] now 0+0
2015-03-31 11:02:21.420060 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e2c follows 0 op update
2015-03-31 11:02:21.420074 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420094 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.420097 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.420123 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.420124 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420132 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420141 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.420143 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420149 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420159 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420165 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.420166 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420174 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420182 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420189 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420196 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.420198 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.420199 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e2c [2,head] /test_small/small1/blarg10011 auth v136840 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cd690]
2015-03-31 11:02:21.420207 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.420247 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407295 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.420275 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407295 cr=0x45a2f80)
2015-03-31 11:02:21.420278 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407295 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.420283 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407295 cr=0x45a2f80) #1000006b2a1
2015-03-31 11:02:21.420286 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a1 snap head
2015-03-31 11:02:21.420287 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.420289 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.420305 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407295 cr=0x45a2f80)
2015-03-31 11:02:21.420308 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.420338 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.420351 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.420363 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.420374 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.420391 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.420407 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.420418 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.420431 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.420440 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.420453 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f326dd0]
2015-03-31 11:02:21.420463 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_pin by 0x29a72d00 on [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f326dd0] now 1+0
2015-03-31 11:02:21.420474 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.420503 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.420531 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.420543 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.420554 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.420564 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.420574 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.420584 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.420602 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407295 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.420608 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407295 getattr Xs #1000006b2a1 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.420622 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.420626 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.420631 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:21.420634 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.420652 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407295 cr=0x45a2f80)
2015-03-31 11:02:21.420677 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.420697 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.420713 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.420726 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.420737 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.420746 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.420769 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.420781 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f326dd0]
2015-03-31 11:02:21.420801 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.420818 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.420831 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=0+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:21.420843 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) auth_unpin by 0x29a72d00 on [inode 1000006b2a1 [2,head] /test_small/small5/blarg10011 auth v178622 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f326dd0] now 0+0
2015-03-31 11:02:21.420902 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407296 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.420926 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407296 cr=0x45a4380)
2015-03-31 11:02:21.420929 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407296 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.420932 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407296 cr=0x45a4380) #1000006026a
2015-03-31 11:02:21.420935 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.420936 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.420939 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.420953 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407296 cr=0x45a4380)
2015-03-31 11:02:21.420956 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.420974 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.420986 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.420997 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.421024 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.421040 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.421050 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.421074 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.421083 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.421095 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.421111 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.421127 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.421139 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.421152 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421162 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421175 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421187 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31269} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421218 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407296 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.421224 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407296 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.421237 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.421240 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.421244 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31270
2015-03-31 11:02:21.421247 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31270 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.421263 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407296 cr=0x45a4380)
2015-03-31 11:02:21.421287 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.421305 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.421322 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.421334 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.421345 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421356 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421367 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421390 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.421401 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.421417 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.421431 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:21.421611 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407297 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.421635 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407297 cr=0x5416b80)
2015-03-31 11:02:21.421638 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407297 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.421642 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407297 cr=0x5416b80) #10000004e30
2015-03-31 11:02:21.421644 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e30 snap head
2015-03-31 11:02:21.421646 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.421648 7fbe462be700 10 mds.0.server ref is [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.421675 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407297 cr=0x5416b80)
2015-03-31 11:02:21.421678 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.421696 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.421706 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.421716 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.421722 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.421738 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.421754 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.421765 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.421777 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.421793 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a72d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.421805 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.421811 7fbe462be700 10 mds.0.cache.ino(10000004e30) auth_pin by 0x29a72d00 on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58] now 1+0
2015-03-31 11:02:21.421818 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.421834 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.421850 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.421873 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.421897 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.421905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.421915 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.421921 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.421927 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.421934 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.421947 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407297 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.421952 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407297 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.421966 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.421969 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.421973 7fbe462be700 10 mds.0.cache.ino(10000004e30) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:21.421976 7fbe462be700 10 mds.0.cache.ino(10000004e30) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.421993 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407297 cr=0x5416b80)
2015-03-31 11:02:21.422018 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.422036 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.422052 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.422064 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.422076 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.422087 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.422097 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.422118 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.422124 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.422130 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.422137 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.422153 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.422166 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a72d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.422177 7fbe462be700 10 mds.0.cache.ino(10000004e30) auth_unpin by 0x29a72d00 on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ccd58] now 0+0
2015-03-31 11:02:21.422333 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407298 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.422357 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407298 cr=0x5412a80)
2015-03-31 11:02:21.422361 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407298 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.422365 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407298 cr=0x5412a80) #1000006026a
2015-03-31 11:02:21.422367 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.422369 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.422371 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.422388 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407298 cr=0x5412a80)
2015-03-31 11:02:21.422403 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.422419 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.422431 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.422442 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.422458 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.422473 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.422484 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.422497 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.422507 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.422520 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.422536 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.422552 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.422564 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.422575 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422610 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422621 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422633 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31270} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422651 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407298 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.422656 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407298 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.422667 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.422670 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.422674 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31271
2015-03-31 11:02:21.422677 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31271 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.422692 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407298 cr=0x5412a80)
2015-03-31 11:02:21.422715 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.422733 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.422749 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.422761 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.422772 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422789 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422813 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422824 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.422836 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.422852 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.422864 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:21.423043 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407299 lookup #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.423066 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407299 cr=0x37d1680)
2015-03-31 11:02:21.423070 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407299 lookup #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.423073 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407299 cr=0x37d1680) #1000006026a/blarg10012
2015-03-31 11:02:21.423076 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.423079 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10012 [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock) v=177606 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cee0]
2015-03-31 11:02:21.423101 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.423103 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407299 lookup #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.423115 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.423129 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407299 cr=0x37d1680)
2015-03-31 11:02:21.463091 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407300 lookup #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463119 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407300 cr=0x37d3200)
2015-03-31 11:02:21.463122 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407300 lookup #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463126 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407300 cr=0x37d3200) #1000006026a/blarg10012
2015-03-31 11:02:21.463128 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.463132 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10012 [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock) v=177606 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cee0]
2015-03-31 11:02:21.463144 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.463146 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407300 lookup #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463160 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.463176 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407300 cr=0x37d3200)
2015-03-31 11:02:21.463219 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407301 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463243 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407301 cr=0x37d4100)
2015-03-31 11:02:21.463245 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407301 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463248 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407301 cr=0x37d4100) #1000006026a
2015-03-31 11:02:21.463250 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.463252 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.463253 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.463273 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407301 cr=0x37d4100)
2015-03-31 11:02:21.463277 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.463296 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.463309 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.463321 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.463337 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.463354 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.463377 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.463390 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.463400 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.463414 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.463430 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.463446 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.463459 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.463472 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463484 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463494 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463529 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31271} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463559 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407301 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463566 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407301 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463579 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.463583 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.463587 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31272
2015-03-31 11:02:21.463590 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31272 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.463607 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407301 cr=0x37d4100)
2015-03-31 11:02:21.463634 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.463654 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.463670 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.463683 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.463696 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463706 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463717 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463740 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.463753 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.463769 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.463790 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:21.463837 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407302 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463860 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407302 cr=0x37d0780)
2015-03-31 11:02:21.463862 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407302 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.463865 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407302 cr=0x37d0780) #1000006026a
2015-03-31 11:02:21.463868 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.463870 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.463872 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.463885 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407302 cr=0x37d0780)
2015-03-31 11:02:21.463888 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.463916 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.463928 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.463939 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.463955 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.463982 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.463992 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.464004 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.464028 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.464037 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464051 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464077 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464088 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464098 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464109 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464120 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31272} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464136 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407302 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.464140 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407302 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.464154 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.464157 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.464161 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31273
2015-03-31 11:02:21.464164 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31273 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.464180 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407302 cr=0x37d0780)
2015-03-31 11:02:21.464204 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464223 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464238 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464250 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464261 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464272 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464295 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464306 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.464316 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.464333 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.464345 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:21.464399 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407303 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.464422 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407303 cr=0x5e88f00)
2015-03-31 11:02:21.464424 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407303 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.464428 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407303 cr=0x5e88f00) #10000004e30
2015-03-31 11:02:21.464430 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e30 snap head
2015-03-31 11:02:21.464431 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.464433 7fbe462be700 10 mds.0.server ref is [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.464443 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407303 cr=0x5e88f00)
2015-03-31 11:02:21.464446 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.464463 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.464475 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.464485 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.464491 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.464506 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.464523 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.464534 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.464558 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.464567 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a72d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.464589 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.464594 7fbe462be700 10 mds.0.cache.ino(10000004e30) auth_pin by 0x29a72d00 on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58] now 1+0
2015-03-31 11:02:21.464603 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464618 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464634 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464646 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464657 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.464667 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.464677 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464684 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464704 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464710 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464726 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407303 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.464732 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407303 getattr Xs #10000004e30 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.464743 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.464746 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.464750 7fbe462be700 10 mds.0.cache.ino(10000004e30) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:21.464752 7fbe462be700 10 mds.0.cache.ino(10000004e30) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.464769 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407303 cr=0x5e88f00)
2015-03-31 11:02:21.464801 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464822 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.464838 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464850 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.464862 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.464872 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.464894 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464902 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464910 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464916 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ccd58]
2015-03-31 11:02:21.464922 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.464939 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.464952 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a72d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.464963 7fbe462be700 10 mds.0.cache.ino(10000004e30) auth_unpin by 0x29a72d00 on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9ccd58] now 0+0
2015-03-31 11:02:21.465280 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407304 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.465301 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407304 cr=0x5e8f080)
2015-03-31 11:02:21.465303 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407304 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.465307 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407304 cr=0x5e8f080) #1000006026a
2015-03-31 11:02:21.465309 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.465311 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.465312 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.465327 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407304 cr=0x5e8f080)
2015-03-31 11:02:21.465330 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.465348 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.465358 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.465369 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.465384 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.465401 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.465413 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.465425 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.465435 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.465448 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.465464 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.465480 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.465492 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.465504 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465515 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465539 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465562 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31273} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465579 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407304 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.465583 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407304 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.465597 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.465601 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.465605 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31274
2015-03-31 11:02:21.465607 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31274 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.465622 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407304 cr=0x5e8f080)
2015-03-31 11:02:21.465646 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.465664 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.465681 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.465693 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.465705 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465716 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465739 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465751 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.465762 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.465778 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.465795 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:21.465946 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407305 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.465970 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407305 cr=0x5e8e180)
2015-03-31 11:02:21.465974 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407305 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.465978 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407305 cr=0x5e8e180) #1000006026a
2015-03-31 11:02:21.465980 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.465982 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.465984 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466001 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407305 cr=0x5e8e180)
2015-03-31 11:02:21.466004 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.466032 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.466043 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466054 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.466070 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.466086 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.466097 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.466109 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466119 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.466132 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.466147 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.466163 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.466175 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.466187 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466210 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466234 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466245 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31274} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466262 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407305 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.466268 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407305 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.466281 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.466284 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.466288 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31275
2015-03-31 11:02:21.466290 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31275 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.466307 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407305 cr=0x5e8e180)
2015-03-31 11:02:21.466331 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.466349 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.466364 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.466376 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.466386 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466395 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466426 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.466438 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.466454 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.466466 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:21.466640 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407306 create #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.466661 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407306 cr=0x2a50ad00)
2015-03-31 11:02:21.466664 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466681 7fbe462be700 10 mds.0.locker  NOT changing wanted p -> p (issue_seq 31274 != last_issue 31275)
2015-03-31 11:02:21.466683 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466695 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.466697 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466722 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466734 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466745 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466755 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.466757 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407306 create #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.466761 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10012
2015-03-31 11:02:21.466762 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407306 cr=0x2a50ad00) #1000006026a/blarg10012
2015-03-31 11:02:21.466765 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10012
2015-03-31 11:02:21.466766 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.466768 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.466770 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.466779 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.466792 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10012 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.466802 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407306 cr=0x2a50ad00)
2015-03-31 11:02:21.466807 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.466825 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.466837 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466848 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock) v=177606 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cee0]
2015-03-31 11:02:21.466854 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.466870 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.466898 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.466921 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.466932 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.466940 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.466949 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock) v=177606 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676cee0]
2015-03-31 11:02:21.466954 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10012) auth_pin by 0x29a72d00 on [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock) v=177606 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0] now 1+0
2015-03-31 11:02:21.466962 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock) v=177606 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.466967 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177606 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.466972 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177606 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.466977 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177606 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.466982 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177606 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.466987 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10012) auth_pin by 0x676d038 on [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177606 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0] now 2+0
2015-03-31 11:02:21.466993 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a72d00) [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn xlock x=1 by 0x29a72d00) (dversion lock w=1 last_client=708310) v=177606 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.467000 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.467016 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.467031 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.467045 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.467060 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.467071 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.467082 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.467093 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.467104 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.467115 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.467124 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.467134 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.467146 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFc, xlocker allowed=pAsLsXsFc on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31275} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.467159 7fbe462be700  7 mds.0.locker    sending MClientCaps to client.708310 seq 31276 new pending pAsLsXs was pAsLsXsFs
2015-03-31 11:02:21.467164 7fbe462be700 10 mds.0.15 send_message_client_counted client.708310 seq 27492 client_caps(revoke ino 1000006026a 1732604 seq 31276 caps=pAsLsXs dirty=- wanted=p follows 0 size 0/0 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.467182 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.467208 7fbe462be700  7 mds.0.locker wrlock_start waiting on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.467221 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0xb37aa00 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:21.467225 7fbe462be700 10 mds.0.locker nudge_log (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507088 7fbe462be700  7 mds.0.locker handle_client_caps on 1000006026a follows 0 op update
2015-03-31 11:02:21.507094 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507116 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.507119 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.507140 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.507141 7fbe462be700 10 mds.0.locker   cap inode [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507157 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXs dirty - on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507171 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXs wanted p on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507185 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507197 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.507199 7fbe462be700 10 mds.0.locker eval_gather (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507212 7fbe462be700 10 mds.0.locker  next state is lock issued/allows loner /cb xlocker /cb other /cb
2015-03-31 11:02:21.507215 7fbe462be700  7 mds.0.locker eval_gather finished gather on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.507239 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.507264 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507275 7fbe462be700  7 mds.0.locker file_eval stable, bump to sync (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507298 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507310 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507320 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507330 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507342 7fbe462be700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:21.507343 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407306 create #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.507347 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10012
2015-03-31 11:02:21.507348 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407306 cr=0x2a50ad00) #1000006026a/blarg10012
2015-03-31 11:02:21.507351 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10012
2015-03-31 11:02:21.507353 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.507354 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.507356 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.507364 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.507372 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10012 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.507383 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407306 cr=0x2a50ad00)
2015-03-31 11:02:21.507389 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.507407 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.507419 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507429 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn xlock x=1 by 0x29a72d00) (dversion lock w=1 last_client=708310) v=177606 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.507439 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.507455 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.507466 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507477 7fbe462be700 10 mds.0.locker  already auth_pinned [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn xlock x=1 by 0x29a72d00) (dversion lock w=1 last_client=708310) v=177606 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.507483 7fbe462be700 10 mds.0.locker  already wrlocked (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn xlock x=1 by 0x29a72d00) (dversion lock w=1 last_client=708310) v=177606 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.507489 7fbe462be700 10 mds.0.locker  already xlocked (dn xlock x=1 by 0x29a72d00) [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn xlock x=1 by 0x29a72d00) (dversion lock w=1 last_client=708310) v=177606 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.507494 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.507510 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.507524 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.507536 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.507546 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507557 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507568 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507578 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507590 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507602 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507614 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507625 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507636 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507647 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507668 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a2 ([1000006b2a3~380], 896 left)
2015-03-31 11:02:21.507672 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:21.507675 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a2 [2,head] #1000006b2a2 auth v1 s=0 n() (iversion lock) 0x3f4a3b68]
2015-03-31 11:02:21.507680 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178624
2015-03-31 11:02:21.507681 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10012)  pre_dirty [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn xlock x=1 by 0x29a72d00) (dversion lock w=1 last_client=708310) pv=178624 v=177606 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.507691 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4a3b68]
2015-03-31 11:02:21.507698 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a72d00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178623 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:21.507709 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9937380
2015-03-31 11:02:21.507710 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178625
2015-03-31 11:02:21.507712 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178625 v=178623 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.507720 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178625 v=178623 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.507727 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4a3b68]
2015-03-31 11:02:21.507732 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.507735 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507751 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295196
2015-03-31 11:02:21.507752 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295196 v=3295194 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.507757 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295196 (current v 3295194)
2015-03-31 11:02:21.507758 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178625 v=178623 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=19+1585,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.507765 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.507767 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a72d00 on [dir 10000000000 /test_small/ [2,head] auth v=3295195 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382322=382315+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:21.507776 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9936460
2015-03-31 11:02:21.507778 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295197
2015-03-31 11:02:21.507779 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.507798 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.507810 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507823 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.507825 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.849083 < 1, stopping
2015-03-31 11:02:21.507831 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.507843 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:21.507848 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295196 v=3295194 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.507853 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31276} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.507870 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4a3b68]
2015-03-31 11:02:21.507879 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:21.507882 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507890 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.507892 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507899 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507906 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507914 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507920 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507927 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507934 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507941 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507947 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507952 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507959 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507966 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507973 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507979 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507985 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a3b68]
2015-03-31 11:02:21.507995 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.507997 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:21.508001 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4a3b68 tracedn 0x676cee0
2015-03-31 11:02:21.508005 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a72d00) [dentry #1/test_small/small5/blarg10012 [2,head] auth NULL (dn xlock x=1 by 0x29a72d00) (dversion lock w=1 last_client=708310) pv=178624 v=177606 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676cee0]
2015-03-31 11:02:21.508012 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407306 create #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.508024 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.508028 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31277
2015-03-31 11:02:21.508033 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31277 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.508039 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:21.508042 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:21.508045 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) including xattrs version 0
2015-03-31 11:02:21.508090 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508123 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508140 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508150 7fbe406af700  5 mds.0.log _submit_thread 5419513572~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:21.508155 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508170 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508195 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508208 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508220 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508232 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508246 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508259 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508271 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508282 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508294 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508307 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFcb, xlocker allowed=pAsLsXsFcb on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508322 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.508600 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407307 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.508625 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407307 cr=0x26903480)
2015-03-31 11:02:21.508628 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407307 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.508632 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407307 cr=0x26903480) #1000006b2a2
2015-03-31 11:02:21.508635 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a2 snap head
2015-03-31 11:02:21.508637 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.508638 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4a3b68]
2015-03-31 11:02:21.508655 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407307 cr=0x26903480)
2015-03-31 11:02:21.508658 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508676 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508689 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508700 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4a3b68]
2015-03-31 11:02:21.508710 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508726 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.508743 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508753 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.508766 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508779 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.508796 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4a3b68]
2015-03-31 11:02:21.508806 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_pin by 0x29a72800 on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4a3b68] now 1+0
2015-03-31 11:02:21.508816 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508833 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.508860 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508883 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.508894 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.508916 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.508926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.508943 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407307 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.508946 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407307 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.508961 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.508964 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.508969 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:21.508972 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.508989 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407307 cr=0x26903480)
2015-03-31 11:02:21.509013 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509032 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509048 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509061 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509072 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509084 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509108 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.509120 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.509129 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.509147 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.509159 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.509171 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_unpin by 0x29a72800 on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a3b68] now 0+0
2015-03-31 11:02:21.509472 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407308 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.509495 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407308 cr=0x26905a00)
2015-03-31 11:02:21.509499 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407308 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.509503 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407308 cr=0x26905a00) #1000006b2a2
2015-03-31 11:02:21.509505 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a2 snap head
2015-03-31 11:02:21.509507 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.509509 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.509525 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407308 cr=0x26905a00)
2015-03-31 11:02:21.509528 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509545 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509556 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509569 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.509579 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509595 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.509610 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509621 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.509634 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509648 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.509660 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.509668 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_pin by 0x29a72800 on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a3b68] now 1+0
2015-03-31 11:02:21.509679 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509696 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509724 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509748 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509759 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509771 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509783 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.509791 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.509813 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407308 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.509819 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407308 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.509832 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.509835 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.509839 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:21.509842 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.509859 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407308 cr=0x26905a00)
2015-03-31 11:02:21.509883 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509902 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.509918 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509929 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.509939 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509951 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.509962 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.509986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.509997 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.510013 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.510025 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.510037 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_unpin by 0x29a72800 on [inode 1000006b2a2 [2,head] {#1000006b2a2 /test_small/small5/blarg10012} auth v178624 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a3b68] now 0+0
2015-03-31 11:02:21.510195 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407309 readdir #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.510215 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407309 cr=0x26907d00)
2015-03-31 11:02:21.510219 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407309 readdir #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.510223 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407309 cr=0x26907d00) #1000006026a
2015-03-31 11:02:21.510225 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.510227 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.510228 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510247 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407309 cr=0x26907d00)
2015-03-31 11:02:21.510251 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.510278 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.510290 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510303 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.510318 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.510333 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.510343 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.510355 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510366 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.510377 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.510393 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.510408 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.510420 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.510431 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510454 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510478 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510489 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510501 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.510510 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.510522 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0xb37b840 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:21.510524 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.525707 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:21.525716 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:21.525728 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:21.525730 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) mark_dirty [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178623 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.525749 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10012)  mark_dirty [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178624 v=177606 ap=2+0 inode=0x3f4a3b68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0]
2015-03-31 11:02:21.525761 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178625 v=178624 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 19=19+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178624
2015-03-31 11:02:21.525774 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) mark_dirty_parent
2015-03-31 11:02:21.525776 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295194 pv3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 19=19+0) n(v1 rc2015-03-31 11:02:58.000000 20=19+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.525802 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295196 v=3295194 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.525823 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295197 v=3295196 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382322=382315+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295196
2015-03-31 11:02:21.525834 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178625 v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178625
2015-03-31 11:02:21.525843 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295197 v=3295197 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295197
2015-03-31 11:02:21.525853 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.525865 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:21.525869 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27493 client_caps(grant ino 1000006b2a2 1851479 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:21.525906 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178624 ap=2+0 inode=0x3f4a3b68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0]
2015-03-31 11:02:21.525930 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407306 create #1000006026a/blarg10012 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.525956 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a2
2015-03-31 11:02:21.525959 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178624 ap=2+0 inode=0x3f4a3b68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0]
2015-03-31 11:02:21.525969 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178624 ap=2+0 inode=0x3f4a3b68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0]
2015-03-31 11:02:21.525975 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178624 ap=2+0 inode=0x3f4a3b68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0]
2015-03-31 11:02:21.525983 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10012) auth_unpin by 0x676d038 on [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178624 ap=1+0 inode=0x3f4a3b68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0] now 1+0
2015-03-31 11:02:21.525990 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178624 ap=1+0 inode=0x3f4a3b68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0]
2015-03-31 11:02:21.525995 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.526013 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.526038 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.526053 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.526065 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.526077 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:21.526080 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:21.526092 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.526105 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:21.526106 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407309 readdir #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.526110 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407309 cr=0x26907d00) #1000006026a
2015-03-31 11:02:21.526112 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.526114 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.526115 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526126 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407309 cr=0x26907d00)
2015-03-31 11:02:21.526129 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.526160 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.526173 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526184 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.526200 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.526212 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526224 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.526264 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.526275 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526287 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526301 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526321 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526333 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31277} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526352 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:21.526355 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178625 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.526365 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:21.526372 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:21.526375 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526380 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:21.526383 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526388 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:21.526390 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526394 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:21.526396 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526399 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:21.526401 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526405 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:21.526407 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526410 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:21.526412 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526416 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:21.526418 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526422 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:21.526424 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526428 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:21.526430 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526434 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:21.526436 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526440 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:21.526442 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526446 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:21.526448 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526452 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:21.526454 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526457 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:21.526459 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526463 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:21.526465 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526468 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:21.526470 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526474 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:21.526476 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526480 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:21.526482 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526486 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:21.526488 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526584 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407309 readdir #1000006026a 2015-03-31 11:02:58.000000) v2 readdir num=20 bytes=5464 end=1 complete=1
2015-03-31 11:02:21.526608 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407309 readdir #1000006026a 2015-03-31 11:02:58.000000) v2 readdir num=20 end=1 complete=1
2015-03-31 11:02:21.526613 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407309 readdir #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.526628 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.526631 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.526635 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31278
2015-03-31 11:02:21.526638 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31278 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.526653 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407309 cr=0x26907d00)
2015-03-31 11:02:21.526678 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.526698 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.526714 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.526726 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.526738 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526750 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526762 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526792 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526805 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526815 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526826 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.526841 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.526853 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.526884 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526910 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526920 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526932 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178624 ap=1+0 inode=0x3f4a3b68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676cee0]
2015-03-31 11:02:21.526943 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.526971 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407306 cr=0x2a50ad00)
2015-03-31 11:02:21.526981 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.526999 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.527012 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a72d00 on [dir 10000000000 /test_small/ [2,head] auth v=3295197 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:21.527024 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a72d00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178625 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:21.527034 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=0+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:21.527047 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10012) auth_unpin by 0x29a72d00 on [dentry #1/test_small/small5/blarg10012 [2,head] auth (dn sync l=1) (dversion lock) v=178624 inode=0x3f4a3b68 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676cee0] now 0+0
2015-03-31 11:02:21.527100 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e30 follows 0 op update
2015-03-31 11:02:21.527114 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527133 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.527136 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.527163 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.527165 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527173 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527182 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:21.527185 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527199 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527210 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527216 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.527218 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527225 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527233 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527240 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527248 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527247 7fbe406af700  5 mds.0.log _submit_thread 5419515212~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:21.527254 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527260 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527267 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.527279 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.527303 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407310 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.527344 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407310 cr=0x26900000)
2015-03-31 11:02:21.527347 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407310 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.527351 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407310 cr=0x26900000) #1000006b2a2
2015-03-31 11:02:21.527366 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a2 snap head
2015-03-31 11:02:21.527368 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.527370 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.527387 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407310 cr=0x26900000)
2015-03-31 11:02:21.527390 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.527409 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.527420 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.527432 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.527441 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.527456 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.527472 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.527483 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.527495 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.527506 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.527518 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.527527 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_pin by 0x29a73c00 on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68] now 1+0
2015-03-31 11:02:21.527538 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.527567 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.527582 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.527593 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.527605 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.527616 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.527627 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.527637 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.527654 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407310 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.527661 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407310 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.527676 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.527679 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.527684 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:21.527687 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.527706 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407310 cr=0x26900000)
2015-03-31 11:02:21.527731 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.527750 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.527767 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.527779 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.527800 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.527811 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.527834 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.527846 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.527857 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.527874 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.527886 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=0+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:21.527898 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_unpin by 0x29a73c00 on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68] now 0+0
2015-03-31 11:02:21.568113 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e30 follows 0 op update
2015-03-31 11:02:21.568118 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568133 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.568135 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.568157 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.568158 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568166 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568177 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.568181 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568187 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568197 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568203 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.568204 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568212 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568219 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568225 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568234 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.568236 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.568238 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e30 [2,head] /test_small/small1/blarg10012 auth v136842 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ccd58]
2015-03-31 11:02:21.568246 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.568266 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407311 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.568292 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407311 cr=0x9d48280)
2015-03-31 11:02:21.568294 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407311 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.568298 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407311 cr=0x9d48280) #1000006b2a2
2015-03-31 11:02:21.568301 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a2 snap head
2015-03-31 11:02:21.568302 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.568304 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.568343 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407311 cr=0x9d48280)
2015-03-31 11:02:21.568347 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.568364 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.568376 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.568386 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.568396 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.568410 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.568426 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.568437 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.568449 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.568459 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.568471 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68]
2015-03-31 11:02:21.568480 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_pin by 0x29a73c00 on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68] now 1+0
2015-03-31 11:02:21.568489 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.568504 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.568519 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.568529 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.568538 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.568549 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.568560 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.568570 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.568589 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407311 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.568593 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407311 getattr Xs #1000006b2a2 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.568607 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.568611 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.568616 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:21.568618 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.568637 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407311 cr=0x9d48280)
2015-03-31 11:02:21.568662 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.568682 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.568698 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.568711 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.568723 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.568734 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.568758 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.568769 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4a3b68]
2015-03-31 11:02:21.568778 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.568804 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.568817 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=0+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:21.568829 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) auth_unpin by 0x29a73c00 on [inode 1000006b2a2 [2,head] /test_small/small5/blarg10012 auth v178624 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a3b68] now 0+0
2015-03-31 11:02:21.569209 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407312 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.569238 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407312 cr=0x682eb80)
2015-03-31 11:02:21.569241 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407312 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.569245 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407312 cr=0x682eb80) #10000004e32
2015-03-31 11:02:21.569248 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e32 snap head
2015-03-31 11:02:21.569250 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.569253 7fbe462be700 10 mds.0.server ref is [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.569269 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407312 cr=0x682eb80)
2015-03-31 11:02:21.569273 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.569293 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.569306 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.569316 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.569324 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.569341 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.569357 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.569369 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.569382 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.569393 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.569405 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.569410 7fbe462be700 10 mds.0.cache.ino(10000004e32) auth_pin by 0x29a73c00 on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420] now 1+0
2015-03-31 11:02:21.569431 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.569459 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.569474 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.569486 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.569498 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.569506 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.569516 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569522 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569528 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569535 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569550 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407312 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.569556 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407312 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.569569 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.569574 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.569579 7fbe462be700 10 mds.0.cache.ino(10000004e32) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:21.569582 7fbe462be700 10 mds.0.cache.ino(10000004e32) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.569600 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407312 cr=0x682eb80)
2015-03-31 11:02:21.569621 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.569641 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.569658 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.569670 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.569682 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.569693 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.569716 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569725 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569731 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569737 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.569744 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.569760 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.569772 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.569791 7fbe462be700 10 mds.0.cache.ino(10000004e32) auth_unpin by 0x29a73c00 on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cc420] now 0+0
2015-03-31 11:02:21.570204 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407313 lookup #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.570229 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407313 cr=0x682fd00)
2015-03-31 11:02:21.570233 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407313 lookup #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.570236 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407313 cr=0x682fd00) #1000006026a/blarg10013
2015-03-31 11:02:21.570238 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.570243 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10013 [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock) v=177608 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.570253 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.570256 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407313 lookup #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.570271 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.570287 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407313 cr=0x682fd00)
2015-03-31 11:02:21.570809 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407314 lookup #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.570833 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407314 cr=0x2645af80)
2015-03-31 11:02:21.570837 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407314 lookup #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.570841 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407314 cr=0x2645af80) #1000006026a/blarg10013
2015-03-31 11:02:21.570843 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.570847 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10013 [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock) v=177608 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.570856 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.570859 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407314 lookup #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.570872 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.570888 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407314 cr=0x2645af80)
2015-03-31 11:02:21.571434 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407315 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.571460 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407315 cr=0x2645a580)
2015-03-31 11:02:21.571466 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407315 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.571471 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407315 cr=0x2645a580) #10000004e32
2015-03-31 11:02:21.571475 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e32 snap head
2015-03-31 11:02:21.571476 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.571478 7fbe462be700 10 mds.0.server ref is [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.571491 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407315 cr=0x2645a580)
2015-03-31 11:02:21.571495 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.571515 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.571528 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.571540 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.571546 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.571562 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.571580 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.571602 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.571615 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.571638 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.571648 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.571653 7fbe462be700 10 mds.0.cache.ino(10000004e32) auth_pin by 0x29a73c00 on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420] now 1+0
2015-03-31 11:02:21.571662 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.571678 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.571693 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.571702 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.571715 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.571725 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.571734 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571740 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571745 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571752 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571766 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407315 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.571772 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407315 getattr Xs #10000004e32 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.571794 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.571798 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.571803 7fbe462be700 10 mds.0.cache.ino(10000004e32) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:21.571805 7fbe462be700 10 mds.0.cache.ino(10000004e32) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.571824 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407315 cr=0x2645a580)
2015-03-31 11:02:21.571850 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.571870 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.571886 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.571899 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.571911 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.571921 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.571944 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571953 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571959 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571967 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cc420]
2015-03-31 11:02:21.571973 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.571990 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.572001 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.572011 7fbe462be700 10 mds.0.cache.ino(10000004e32) auth_unpin by 0x29a73c00 on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9cc420] now 0+0
2015-03-31 11:02:21.572415 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407316 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.572442 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407316 cr=0x26459e00)
2015-03-31 11:02:21.572446 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407316 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.572450 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407316 cr=0x26459e00) #1000006026a
2015-03-31 11:02:21.572452 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.572455 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.572456 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.572477 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407316 cr=0x26459e00)
2015-03-31 11:02:21.572481 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.572499 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.572511 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.572524 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.572539 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.572556 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.572567 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.572592 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.572601 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.572626 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.572641 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.572657 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.572668 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.572677 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572687 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572698 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572709 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31278} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572726 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407316 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.572732 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407316 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.572746 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.572750 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.572754 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31279
2015-03-31 11:02:21.572757 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31279 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.572775 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407316 cr=0x26459e00)
2015-03-31 11:02:21.572808 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.572827 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.572844 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.572858 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.572870 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31279} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572894 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31279} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572906 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31279} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572917 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31279} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.572929 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:21.572945 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:21.572957 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31279} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:21.573371 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407317 create #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.573397 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407317 cr=0x2645c380)
2015-03-31 11:02:21.573402 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573424 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:21.573428 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573439 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.573441 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573455 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573466 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573477 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573487 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.573489 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407317 create #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.573493 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10013
2015-03-31 11:02:21.573494 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407317 cr=0x2645c380) #1000006026a/blarg10013
2015-03-31 11:02:21.573497 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10013
2015-03-31 11:02:21.573499 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.573501 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.573502 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178625 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.573511 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178625 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.573519 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10013 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178625 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:21.573529 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407317 cr=0x2645c380)
2015-03-31 11:02:21.573535 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.573554 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.573566 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573587 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock) v=177608 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573594 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:21.573622 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.573637 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:21.573648 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:21.573660 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:21.573668 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+0 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:21.573679 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock) v=177608 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573684 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10013) auth_pin by 0x29a73c00 on [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock) v=177608 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0] now 1+0
2015-03-31 11:02:21.573690 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock) v=177608 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573695 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177608 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573703 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177608 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573707 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177608 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573713 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177608 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573717 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10013) auth_pin by 0x676d218 on [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177608 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0] now 2+0
2015-03-31 11:02:21.573723 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a73c00) [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dn xlock x=1 by 0x29a73c00) (dversion lock w=1 last_client=708310) v=177608 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573730 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.573748 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.573763 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.573777 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.573798 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.573810 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.573821 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.573832 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.573842 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573862 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573872 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573884 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573895 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573907 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573917 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573929 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573939 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573950 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.573970 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a3 ([1000006b2a4~37f], 895 left)
2015-03-31 11:02:21.573974 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:21.573976 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a3 [2,head] #1000006b2a3 auth v1 s=0 n() (iversion lock) 0x3f3cb128]
2015-03-31 11:02:21.573982 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178626
2015-03-31 11:02:21.573983 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10013)  pre_dirty [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dn xlock x=1 by 0x29a73c00) (dversion lock w=1 last_client=708310) pv=178626 v=177608 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.573993 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3cb128]
2015-03-31 11:02:21.574002 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a73c00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:21.574013 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x995ae10
2015-03-31 11:02:21.574014 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178627
2015-03-31 11:02:21.574016 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178627 v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.574024 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178627 v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.574030 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3cb128]
2015-03-31 11:02:21.574035 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.574037 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574051 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295198
2015-03-31 11:02:21.574053 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295198 v=3295196 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.574057 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295198 (current v 3295196)
2015-03-31 11:02:21.574058 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178627 v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.574065 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.574067 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a73c00 on [dir 10000000000 /test_small/ [2,head] auth v=3295197 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:21.574076 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x995b860
2015-03-31 11:02:21.574078 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295199
2015-03-31 11:02:21.574079 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.574090 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.574100 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574112 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.574114 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.915384 < 1, stopping
2015-03-31 11:02:21.574119 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.574131 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:21.574136 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295198 v=3295196 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.574141 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31279} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574158 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3cb128]
2015-03-31 11:02:21.574166 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:21.574170 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574178 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.574179 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574188 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574195 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574201 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574209 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574216 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574224 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574230 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574238 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574244 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574250 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574256 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574262 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574269 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574275 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3cb128]
2015-03-31 11:02:21.574286 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.574288 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:21.574292 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3cb128 tracedn 0x676d0c0
2015-03-31 11:02:21.574295 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a73c00) [dentry #1/test_small/small5/blarg10013 [2,head] auth NULL (dn xlock x=1 by 0x29a73c00) (dversion lock w=1 last_client=708310) pv=178626 v=177608 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d0c0]
2015-03-31 11:02:21.574303 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407317 create #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.574315 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.574319 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31280
2015-03-31 11:02:21.574322 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31280 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.574328 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:21.574331 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:21.574333 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) including xattrs version 0
2015-03-31 11:02:21.574379 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.574413 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.574430 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.574439 7fbe406af700  5 mds.0.log _submit_thread 5419516071~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:21.574446 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.574461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.574487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.574500 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.574512 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.574523 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574536 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574548 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574560 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574573 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574585 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.574930 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407318 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.574957 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407318 cr=0x43d3c00)
2015-03-31 11:02:21.574961 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407318 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.574966 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407318 cr=0x43d3c00) #1000006b2a3
2015-03-31 11:02:21.574968 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a3 snap head
2015-03-31 11:02:21.574970 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.574972 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3cb128]
2015-03-31 11:02:21.574991 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407318 cr=0x43d3c00)
2015-03-31 11:02:21.574995 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.575015 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.575029 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.575043 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3cb128]
2015-03-31 11:02:21.575054 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.575071 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.575088 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.575099 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.575112 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.575125 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.575137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3cb128]
2015-03-31 11:02:21.575159 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_pin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3cb128] now 1+0
2015-03-31 11:02:21.575182 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.575198 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.575213 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.575224 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.575235 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.575247 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.575258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.575268 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.575285 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407318 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.575291 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407318 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.575305 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.575309 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.575313 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:21.575316 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.575334 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407318 cr=0x43d3c00)
2015-03-31 11:02:21.575360 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.575380 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.575396 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.575408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.575420 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.575444 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.575456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.575466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.575477 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.575496 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.575509 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.575522 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_unpin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128] now 0+0
2015-03-31 11:02:21.575902 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407319 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.575924 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407319 cr=0x43d4880)
2015-03-31 11:02:21.575928 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407319 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.575932 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407319 cr=0x43d4880) #1000006b2a3
2015-03-31 11:02:21.575934 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a3 snap head
2015-03-31 11:02:21.575937 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.575938 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.575954 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407319 cr=0x43d4880)
2015-03-31 11:02:21.575957 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.575975 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.575987 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.576000 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.576011 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.576026 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.576042 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.576053 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.576063 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.576073 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.576083 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.576104 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_pin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128] now 1+0
2015-03-31 11:02:21.576115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.576132 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.576160 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.576172 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.576183 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.576194 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.576205 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.576214 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.576230 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407319 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.576236 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407319 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.576250 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.576253 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.576257 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:21.576260 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.576276 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407319 cr=0x43d4880)
2015-03-31 11:02:21.576301 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.576320 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.576336 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.576348 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.576360 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.576372 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.576396 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.576408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.576418 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.576435 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.576447 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.576459 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_unpin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128] now 0+0
2015-03-31 11:02:21.579907 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e32 follows 0 op update
2015-03-31 11:02:21.579911 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.579923 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.579925 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.579944 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.579945 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.579951 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.579959 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:21.579961 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.579974 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.579996 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580002 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.580004 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580012 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580020 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580026 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580026 7fbe406af700  5 mds.0.log _submit_thread 5419517711~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:21.580034 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580041 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580046 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580052 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.580062 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.619073 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407320 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.619101 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407320 cr=0x43d1180)
2015-03-31 11:02:21.619105 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407320 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.619109 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407320 cr=0x43d1180) #1000006b2a3
2015-03-31 11:02:21.619111 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a3 snap head
2015-03-31 11:02:21.619113 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.619115 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.619133 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407320 cr=0x43d1180)
2015-03-31 11:02:21.619136 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.619156 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.619170 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.619183 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.619205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.619221 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.619237 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.619259 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.619271 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.619295 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.619306 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.619316 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_pin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128] now 1+0
2015-03-31 11:02:21.619326 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.619341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.619357 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.619366 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.619377 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.619388 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.619400 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.619410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.619427 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407320 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.619432 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407320 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.619446 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.619449 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.619453 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:21.619456 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.619473 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407320 cr=0x43d1180)
2015-03-31 11:02:21.619498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.619517 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.619534 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.619546 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.619558 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.619582 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.619595 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.619606 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.619617 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.619635 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.619647 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.619657 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_unpin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128] now 0+0
2015-03-31 11:02:21.620961 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e32 follows 0 op update
2015-03-31 11:02:21.620966 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.620980 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.620983 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.621004 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.621006 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621013 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621023 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.621025 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621031 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621041 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621046 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.621048 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621056 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621063 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621068 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621076 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.621077 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.621079 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e32 [2,head] /test_small/small1/blarg10013 auth v136844 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cc420]
2015-03-31 11:02:21.621087 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.661107 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407321 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.661137 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407321 cr=0xb261180)
2015-03-31 11:02:21.661139 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407321 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.661143 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407321 cr=0xb261180) #1000006b2a3
2015-03-31 11:02:21.661145 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a3 snap head
2015-03-31 11:02:21.661147 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.661150 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.661171 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407321 cr=0xb261180)
2015-03-31 11:02:21.661175 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.661195 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.661209 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.661235 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.661244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.661261 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.661289 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.661312 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.661324 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.661335 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.661346 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:21.661356 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_pin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128] now 1+0
2015-03-31 11:02:21.661367 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.661383 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.661398 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.661409 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.661420 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.661430 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.661439 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.661447 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.661462 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407321 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.661466 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407321 getattr Xs #1000006b2a3 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.661479 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.661482 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.661487 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:21.661490 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.661506 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407321 cr=0xb261180)
2015-03-31 11:02:21.661529 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.661549 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.661565 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.661578 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.661591 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.661603 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.661627 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.661640 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3cb128]
2015-03-31 11:02:21.661651 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.661668 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.661681 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.661693 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) auth_unpin by 0x29a73700 on [inode 1000006b2a3 [2,head] {#1000006b2a3 /test_small/small5/blarg10013} auth v178626 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3cb128] now 0+0
2015-03-31 11:02:21.661998 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407322 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.662022 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407322 cr=0xb263200)
2015-03-31 11:02:21.662024 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407322 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.662028 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407322 cr=0xb263200) #10000004e31
2015-03-31 11:02:21.662030 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e31 snap head
2015-03-31 11:02:21.662032 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.662034 7fbe462be700 10 mds.0.server ref is [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.662046 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407322 cr=0xb263200)
2015-03-31 11:02:21.662050 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.662068 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.662081 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.662090 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.662099 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.662115 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.662131 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.662142 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.662154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.662164 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.662175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.662180 7fbe462be700 10 mds.0.cache.ino(10000004e31) auth_pin by 0x29a73700 on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8] now 1+0
2015-03-31 11:02:21.662190 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.662206 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.662222 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.662234 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.662258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.662268 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.662290 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662297 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662305 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662310 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662327 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407322 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.662334 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407322 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.662348 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.662351 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.662355 7fbe462be700 10 mds.0.cache.ino(10000004e31) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:21.662358 7fbe462be700 10 mds.0.cache.ino(10000004e31) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.662373 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407322 cr=0xb263200)
2015-03-31 11:02:21.662398 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.662417 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.662434 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.662447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.662459 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.662469 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.662492 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662499 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.662519 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.662536 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.662548 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.662559 7fbe462be700 10 mds.0.cache.ino(10000004e31) auth_unpin by 0x29a73700 on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cbae8] now 0+0
2015-03-31 11:02:21.662944 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407323 lookup #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.662967 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407323 cr=0xb267800)
2015-03-31 11:02:21.662971 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407323 lookup #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.662974 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407323 cr=0xb267800) #1000006026a/blarg10014
2015-03-31 11:02:21.662976 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.662980 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10014 [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock) v=177610 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.662993 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.662995 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407323 lookup #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.663008 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.663026 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407323 cr=0xb267800)
2015-03-31 11:02:21.663543 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407324 lookup #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.663568 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407324 cr=0xb261e00)
2015-03-31 11:02:21.663572 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407324 lookup #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.663576 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407324 cr=0xb261e00) #1000006026a/blarg10014
2015-03-31 11:02:21.663578 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.663582 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10014 [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock) v=177610 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.663591 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.663594 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407324 lookup #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.663608 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.663623 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407324 cr=0xb261e00)
2015-03-31 11:02:21.664138 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407325 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.664165 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407325 cr=0x8f08500)
2015-03-31 11:02:21.664167 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407325 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.664171 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407325 cr=0x8f08500) #10000004e31
2015-03-31 11:02:21.664174 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e31 snap head
2015-03-31 11:02:21.664175 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.664177 7fbe462be700 10 mds.0.server ref is [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.664193 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407325 cr=0x8f08500)
2015-03-31 11:02:21.664197 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.664217 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.664231 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.664243 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.664250 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.664266 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.664282 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.664293 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.664306 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.664316 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.664327 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.664332 7fbe462be700 10 mds.0.cache.ino(10000004e31) auth_pin by 0x29a73700 on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8] now 1+0
2015-03-31 11:02:21.664352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.664368 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.664396 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.664407 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.664418 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.664427 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.664437 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664443 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664450 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664457 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664471 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407325 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.664477 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407325 getattr Xs #10000004e31 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.664491 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.664495 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.664499 7fbe462be700 10 mds.0.cache.ino(10000004e31) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:21.664502 7fbe462be700 10 mds.0.cache.ino(10000004e31) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.664520 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407325 cr=0x8f08500)
2015-03-31 11:02:21.664545 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.664563 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.664580 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.664592 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.664603 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.664614 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.664637 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664645 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664653 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664659 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cbae8]
2015-03-31 11:02:21.664667 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.664684 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.664697 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.664707 7fbe462be700 10 mds.0.cache.ino(10000004e31) auth_unpin by 0x29a73700 on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9cbae8] now 0+0
2015-03-31 11:02:21.665046 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407326 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.665070 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407326 cr=0x8f0d280)
2015-03-31 11:02:21.665073 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407326 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.665077 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407326 cr=0x8f0d280) #1000006026a
2015-03-31 11:02:21.665079 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.665081 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.665082 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665103 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407326 cr=0x8f0d280)
2015-03-31 11:02:21.665106 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.665122 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.665134 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.665163 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.665178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.665189 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.665202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665214 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.665227 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.665243 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.665259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.665272 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.665295 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665331 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665343 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31280} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665360 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407326 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.665366 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407326 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.665379 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.665383 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.665387 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31281
2015-03-31 11:02:21.665389 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31281 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.665404 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407326 cr=0x8f0d280)
2015-03-31 11:02:21.665425 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.665443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.665457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.665469 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.665481 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665493 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665516 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.665540 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:21.665556 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:21.665568 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:21.665985 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407327 create #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.666009 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407327 cr=0x3b9b480)
2015-03-31 11:02:21.666013 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407327 create #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.666017 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10014
2015-03-31 11:02:21.666018 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407327 cr=0x3b9b480) #1000006026a/blarg10014
2015-03-31 11:02:21.666021 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10014
2015-03-31 11:02:21.666023 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.666025 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.666027 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178627 v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.666039 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178627 v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.666047 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10014 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178627 v=178625 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.666059 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407327 cr=0x3b9b480)
2015-03-31 11:02:21.666066 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666089 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666103 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666116 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock) v=177610 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666123 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666139 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.666156 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666168 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.666181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=1+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666204 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.666229 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock) v=177610 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666234 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10014) auth_pin by 0x29a73700 on [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock) v=177610 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0] now 1+0
2015-03-31 11:02:21.666240 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock) v=177610 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666245 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177610 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666250 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177610 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666255 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177610 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666261 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177610 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666268 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10014) auth_pin by 0x676d3f8 on [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177610 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0] now 2+0
2015-03-31 11:02:21.666273 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a73700) [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dn xlock x=1 by 0x29a73700) (dversion lock w=1 last_client=708310) v=177610 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666279 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666295 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666311 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666325 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666360 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666372 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666382 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666394 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666405 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666419 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666429 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666440 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666449 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666460 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666471 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666481 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666503 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a4 ([1000006b2a5~37e], 894 left)
2015-03-31 11:02:21.666507 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:21.666508 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a4 [2,head] #1000006b2a4 auth v1 s=0 n() (iversion lock) 0x3f40b070]
2015-03-31 11:02:21.666514 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178628
2015-03-31 11:02:21.666515 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10014)  pre_dirty [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dn xlock x=1 by 0x29a73700) (dversion lock w=1 last_client=708310) pv=178628 v=177610 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666524 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f40b070]
2015-03-31 11:02:21.666533 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a73700 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178628 v=178625 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:21.666542 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x995ef60
2015-03-31 11:02:21.666544 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178629
2015-03-31 11:02:21.666546 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178629 v=178625 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.666553 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178629 v=178625 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.666561 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f40b070]
2015-03-31 11:02:21.666570 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.666572 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295198 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666588 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295200
2015-03-31 11:02:21.666590 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295200 v=3295196 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.666597 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295200 (current v 3295196)
2015-03-31 11:02:21.666599 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178629 v=178625 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.666606 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.666607 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a73700 on [dir 10000000000 /test_small/ [2,head] auth pv=3295200 v=3295197 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:21.666617 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x99596b0
2015-03-31 11:02:21.666618 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295201
2015-03-31 11:02:21.666619 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666631 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666641 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666651 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.666653 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.00792 ago, continuing
2015-03-31 11:02:21.666658 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120408 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666672 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120410
2015-03-31 11:02:21.666673 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120410 v=120408 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:21.666677 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120410 (current v 120408)
2015-03-31 11:02:21.666679 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295201 v=3295197 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:21.666688 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.666689 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x29a73700 on [dir 1 / [2,head] auth v=120409 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:57.000000 b422190196760 382332=382323+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 3
2015-03-31 11:02:21.666700 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x995e040
2015-03-31 11:02:21.666702 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120411
2015-03-31 11:02:21.666703 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666718 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666733 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666746 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.666747 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.00792 ago, continuing
2015-03-31 11:02:21.666750 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53467 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.666772 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120410 v=120408 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:21.666779 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.666802 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295200 v=3295196 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.666808 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31281} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.666826 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f40b070]
2015-03-31 11:02:21.666836 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:21.666839 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f40b070]
2015-03-31 11:02:21.666847 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.666848 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666856 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666862 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666871 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666879 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666885 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666893 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666901 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666907 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666914 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666920 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666927 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666935 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666941 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666947 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f40b070]
2015-03-31 11:02:21.666957 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.666958 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:21.666962 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f40b070 tracedn 0x676d2a0
2015-03-31 11:02:21.666966 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a73700) [dentry #1/test_small/small5/blarg10014 [2,head] auth NULL (dn xlock x=1 by 0x29a73700) (dversion lock w=1 last_client=708310) pv=178628 v=177610 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d2a0]
2015-03-31 11:02:21.666974 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407327 create #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.666985 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.666989 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31282
2015-03-31 11:02:21.666992 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31282 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.666999 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:21.667002 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:21.667005 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) including xattrs version 0
2015-03-31 11:02:21.667051 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667085 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667102 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667118 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667122 7fbe406af700  5 mds.0.log _submit_thread 5419518570~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:21.667151 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667176 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667188 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667201 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667214 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667227 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667239 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667249 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667261 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667558 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407328 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.667586 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407328 cr=0x3b9d000)
2015-03-31 11:02:21.667590 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407328 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.667594 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407328 cr=0x3b9d000) #1000006b2a4
2015-03-31 11:02:21.667596 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a4 snap head
2015-03-31 11:02:21.667598 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.667600 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f40b070]
2015-03-31 11:02:21.667617 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407328 cr=0x3b9d000)
2015-03-31 11:02:21.667620 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667639 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667652 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667665 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f40b070]
2015-03-31 11:02:21.667674 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667690 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.667706 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667718 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.667731 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667743 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.667755 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f40b070]
2015-03-31 11:02:21.667765 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_pin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f40b070] now 1+0
2015-03-31 11:02:21.667776 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667811 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.667839 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667851 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.667862 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667874 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.667885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.667896 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.667913 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407328 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.667919 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407328 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.667931 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.667935 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.667939 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:21.667942 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.667959 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407328 cr=0x3b9d000)
2015-03-31 11:02:21.667984 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668003 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668020 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668033 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668046 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668058 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668082 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.668094 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.668103 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.668120 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.668133 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.668146 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_unpin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070] now 0+0
2015-03-31 11:02:21.668484 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407329 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.668508 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407329 cr=0x3b9c100)
2015-03-31 11:02:21.668510 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407329 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.668514 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407329 cr=0x3b9c100) #1000006b2a4
2015-03-31 11:02:21.668516 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a4 snap head
2015-03-31 11:02:21.668518 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.668519 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.668536 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407329 cr=0x3b9c100)
2015-03-31 11:02:21.668539 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668557 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668571 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668584 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.668595 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668611 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.668627 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668638 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.668651 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668663 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.668674 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.668683 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_pin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070] now 1+0
2015-03-31 11:02:21.668694 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668722 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668751 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668762 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668773 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668790 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668802 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.668811 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.668827 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407329 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.668833 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407329 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.668847 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.668851 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.668857 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:21.668860 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.668877 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407329 cr=0x3b9c100)
2015-03-31 11:02:21.668900 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668919 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.668935 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668948 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.668960 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668972 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.668995 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.669007 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.669018 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.669034 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.669046 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.669059 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_unpin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070] now 0+0
2015-03-31 11:02:21.672394 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e31 follows 0 op update
2015-03-31 11:02:21.672399 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672413 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.672427 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.672449 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.672450 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672457 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672465 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:21.672469 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672483 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672507 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672513 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.672514 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672525 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672533 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672536 7fbe406af700  5 mds.0.log _submit_thread 5419521360~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:21.672542 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672551 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672557 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672563 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672569 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.672580 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.712098 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407330 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.712124 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407330 cr=0x3b99900)
2015-03-31 11:02:21.712129 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407330 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.712134 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407330 cr=0x3b99900) #1000006b2a4
2015-03-31 11:02:21.712136 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a4 snap head
2015-03-31 11:02:21.712138 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.712139 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.712158 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407330 cr=0x3b99900)
2015-03-31 11:02:21.712162 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.712182 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.712197 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.712209 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.712221 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.712237 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.712265 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.712277 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.712289 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.712311 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.712322 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.712332 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_pin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070] now 1+0
2015-03-31 11:02:21.712355 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.712370 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.712385 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.712396 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.712407 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.712418 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.712429 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.712439 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.712455 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407330 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.712461 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407330 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.712474 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.712477 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.712483 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:21.712486 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.712502 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407330 cr=0x3b99900)
2015-03-31 11:02:21.712524 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.712542 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.712558 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.712570 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.712582 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.712605 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.712617 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.712629 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.712640 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.712656 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.712668 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.712679 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_unpin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070] now 0+0
2015-03-31 11:02:21.713959 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e31 follows 0 op update
2015-03-31 11:02:21.713963 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.713976 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.713979 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.714000 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.714001 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714008 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714017 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.714020 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714026 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714034 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714040 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.714041 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714048 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714056 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714061 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714067 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.714068 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.714070 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e31 [2,head] /test_small/small1/blarg10014 auth v136846 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cbae8]
2015-03-31 11:02:21.714078 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.754065 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407331 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.754090 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407331 cr=0x25f4e400)
2015-03-31 11:02:21.754095 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407331 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.754100 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407331 cr=0x25f4e400) #1000006b2a4
2015-03-31 11:02:21.754102 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a4 snap head
2015-03-31 11:02:21.754104 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.754105 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.754122 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407331 cr=0x25f4e400)
2015-03-31 11:02:21.754125 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.754145 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.754158 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.754171 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.754182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.754198 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.754214 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.754236 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.754248 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.754258 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.754280 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:21.754288 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_pin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070] now 1+0
2015-03-31 11:02:21.754311 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.754326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.754339 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.754350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.754361 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.754371 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.754381 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.754391 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.754407 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407331 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.754412 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407331 getattr Xs #1000006b2a4 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.754424 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.754428 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.754433 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:21.754436 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.754450 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407331 cr=0x25f4e400)
2015-03-31 11:02:21.754471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.754505 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.754520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.754532 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.754543 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.754565 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.754575 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.754586 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f40b070]
2015-03-31 11:02:21.754596 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.754612 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.754624 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.754635 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) auth_unpin by 0x2876ad00 on [inode 1000006b2a4 [2,head] {#1000006b2a4 /test_small/small5/blarg10014} auth v178628 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f40b070] now 0+0
2015-03-31 11:02:21.754929 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407332 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.754949 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407332 cr=0x25f4af80)
2015-03-31 11:02:21.754951 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407332 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.754955 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407332 cr=0x25f4af80) #10000004e35
2015-03-31 11:02:21.754957 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e35 snap head
2015-03-31 11:02:21.754958 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.754959 7fbe462be700 10 mds.0.server ref is [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.754972 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407332 cr=0x25f4af80)
2015-03-31 11:02:21.754975 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.754992 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.755004 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.755013 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.755019 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.755033 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.755048 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.755059 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.755070 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.755079 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.755089 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.755094 7fbe462be700 10 mds.0.cache.ino(10000004e35) auth_pin by 0x2876ad00 on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0] now 1+0
2015-03-31 11:02:21.755102 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.755117 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.755132 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.755143 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.755154 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.755164 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.755173 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755190 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755195 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755214 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755228 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407332 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.755232 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407332 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.755244 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.755247 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.755251 7fbe462be700 10 mds.0.cache.ino(10000004e35) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:21.755254 7fbe462be700 10 mds.0.cache.ino(10000004e35) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.755267 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407332 cr=0x25f4af80)
2015-03-31 11:02:21.755288 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.755305 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.755320 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.755331 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.755342 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.755351 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.755373 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755380 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755386 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755393 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.755398 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.755414 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.755425 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.755434 7fbe462be700 10 mds.0.cache.ino(10000004e35) auth_unpin by 0x2876ad00 on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cb1b0] now 0+0
2015-03-31 11:02:21.755753 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407333 lookup #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.755770 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407333 cr=0x968b200)
2015-03-31 11:02:21.755774 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407333 lookup #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.755777 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407333 cr=0x968b200) #1000006026a/blarg10015
2015-03-31 11:02:21.755779 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.755790 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10015 [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock) v=177612 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d480]
2015-03-31 11:02:21.755798 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.755800 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407333 lookup #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.755812 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.755825 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407333 cr=0x968b200)
2015-03-31 11:02:21.756316 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407334 lookup #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.756339 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407334 cr=0x968c880)
2015-03-31 11:02:21.756343 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407334 lookup #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.756346 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407334 cr=0x968c880) #1000006026a/blarg10015
2015-03-31 11:02:21.756348 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.756351 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10015 [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock) v=177612 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d480]
2015-03-31 11:02:21.756360 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.756362 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407334 lookup #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.756374 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.756387 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407334 cr=0x968c880)
2015-03-31 11:02:21.756886 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407335 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.756909 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407335 cr=0x968e400)
2015-03-31 11:02:21.756912 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407335 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.756916 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407335 cr=0x968e400) #10000004e35
2015-03-31 11:02:21.756918 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e35 snap head
2015-03-31 11:02:21.756919 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.756920 7fbe462be700 10 mds.0.server ref is [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.756934 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407335 cr=0x968e400)
2015-03-31 11:02:21.756937 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.756956 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.756968 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.756978 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.756986 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757002 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.757018 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757028 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.757040 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.757049 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.757059 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.757064 7fbe462be700 10 mds.0.cache.ino(10000004e35) auth_pin by 0x2876ad00 on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0] now 1+0
2015-03-31 11:02:21.757071 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757097 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757112 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757135 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757145 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.757154 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.757163 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757170 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757177 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757182 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757195 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407335 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.757200 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407335 getattr Xs #10000004e35 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.757211 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.757215 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.757220 7fbe462be700 10 mds.0.cache.ino(10000004e35) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:21.757222 7fbe462be700 10 mds.0.cache.ino(10000004e35) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.757237 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407335 cr=0x968e400)
2015-03-31 11:02:21.757257 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757275 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757290 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757301 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757313 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.757322 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.757342 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757349 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757356 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757363 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9cb1b0]
2015-03-31 11:02:21.757368 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.757384 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.757395 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.757405 7fbe462be700 10 mds.0.cache.ino(10000004e35) auth_unpin by 0x2876ad00 on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9cb1b0] now 0+0
2015-03-31 11:02:21.757711 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407336 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.757732 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407336 cr=0x9689e00)
2015-03-31 11:02:21.757734 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407336 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.757737 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407336 cr=0x9689e00) #1000006026a
2015-03-31 11:02:21.757739 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.757740 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.757741 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.757757 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407336 cr=0x9689e00)
2015-03-31 11:02:21.757760 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757775 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757791 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.757802 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757817 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.757831 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757842 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.757853 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.757863 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.757875 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757890 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.757904 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757915 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.757926 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.757937 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.757947 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.757957 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31282} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.757999 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407336 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.758004 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407336 getattr Xs #1000006026a 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.758014 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.758017 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.758021 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31283
2015-03-31 11:02:21.758023 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31283 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.758037 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407336 cr=0x9689e00)
2015-03-31 11:02:21.758058 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758074 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758088 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758099 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758110 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758121 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758143 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758153 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758164 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:21.758179 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:21.758189 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:21.758570 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407337 create #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.758592 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407337 cr=0x23fb8a00)
2015-03-31 11:02:21.758594 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407337 create #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.758597 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10015
2015-03-31 11:02:21.758598 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407337 cr=0x23fb8a00) #1000006026a/blarg10015
2015-03-31 11:02:21.758601 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10015
2015-03-31 11:02:21.758602 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.758604 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.758606 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178629 v=178625 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.758616 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178629 v=178625 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.758624 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10015 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178629 v=178625 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.758635 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407337 cr=0x23fb8a00)
2015-03-31 11:02:21.758641 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758661 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758674 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758685 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock) v=177612 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d480]
2015-03-31 11:02:21.758692 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758706 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.758721 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758731 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.758742 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=2+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758753 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.758764 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock) v=177612 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d480]
2015-03-31 11:02:21.758779 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10015) auth_pin by 0x2876ad00 on [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock) v=177612 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480] now 1+0
2015-03-31 11:02:21.758791 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock) v=177612 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.758796 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177612 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.758813 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177612 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.758818 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177612 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.758823 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177612 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.758828 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10015) auth_pin by 0x676d5d8 on [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177612 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480] now 2+0
2015-03-31 11:02:21.758833 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2876ad00) [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dn xlock x=1 by 0x2876ad00) (dversion lock w=1 last_client=708310) v=177612 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.758839 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758855 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758870 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758883 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.758897 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758908 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758918 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758928 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.758938 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758948 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758959 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758969 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758978 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758989 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.758999 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759009 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759019 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759029 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759048 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a5 ([1000006b2a6~37d], 893 left)
2015-03-31 11:02:21.759051 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:21.759053 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a5 [2,head] #1000006b2a5 auth v1 s=0 n() (iversion lock) 0x3f47a3a8]
2015-03-31 11:02:21.759057 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178630
2015-03-31 11:02:21.759059 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10015)  pre_dirty [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dn xlock x=1 by 0x2876ad00) (dversion lock w=1 last_client=708310) pv=178630 v=177612 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.759067 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f47a3a8]
2015-03-31 11:02:21.759074 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2876ad00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178630 v=178625 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:21.759084 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x995d540
2015-03-31 11:02:21.759085 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178631
2015-03-31 11:02:21.759087 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178631 v=178625 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.759094 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178631 v=178625 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.759100 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f47a3a8]
2015-03-31 11:02:21.759106 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.759108 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295200 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759122 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295202
2015-03-31 11:02:21.759123 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295202 v=3295196 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.759127 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295202 (current v 3295196)
2015-03-31 11:02:21.759129 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178631 v=178625 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.759135 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.759137 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2876ad00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295202 v=3295197 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:21.759146 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9958210
2015-03-31 11:02:21.759147 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295203
2015-03-31 11:02:21.759148 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759160 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759171 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759182 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.759183 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.092547 < 1, stopping
2015-03-31 11:02:21.759188 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759199 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:21.759203 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295202 v=3295196 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.759209 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31283} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759224 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f47a3a8]
2015-03-31 11:02:21.759232 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:21.759235 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759244 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.759246 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759254 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759261 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759268 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759276 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759282 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759290 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759297 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759304 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759310 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759316 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759323 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759330 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759337 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759344 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759354 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.759355 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:21.759358 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f47a3a8 tracedn 0x676d480
2015-03-31 11:02:21.759361 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2876ad00) [dentry #1/test_small/small5/blarg10015 [2,head] auth NULL (dn xlock x=1 by 0x2876ad00) (dversion lock w=1 last_client=708310) pv=178630 v=177612 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d480]
2015-03-31 11:02:21.759368 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407337 create #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.759377 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.759381 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31284
2015-03-31 11:02:21.759383 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31284 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.759389 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:21.759393 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:21.759396 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) including xattrs version 0
2015-03-31 11:02:21.759436 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.759467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.759483 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.759492 7fbe406af700  5 mds.0.log _submit_thread 5419522219~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:21.759497 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.759523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759535 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759547 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759558 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759569 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759581 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759593 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759603 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759614 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759625 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759899 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407338 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.759922 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407338 cr=0x23fbc880)
2015-03-31 11:02:21.759924 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407338 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.759928 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407338 cr=0x23fbc880) #1000006b2a5
2015-03-31 11:02:21.759930 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a5 snap head
2015-03-31 11:02:21.759932 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.759933 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759947 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407338 cr=0x23fbc880)
2015-03-31 11:02:21.759950 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.759965 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.759976 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.759987 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f47a3a8]
2015-03-31 11:02:21.759997 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760012 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.760027 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760038 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.760049 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760060 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.760071 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f47a3a8]
2015-03-31 11:02:21.760081 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_pin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f47a3a8] now 1+0
2015-03-31 11:02:21.760092 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760108 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760122 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760134 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760145 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760184 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760193 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.760203 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.760219 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407338 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.760224 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407338 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.760235 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.760239 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.760244 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:21.760246 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.760260 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407338 cr=0x23fbc880)
2015-03-31 11:02:21.760281 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760298 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760313 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760324 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760336 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760346 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760368 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.760379 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.760389 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.760405 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.760416 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.760427 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_unpin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8] now 0+0
2015-03-31 11:02:21.760692 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407339 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.760711 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407339 cr=0x23fbc100)
2015-03-31 11:02:21.760714 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407339 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.760717 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407339 cr=0x23fbc100) #1000006b2a5
2015-03-31 11:02:21.760719 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a5 snap head
2015-03-31 11:02:21.760720 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.760722 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.760736 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407339 cr=0x23fbc100)
2015-03-31 11:02:21.760738 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760755 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760767 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760777 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.760792 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760806 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.760821 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760832 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.760844 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760854 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.760865 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.760875 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_pin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8] now 1+0
2015-03-31 11:02:21.760885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760901 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.760916 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760928 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.760949 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760973 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.760983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.760992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.761007 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407339 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.761011 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407339 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.761022 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.761025 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.761029 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:21.761031 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.761044 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407339 cr=0x23fbc100)
2015-03-31 11:02:21.761064 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.761082 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.761096 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.761108 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.761130 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.761141 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.761152 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.761163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.761173 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.761189 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.761200 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.761211 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_unpin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8] now 0+0
2015-03-31 11:02:21.765287 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e35 follows 0 op update
2015-03-31 11:02:21.765292 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765301 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.765304 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.765321 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.765321 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765327 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765335 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:21.765337 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765348 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765369 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765375 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.765376 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765384 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765392 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765399 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765396 7fbe406af700  5 mds.0.log _submit_thread 5419523859~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:21.765406 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765412 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765417 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765425 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.765435 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.805078 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407340 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.805100 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407340 cr=0x6887800)
2015-03-31 11:02:21.805105 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407340 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.805109 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407340 cr=0x6887800) #1000006b2a5
2015-03-31 11:02:21.805111 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a5 snap head
2015-03-31 11:02:21.805113 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.805114 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.805132 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407340 cr=0x6887800)
2015-03-31 11:02:21.805135 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.805154 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.805167 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.805179 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.805190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.805207 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.805222 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.805233 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.805256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.805266 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.805277 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.805297 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_pin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8] now 1+0
2015-03-31 11:02:21.805307 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.805334 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.805348 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.805359 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.805368 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.805378 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.805388 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.805398 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.805414 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407340 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.805418 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407340 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.805429 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.805433 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.805438 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:21.805440 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.805454 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407340 cr=0x6887800)
2015-03-31 11:02:21.805474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.805492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.805507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.805518 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.805529 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.805551 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.805562 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.805573 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.805583 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.805599 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.805610 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.805621 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_unpin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8] now 0+0
2015-03-31 11:02:21.806930 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e35 follows 0 op update
2015-03-31 11:02:21.806933 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.806945 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.806947 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.806966 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.806967 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.806974 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.806983 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.806985 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.806990 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.806998 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.807004 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.807005 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.807013 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.807020 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.807026 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.807031 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.807032 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.807033 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e35 [2,head] /test_small/small1/blarg10015 auth v136848 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9cb1b0]
2015-03-31 11:02:21.807041 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.847068 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407341 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.847092 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407341 cr=0x6885780)
2015-03-31 11:02:21.847093 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407341 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.847097 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407341 cr=0x6885780) #1000006b2a5
2015-03-31 11:02:21.847099 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a5 snap head
2015-03-31 11:02:21.847101 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.847102 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.847119 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407341 cr=0x6885780)
2015-03-31 11:02:21.847122 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847141 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.847154 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.847166 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.847177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847193 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.847208 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.847219 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.847231 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.847252 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.847263 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:21.847283 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_pin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8] now 1+0
2015-03-31 11:02:21.847293 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.847344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.847354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.847363 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.847373 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.847382 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.847397 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407341 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.847402 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407341 getattr Xs #1000006b2a5 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:21.847412 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.847416 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.847419 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:21.847421 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.847434 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407341 cr=0x6885780)
2015-03-31 11:02:21.847454 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847471 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.847497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.847508 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.847530 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.847540 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.847551 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47a3a8]
2015-03-31 11:02:21.847561 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.847576 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.847587 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.847598 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) auth_unpin by 0x296a6e00 on [inode 1000006b2a5 [2,head] {#1000006b2a5 /test_small/small5/blarg10015} auth v178630 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47a3a8] now 0+0
2015-03-31 11:02:21.847899 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407342 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.847917 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407342 cr=0x6887d00)
2015-03-31 11:02:21.847919 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407342 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.847922 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407342 cr=0x6887d00) #10000004e34
2015-03-31 11:02:21.847924 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e34 snap head
2015-03-31 11:02:21.847926 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.847927 7fbe462be700 10 mds.0.server ref is [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.847937 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407342 cr=0x6887d00)
2015-03-31 11:02:21.847940 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847956 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.847967 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.847977 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.847983 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.847998 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.848013 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.848023 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.848034 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.848043 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.848053 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.848058 7fbe462be700 10 mds.0.cache.ino(10000004e34) auth_pin by 0x296a6e00 on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878] now 1+0
2015-03-31 11:02:21.848066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.848081 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.848096 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.848107 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.848118 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.848127 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.848137 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848144 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848162 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848169 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848192 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407342 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.848197 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407342 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.848207 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.848210 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.848215 7fbe462be700 10 mds.0.cache.ino(10000004e34) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:21.848217 7fbe462be700 10 mds.0.cache.ino(10000004e34) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.848230 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407342 cr=0x6887d00)
2015-03-31 11:02:21.848249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.848265 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.848280 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.848290 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.848301 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.848309 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.848329 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848336 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848342 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848347 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.848354 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.848368 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.848380 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.848389 7fbe462be700 10 mds.0.cache.ino(10000004e34) auth_unpin by 0x296a6e00 on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ca878] now 0+0
2015-03-31 11:02:21.848702 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407343 lookup #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.848719 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407343 cr=0x9408c80)
2015-03-31 11:02:21.848721 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407343 lookup #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.848723 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407343 cr=0x9408c80) #1000006026a/blarg10016
2015-03-31 11:02:21.848725 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.848728 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10016 [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock) v=177614 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d660]
2015-03-31 11:02:21.848737 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.848739 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407343 lookup #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.848748 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.848759 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407343 cr=0x9408c80)
2015-03-31 11:02:21.849237 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407344 lookup #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.849257 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407344 cr=0x9408f00)
2015-03-31 11:02:21.849259 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407344 lookup #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.849262 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407344 cr=0x9408f00) #1000006026a/blarg10016
2015-03-31 11:02:21.849264 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.849267 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10016 [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock) v=177614 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d660]
2015-03-31 11:02:21.849275 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.849278 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407344 lookup #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.849290 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.849302 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407344 cr=0x9408f00)
2015-03-31 11:02:21.849757 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407345 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.849780 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407345 cr=0x940b480)
2015-03-31 11:02:21.849786 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407345 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.849789 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407345 cr=0x940b480) #10000004e34
2015-03-31 11:02:21.849791 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e34 snap head
2015-03-31 11:02:21.849793 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.849794 7fbe462be700 10 mds.0.server ref is [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.849806 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407345 cr=0x940b480)
2015-03-31 11:02:21.849809 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.849828 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.849840 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.849850 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.849855 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.849871 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.849886 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.849896 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.849907 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.849917 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.849926 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.849932 7fbe462be700 10 mds.0.cache.ino(10000004e34) auth_pin by 0x296a6e00 on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878] now 1+0
2015-03-31 11:02:21.849940 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.849955 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.849980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850002 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.850020 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.850029 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850035 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850041 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850047 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850059 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407345 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.850064 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407345 getattr Xs #10000004e34 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.850075 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.850078 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.850081 7fbe462be700 10 mds.0.cache.ino(10000004e34) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:21.850083 7fbe462be700 10 mds.0.cache.ino(10000004e34) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.850096 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407345 cr=0x940b480)
2015-03-31 11:02:21.850116 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850133 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850148 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850159 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850170 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.850190 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.850199 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850207 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850214 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ca878]
2015-03-31 11:02:21.850226 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.850241 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.850253 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.850263 7fbe462be700 10 mds.0.cache.ino(10000004e34) auth_unpin by 0x296a6e00 on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9ca878] now 0+0
2015-03-31 11:02:21.850554 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407346 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.850572 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407346 cr=0x940a080)
2015-03-31 11:02:21.850574 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407346 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.850577 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407346 cr=0x940a080) #1000006026a
2015-03-31 11:02:21.850579 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.850580 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.850582 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850597 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407346 cr=0x940a080)
2015-03-31 11:02:21.850600 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850615 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850625 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850635 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850649 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.850663 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850673 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.850683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850693 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.850704 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850732 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850743 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850754 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850764 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850775 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850790 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31284} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850819 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407346 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.850835 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407346 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.850845 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.850848 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.850852 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31285
2015-03-31 11:02:21.850854 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31285 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.850867 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407346 cr=0x940a080)
2015-03-31 11:02:21.850886 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850902 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.850916 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850927 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.850937 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850958 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850969 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850979 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.850989 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:21.851004 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:21.851014 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:21.851366 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407347 create #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.851386 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407347 cr=0x940f800)
2015-03-31 11:02:21.851388 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407347 create #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.851391 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10016
2015-03-31 11:02:21.851393 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407347 cr=0x940f800) #1000006026a/blarg10016
2015-03-31 11:02:21.851395 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10016
2015-03-31 11:02:21.851396 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.851398 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.851399 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178631 v=178625 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.851409 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178631 v=178625 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.851417 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10016 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178631 v=178625 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.851427 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407347 cr=0x940f800)
2015-03-31 11:02:21.851434 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.851453 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851466 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851477 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock) v=177614 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d660]
2015-03-31 11:02:21.851484 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.851503 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.851517 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851528 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.851539 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=3+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851549 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.851560 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock) v=177614 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d660]
2015-03-31 11:02:21.851565 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10016) auth_pin by 0x296a6e00 on [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock) v=177614 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660] now 1+0
2015-03-31 11:02:21.851572 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock) v=177614 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.851576 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177614 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.851592 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177614 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.851597 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177614 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.851603 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177614 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.851619 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10016) auth_pin by 0x676d7b8 on [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177614 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660] now 2+0
2015-03-31 11:02:21.851626 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x296a6e00) [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dn xlock x=1 by 0x296a6e00) (dversion lock w=1 last_client=708310) v=177614 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.851632 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.851647 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.851661 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.851674 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.851688 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851699 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851709 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851718 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851728 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851738 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851748 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851757 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851767 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851776 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851791 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851801 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851810 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851820 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851839 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a6 ([1000006b2a7~37c], 892 left)
2015-03-31 11:02:21.851842 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:21.851843 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a6 [2,head] #1000006b2a6 auth v1 s=0 n() (iversion lock) 0x3f47ed68]
2015-03-31 11:02:21.851847 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178632
2015-03-31 11:02:21.851849 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10016)  pre_dirty [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dn xlock x=1 by 0x296a6e00) (dversion lock w=1 last_client=708310) pv=178632 v=177614 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.851857 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f47ed68]
2015-03-31 11:02:21.851864 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x296a6e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178632 v=178625 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:21.851873 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x995d1d0
2015-03-31 11:02:21.851875 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178633
2015-03-31 11:02:21.851876 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178633 v=178625 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.851882 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178633 v=178625 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.851889 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f47ed68]
2015-03-31 11:02:21.851895 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.851897 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295202 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851911 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295204
2015-03-31 11:02:21.851912 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295204 v=3295196 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.851916 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295204 (current v 3295196)
2015-03-31 11:02:21.851917 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178633 v=178625 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.851924 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.851925 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x296a6e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295204 v=3295197 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:21.851933 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x995bd30
2015-03-31 11:02:21.851934 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295205
2015-03-31 11:02:21.851935 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851956 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851967 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.851977 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.851979 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.185338 < 1, stopping
2015-03-31 11:02:21.851983 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.851993 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:21.851997 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295204 v=3295196 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.852001 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31285} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852014 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f47ed68]
2015-03-31 11:02:21.852021 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:21.852024 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852031 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.852034 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852041 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852048 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852055 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852062 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852069 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852076 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852083 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852089 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852095 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852101 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852108 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852115 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852121 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852128 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47ed68]
2015-03-31 11:02:21.852138 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.852139 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:21.852142 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f47ed68 tracedn 0x676d660
2015-03-31 11:02:21.852144 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x296a6e00) [dentry #1/test_small/small5/blarg10016 [2,head] auth NULL (dn xlock x=1 by 0x296a6e00) (dversion lock w=1 last_client=708310) pv=178632 v=177614 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d660]
2015-03-31 11:02:21.852151 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407347 create #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.852160 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.852163 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31286
2015-03-31 11:02:21.852165 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31286 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.852170 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:21.852173 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:21.852176 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) including xattrs version 0
2015-03-31 11:02:21.852212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852242 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852258 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852267 7fbe406af700  5 mds.0.log _submit_thread 5419524718~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:21.852272 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852286 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852309 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852321 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852331 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852342 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852354 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852366 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852377 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852388 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852398 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852665 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407348 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.852685 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407348 cr=0x940e180)
2015-03-31 11:02:21.852687 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407348 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.852691 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407348 cr=0x940e180) #1000006b2a6
2015-03-31 11:02:21.852693 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a6 snap head
2015-03-31 11:02:21.852694 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.852695 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f47ed68]
2015-03-31 11:02:21.852709 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407348 cr=0x940e180)
2015-03-31 11:02:21.852711 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852728 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852739 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852750 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f47ed68]
2015-03-31 11:02:21.852759 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852773 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.852792 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852803 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.852814 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852823 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.852833 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f47ed68]
2015-03-31 11:02:21.852843 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_pin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f47ed68] now 1+0
2015-03-31 11:02:21.852853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852868 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.852883 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852894 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.852905 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852929 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.852951 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.852960 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.852975 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407348 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.852979 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407348 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.852989 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.852992 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.852996 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:21.852999 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.853012 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407348 cr=0x940e180)
2015-03-31 11:02:21.853031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853047 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853061 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853072 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853083 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853104 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853114 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.853125 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.853135 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.853151 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.853161 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.853172 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_unpin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68] now 0+0
2015-03-31 11:02:21.853470 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407349 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.853487 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407349 cr=0x940b700)
2015-03-31 11:02:21.853489 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407349 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.853493 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407349 cr=0x940b700) #1000006b2a6
2015-03-31 11:02:21.853494 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a6 snap head
2015-03-31 11:02:21.853496 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.853497 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.853510 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407349 cr=0x940b700)
2015-03-31 11:02:21.853513 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853529 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853540 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853550 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.853560 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853574 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.853589 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853599 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.853610 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853620 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.853631 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.853641 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_pin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68] now 1+0
2015-03-31 11:02:21.853651 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853666 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853680 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853691 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853702 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853712 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853732 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.853754 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.853768 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407349 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.853772 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407349 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.853787 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.853789 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.853792 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:21.853794 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.853808 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407349 cr=0x940b700)
2015-03-31 11:02:21.853828 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853844 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.853859 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853870 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.853891 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853901 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.853911 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.853921 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.853931 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.853946 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.853957 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.853967 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_unpin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68] now 0+0
2015-03-31 11:02:21.857161 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e34 follows 0 op update
2015-03-31 11:02:21.857165 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857174 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.857176 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.857193 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.857194 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857200 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857208 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:21.857210 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857221 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857241 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857248 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.857249 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857257 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857263 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857269 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857267 7fbe406af700  5 mds.0.log _submit_thread 5419526358~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:21.857276 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857282 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857287 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857294 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.857304 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.897079 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407350 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.897101 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407350 cr=0x2bd62580)
2015-03-31 11:02:21.897103 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407350 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.897106 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407350 cr=0x2bd62580) #1000006b2a6
2015-03-31 11:02:21.897108 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a6 snap head
2015-03-31 11:02:21.897109 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.897111 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.897128 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407350 cr=0x2bd62580)
2015-03-31 11:02:21.897131 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.897150 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.897163 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.897174 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.897185 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.897200 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.897216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.897227 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.897238 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.897259 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.897270 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.897280 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_pin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68] now 1+0
2015-03-31 11:02:21.897300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.897327 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.897341 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.897351 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.897361 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.897371 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.897381 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.897390 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.897406 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407350 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.897410 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407350 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.897421 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.897424 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.897428 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:21.897431 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.897445 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407350 cr=0x2bd62580)
2015-03-31 11:02:21.897464 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.897481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.897496 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.897507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.897517 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.897539 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.897549 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.897560 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.897570 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.897595 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.897606 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.897617 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_unpin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68] now 0+0
2015-03-31 11:02:21.898824 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e34 follows 0 op update
2015-03-31 11:02:21.898827 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898839 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.898841 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.898860 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.898861 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898868 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898876 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.898878 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898883 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898891 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898898 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.898899 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898906 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898913 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898918 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898924 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.898925 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.898926 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e34 [2,head] /test_small/small1/blarg10016 auth v136850 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ca878]
2015-03-31 11:02:21.898933 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.938069 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407351 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.938091 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407351 cr=0x2bd66900)
2015-03-31 11:02:21.938096 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407351 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.938099 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407351 cr=0x2bd66900) #1000006b2a6
2015-03-31 11:02:21.938101 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a6 snap head
2015-03-31 11:02:21.938102 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.938103 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.938119 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407351 cr=0x2bd66900)
2015-03-31 11:02:21.938122 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938141 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.938154 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.938166 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.938177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938192 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.938208 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.938219 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.938230 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.938250 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.938261 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:21.938281 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_pin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68] now 1+0
2015-03-31 11:02:21.938291 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938318 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.938341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.938350 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.938360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.938369 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.938378 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.938394 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407351 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.938398 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407351 getattr Xs #1000006b2a6 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.938408 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.938411 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.938416 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:21.938418 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.938431 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407351 cr=0x2bd66900)
2015-03-31 11:02:21.938451 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.938493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.938503 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.938524 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.938535 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.938546 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47ed68]
2015-03-31 11:02:21.938556 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.938572 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.938583 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.938593 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) auth_unpin by 0x23dd1900 on [inode 1000006b2a6 [2,head] {#1000006b2a6 /test_small/small5/blarg10016} auth v178632 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47ed68] now 0+0
2015-03-31 11:02:21.938897 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407352 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.938915 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407352 cr=0x2bd65280)
2015-03-31 11:02:21.938918 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407352 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.938921 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407352 cr=0x2bd65280) #10000004e36
2015-03-31 11:02:21.938923 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e36 snap head
2015-03-31 11:02:21.938925 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.938926 7fbe462be700 10 mds.0.server ref is [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.938938 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407352 cr=0x2bd65280)
2015-03-31 11:02:21.938941 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938957 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.938967 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.938976 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.938982 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.938997 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.939012 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.939022 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.939033 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.939042 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.939051 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.939057 7fbe462be700 10 mds.0.cache.ino(10000004e36) auth_pin by 0x23dd1900 on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40] now 1+0
2015-03-31 11:02:21.939064 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.939079 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.939094 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.939104 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.939115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.939124 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.939134 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939141 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939164 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939183 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939195 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407352 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.939199 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407352 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.939210 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.939213 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.939218 7fbe462be700 10 mds.0.cache.ino(10000004e36) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:21.939220 7fbe462be700 10 mds.0.cache.ino(10000004e36) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.939233 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407352 cr=0x2bd65280)
2015-03-31 11:02:21.939252 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.939268 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.939283 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.939294 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.939304 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.939313 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.939333 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939339 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939345 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939350 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.939355 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.939370 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.939381 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.939390 7fbe462be700 10 mds.0.cache.ino(10000004e36) auth_unpin by 0x23dd1900 on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c9f40] now 0+0
2015-03-31 11:02:21.939704 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407353 lookup #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.939721 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407353 cr=0x2bd67d00)
2015-03-31 11:02:21.939724 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407353 lookup #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.939726 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407353 cr=0x2bd67d00) #1000006026a/blarg10017
2015-03-31 11:02:21.939728 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.939731 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10017 [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock) v=177616 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d840]
2015-03-31 11:02:21.939739 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.939741 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407353 lookup #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.939751 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.939763 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407353 cr=0x2bd67d00)
2015-03-31 11:02:21.940243 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407354 lookup #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.940263 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407354 cr=0x2bd64d80)
2015-03-31 11:02:21.940265 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407354 lookup #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.940268 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407354 cr=0x2bd64d80) #1000006026a/blarg10017
2015-03-31 11:02:21.940270 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.940272 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10017 [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock) v=177616 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d840]
2015-03-31 11:02:21.940281 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:21.940282 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407354 lookup #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.940293 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.940305 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407354 cr=0x2bd64d80)
2015-03-31 11:02:21.940789 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407355 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.940810 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407355 cr=0x9cc3c00)
2015-03-31 11:02:21.940813 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407355 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.940817 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407355 cr=0x9cc3c00) #10000004e36
2015-03-31 11:02:21.940819 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e36 snap head
2015-03-31 11:02:21.940820 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.940821 7fbe462be700 10 mds.0.server ref is [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.940833 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407355 cr=0x9cc3c00)
2015-03-31 11:02:21.940837 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.940855 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.940867 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.940877 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.940884 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.940899 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.940914 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.940924 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.940935 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:21.940944 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:21.940954 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.940960 7fbe462be700 10 mds.0.cache.ino(10000004e36) auth_pin by 0x23dd1900 on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40] now 1+0
2015-03-31 11:02:21.940968 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.940984 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941008 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941019 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941040 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.941048 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.941056 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941063 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941069 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941075 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941088 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407355 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.941093 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407355 getattr Xs #10000004e36 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.941104 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.941107 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.941111 7fbe462be700 10 mds.0.cache.ino(10000004e36) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:21.941114 7fbe462be700 10 mds.0.cache.ino(10000004e36) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.941127 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407355 cr=0x9cc3c00)
2015-03-31 11:02:21.941147 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941178 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941189 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941199 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.941219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:21.941228 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941236 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941242 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941248 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c9f40]
2015-03-31 11:02:21.941254 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.941269 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.941280 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:21.941289 7fbe462be700 10 mds.0.cache.ino(10000004e36) auth_unpin by 0x23dd1900 on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c9f40] now 0+0
2015-03-31 11:02:21.941591 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407356 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.941610 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407356 cr=0x9cc1180)
2015-03-31 11:02:21.941612 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407356 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.941615 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407356 cr=0x9cc1180) #1000006026a
2015-03-31 11:02:21.941617 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.941618 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.941619 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941635 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407356 cr=0x9cc1180)
2015-03-31 11:02:21.941638 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941653 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941664 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941674 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941688 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.941702 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941713 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.941724 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941733 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.941744 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941759 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941773 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941788 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941799 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941810 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941820 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941831 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31286} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941876 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407356 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.941881 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407356 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.941891 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.941894 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.941898 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31287
2015-03-31 11:02:21.941900 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31287 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.941913 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407356 cr=0x9cc1180)
2015-03-31 11:02:21.941932 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941948 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.941963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941974 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.941984 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.941995 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942016 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942026 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942037 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:21.942051 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:21.942072 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:21.942424 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407357 create #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.942444 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407357 cr=0x9cc2a80)
2015-03-31 11:02:21.942447 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407357 create #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.942449 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10017
2015-03-31 11:02:21.942451 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407357 cr=0x9cc2a80) #1000006026a/blarg10017
2015-03-31 11:02:21.942453 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10017
2015-03-31 11:02:21.942454 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:21.942456 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.942457 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178633 v=178625 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.942467 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178633 v=178625 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.942476 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10017 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178633 v=178625 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.942487 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407357 cr=0x9cc2a80)
2015-03-31 11:02:21.942492 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.942512 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.942524 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942535 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock) v=177616 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d840]
2015-03-31 11:02:21.942543 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.942558 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.942573 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.942583 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.942594 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=4+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942604 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.942614 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock) v=177616 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676d840]
2015-03-31 11:02:21.942619 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10017) auth_pin by 0x23dd1900 on [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock) v=177616 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840] now 1+0
2015-03-31 11:02:21.942626 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock) v=177616 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.942631 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177616 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.942649 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177616 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.942655 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177616 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.942660 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177616 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.942677 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10017) auth_pin by 0x676d998 on [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177616 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840] now 2+0
2015-03-31 11:02:21.942682 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd1900) [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) v=177616 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.942688 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.942703 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.942717 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.942731 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.942744 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.942754 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.942764 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.942773 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.942788 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942798 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942808 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942818 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942827 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942837 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942847 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942856 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942865 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942875 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942893 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a7 ([1000006b2a8~37b], 891 left)
2015-03-31 11:02:21.942896 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:21.942898 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a7 [2,head] #1000006b2a7 auth v1 s=0 n() (iversion lock) 0x3f43a460]
2015-03-31 11:02:21.942902 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178634
2015-03-31 11:02:21.942903 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10017)  pre_dirty [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) pv=178634 v=177616 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.942911 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f43a460]
2015-03-31 11:02:21.942918 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd1900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178634 v=178625 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:21.942927 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3b6fd20
2015-03-31 11:02:21.942928 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178635
2015-03-31 11:02:21.942929 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178635 v=178625 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.942936 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178635 v=178625 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.942943 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f43a460]
2015-03-31 11:02:21.942949 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.942950 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295204 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.942964 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295206
2015-03-31 11:02:21.942966 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295206 v=3295196 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.942969 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295206 (current v 3295196)
2015-03-31 11:02:21.942971 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178635 v=178625 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:21.942978 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:21.942980 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd1900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295206 v=3295197 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:21.942989 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3b6f170
2015-03-31 11:02:21.942991 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295207
2015-03-31 11:02:21.942992 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943003 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943014 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943024 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:21.943026 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.276393 < 1, stopping
2015-03-31 11:02:21.943030 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943040 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:21.943044 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295206 v=3295196 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:21.943050 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31287} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943064 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f43a460]
2015-03-31 11:02:21.943071 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:21.943073 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f43a460]
2015-03-31 11:02:21.943080 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.943082 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943090 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943097 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943103 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943110 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943117 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943123 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943129 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943134 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943141 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943147 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943154 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943160 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943166 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943172 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43a460]
2015-03-31 11:02:21.943182 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.943183 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:21.943185 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f43a460 tracedn 0x676d840
2015-03-31 11:02:21.943188 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd1900) [dentry #1/test_small/small5/blarg10017 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) pv=178634 v=177616 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676d840]
2015-03-31 11:02:21.943194 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407357 create #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.943203 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.943206 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31288
2015-03-31 11:02:21.943208 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31288 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.943214 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:21.943217 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:21.943220 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) including xattrs version 0
2015-03-31 11:02:21.943258 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943288 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943303 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943311 7fbe406af700  5 mds.0.log _submit_thread 5419527217~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:21.943318 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943343 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943355 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943366 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943377 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943388 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943400 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943422 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943433 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943443 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943695 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407358 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.943715 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407358 cr=0x9cc6180)
2015-03-31 11:02:21.943717 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407358 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.943721 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407358 cr=0x9cc6180) #1000006b2a7
2015-03-31 11:02:21.943723 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a7 snap head
2015-03-31 11:02:21.943724 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.943725 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f43a460]
2015-03-31 11:02:21.943739 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407358 cr=0x9cc6180)
2015-03-31 11:02:21.943742 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943758 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943769 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943780 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f43a460]
2015-03-31 11:02:21.943794 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943808 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.943834 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943845 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.943856 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943867 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.943878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f43a460]
2015-03-31 11:02:21.943888 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_pin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f43a460] now 1+0
2015-03-31 11:02:21.943899 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943915 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.943930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943942 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.943963 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943974 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.943984 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.943994 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.944010 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407358 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.944015 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407358 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.944026 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.944030 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.944034 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:21.944037 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.944051 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407358 cr=0x9cc6180)
2015-03-31 11:02:21.944071 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944099 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944123 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944134 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944145 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944155 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944176 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.944186 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.944196 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.944211 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.944222 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.944233 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_unpin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460] now 0+0
2015-03-31 11:02:21.944503 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407359 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.944521 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407359 cr=0x9cc6e00)
2015-03-31 11:02:21.944524 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407359 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.944527 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407359 cr=0x9cc6e00) #1000006b2a7
2015-03-31 11:02:21.944529 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a7 snap head
2015-03-31 11:02:21.944530 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.944531 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:21.944544 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407359 cr=0x9cc6e00)
2015-03-31 11:02:21.944547 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944563 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944574 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944585 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:21.944594 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944608 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.944623 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944633 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.944643 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944653 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.944664 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:21.944673 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_pin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460] now 1+0
2015-03-31 11:02:21.944683 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944698 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944713 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944723 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944734 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944744 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944765 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.944790 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.944805 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407359 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.944810 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407359 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.944820 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.944823 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.944826 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:21.944831 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.944843 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407359 cr=0x9cc6e00)
2015-03-31 11:02:21.944862 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944879 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.944902 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944924 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.944935 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944945 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.944955 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.944966 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.944976 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.944991 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.945001 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.945011 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_unpin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460] now 0+0
2015-03-31 11:02:21.947675 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e36 follows 0 op update
2015-03-31 11:02:21.947678 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947685 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.947687 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.947703 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.947704 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947709 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947717 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:21.947719 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947730 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947750 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947757 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:21.947758 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947765 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947772 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947777 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947786 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947792 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947777 7fbe406af700  5 mds.0.log _submit_thread 5419528857~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:21.947797 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947803 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.947811 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:21.987051 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407360 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.987073 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407360 cr=0x9cc2580)
2015-03-31 11:02:21.987078 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407360 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.987081 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407360 cr=0x9cc2580) #1000006b2a7
2015-03-31 11:02:21.987084 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a7 snap head
2015-03-31 11:02:21.987085 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:21.987086 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:21.987103 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407360 cr=0x9cc2580)
2015-03-31 11:02:21.987106 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.987125 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.987138 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.987150 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:21.987161 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.987176 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:21.987192 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.987203 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:21.987215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.987236 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:21.987247 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:21.987266 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_pin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460] now 1+0
2015-03-31 11:02:21.987276 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.987303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.987317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.987327 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.987337 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.987346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.987356 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.987365 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.987381 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407360 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.987385 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407360 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:21.987396 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:21.987399 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:21.987403 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:21.987405 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:21.987419 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407360 cr=0x9cc2580)
2015-03-31 11:02:21.987438 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.987455 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.987470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.987481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:21.987491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.987513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:21.987523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.987534 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:21.987544 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:21.987559 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:21.987570 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:21.987580 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_unpin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460] now 0+0
2015-03-31 11:02:21.988903 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e36 follows 0 op update
2015-03-31 11:02:21.988906 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988918 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:21.988920 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:21.988939 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:21.988940 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988946 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988955 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:21.988957 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988962 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988969 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988974 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:21.988975 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988981 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988988 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.988995 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.989001 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:21.989002 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:21.989003 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e36 [2,head] /test_small/small1/blarg10017 auth v136852 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9f40]
2015-03-31 11:02:21.989010 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.028061 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407361 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.028083 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407361 cr=0x9cc6b80)
2015-03-31 11:02:22.028087 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407361 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.028091 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407361 cr=0x9cc6b80) #1000006b2a7
2015-03-31 11:02:22.028093 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a7 snap head
2015-03-31 11:02:22.028095 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.028096 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:22.028113 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407361 cr=0x9cc6b80)
2015-03-31 11:02:22.028116 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028135 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.028148 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.028160 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:22.028171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028186 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.028202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.028213 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.028224 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.028245 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.028255 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:22.028275 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_pin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460] now 1+0
2015-03-31 11:02:22.028285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.028336 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.028346 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.028355 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.028365 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:22.028374 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:22.028390 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407361 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.028394 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407361 getattr Xs #1000006b2a7 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.028405 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.028409 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.028413 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.028416 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.028430 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407361 cr=0x9cc6b80)
2015-03-31 11:02:22.028450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.028493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.028504 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.028525 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.028536 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:22.028547 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43a460]
2015-03-31 11:02:22.028557 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.028572 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.028583 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.028593 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) auth_unpin by 0x2876a800 on [inode 1000006b2a7 [2,head] {#1000006b2a7 /test_small/small5/blarg10017} auth v178634 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43a460] now 0+0
2015-03-31 11:02:22.028893 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407362 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.028910 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407362 cr=0x60abe80)
2015-03-31 11:02:22.028912 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407362 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.028915 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407362 cr=0x60abe80) #10000004e33
2015-03-31 11:02:22.028917 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e33 snap head
2015-03-31 11:02:22.028918 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.028919 7fbe462be700 10 mds.0.server ref is [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.028930 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407362 cr=0x60abe80)
2015-03-31 11:02:22.028933 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028949 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.028960 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.028969 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.028976 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.028990 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.029004 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.029014 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.029025 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.029034 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.029043 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.029049 7fbe462be700 10 mds.0.cache.ino(10000004e33) auth_pin by 0x2876a800 on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608] now 1+0
2015-03-31 11:02:22.029056 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.029071 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.029085 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.029096 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.029107 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.029116 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.029126 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029133 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029150 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029156 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029182 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407362 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.029186 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407362 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.029196 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.029199 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.029203 7fbe462be700 10 mds.0.cache.ino(10000004e33) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.029205 7fbe462be700 10 mds.0.cache.ino(10000004e33) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.029218 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407362 cr=0x60abe80)
2015-03-31 11:02:22.029237 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.029253 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.029268 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.029278 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.029289 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.029298 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.029318 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029325 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029332 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029338 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.029344 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.029358 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.029369 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.029378 7fbe462be700 10 mds.0.cache.ino(10000004e33) auth_unpin by 0x2876a800 on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c9608] now 0+0
2015-03-31 11:02:22.029724 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407363 lookup #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.029746 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407363 cr=0x60a8000)
2015-03-31 11:02:22.029748 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407363 lookup #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.029751 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407363 cr=0x60a8000) #1000006026a/blarg10018
2015-03-31 11:02:22.029753 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.029756 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10018 [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock) v=177618 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676da20]
2015-03-31 11:02:22.029764 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.029766 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407363 lookup #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.029778 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.029811 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407363 cr=0x60a8000)
2015-03-31 11:02:22.030302 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407364 lookup #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.030323 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407364 cr=0x4a0a800)
2015-03-31 11:02:22.030325 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407364 lookup #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.030328 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407364 cr=0x4a0a800) #1000006026a/blarg10018
2015-03-31 11:02:22.030330 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.030333 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10018 [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock) v=177618 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676da20]
2015-03-31 11:02:22.030341 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.030343 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407364 lookup #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.030355 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.030367 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407364 cr=0x4a0a800)
2015-03-31 11:02:22.030845 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407365 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.030867 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407365 cr=0x26458280)
2015-03-31 11:02:22.030869 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407365 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.030872 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407365 cr=0x26458280) #10000004e33
2015-03-31 11:02:22.030874 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e33 snap head
2015-03-31 11:02:22.030876 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.030877 7fbe462be700 10 mds.0.server ref is [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.030889 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407365 cr=0x26458280)
2015-03-31 11:02:22.030892 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.030911 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.030923 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.030932 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.030939 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.030954 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.030969 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.030979 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.030990 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.030999 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.031009 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.031014 7fbe462be700 10 mds.0.cache.ino(10000004e33) auth_pin by 0x2876a800 on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608] now 1+0
2015-03-31 11:02:22.031022 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031037 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031052 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031063 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031086 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.031107 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.031115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031121 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031126 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031132 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031145 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407365 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.031150 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407365 getattr Xs #10000004e33 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.031161 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.031164 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.031168 7fbe462be700 10 mds.0.cache.ino(10000004e33) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.031171 7fbe462be700 10 mds.0.cache.ino(10000004e33) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.031185 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407365 cr=0x26458280)
2015-03-31 11:02:22.031204 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031235 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031246 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031277 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.031286 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.031296 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031303 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031310 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031317 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c9608]
2015-03-31 11:02:22.031322 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.031337 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.031348 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.031357 7fbe462be700 10 mds.0.cache.ino(10000004e33) auth_unpin by 0x2876a800 on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c9608] now 0+0
2015-03-31 11:02:22.031656 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407366 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.031673 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407366 cr=0x43d0c80)
2015-03-31 11:02:22.031675 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407366 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.031678 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407366 cr=0x43d0c80) #1000006026a
2015-03-31 11:02:22.031680 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.031681 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.031682 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.031697 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407366 cr=0x43d0c80)
2015-03-31 11:02:22.031700 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031715 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031726 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.031736 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031749 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.031763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031773 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.031788 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.031798 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.031809 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031823 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.031837 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031848 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.031859 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.031869 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.031880 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.031890 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31288} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.031920 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407366 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.031925 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407366 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.031946 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.031949 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.031953 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31289
2015-03-31 11:02:22.031955 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31289 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.031968 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407366 cr=0x43d0c80)
2015-03-31 11:02:22.031987 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032003 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032017 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032028 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032038 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032049 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032070 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032080 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032090 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.032104 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.032115 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.032464 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407367 create #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.032485 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407367 cr=0x8f0bc00)
2015-03-31 11:02:22.032487 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407367 create #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.032490 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10018
2015-03-31 11:02:22.032491 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407367 cr=0x8f0bc00) #1000006026a/blarg10018
2015-03-31 11:02:22.032493 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10018
2015-03-31 11:02:22.032495 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.032496 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.032498 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178635 v=178625 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.032508 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178635 v=178625 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.032516 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10018 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178635 v=178625 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.032527 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407367 cr=0x8f0bc00)
2015-03-31 11:02:22.032533 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032552 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032565 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032576 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock) v=177618 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676da20]
2015-03-31 11:02:22.032583 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032599 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.032614 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032625 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.032636 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032646 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.032657 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock) v=177618 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676da20]
2015-03-31 11:02:22.032662 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10018) auth_pin by 0x2876a800 on [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock) v=177618 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20] now 1+0
2015-03-31 11:02:22.032669 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock) v=177618 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.032674 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177618 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.032690 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177618 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.032695 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177618 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.032700 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177618 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.032704 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10018) auth_pin by 0x676db78 on [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177618 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20] now 2+0
2015-03-31 11:02:22.032722 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2876a800) [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) v=177618 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.032728 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032743 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032757 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032770 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.032788 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032798 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032808 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032818 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.032828 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032838 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032848 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032857 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032867 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032876 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032886 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032895 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032905 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032914 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.032934 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a8 ([1000006b2a9~37a], 890 left)
2015-03-31 11:02:22.032936 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.032938 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a8 [2,head] #1000006b2a8 auth v1 s=0 n() (iversion lock) 0x3f4c5b50]
2015-03-31 11:02:22.032942 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178636
2015-03-31 11:02:22.032943 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10018)  pre_dirty [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) pv=178636 v=177618 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.032951 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4c5b50]
2015-03-31 11:02:22.032958 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2876a800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178636 v=178625 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:22.032967 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3b6fdd0
2015-03-31 11:02:22.032968 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178637
2015-03-31 11:02:22.032970 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178625 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.032976 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178625 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.032981 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4c5b50]
2015-03-31 11:02:22.032987 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.032989 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295206 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033003 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295208
2015-03-31 11:02:22.033004 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295196 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.033008 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295208 (current v 3295196)
2015-03-31 11:02:22.033009 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178625 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=20+1584,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.033016 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.033017 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2876a800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295208 v=3295197 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:22.033026 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3b6caf0
2015-03-31 11:02:22.033028 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295209
2015-03-31 11:02:22.033029 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033040 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033051 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033061 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.033063 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.366432 < 1, stopping
2015-03-31 11:02:22.033067 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033078 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.033082 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295196 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.033088 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31289} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033101 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4c5b50]
2015-03-31 11:02:22.033108 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.033110 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033118 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.033120 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033127 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033134 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033139 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033146 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033153 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033160 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033166 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033172 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033179 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033185 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033192 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033199 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033205 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033212 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c5b50]
2015-03-31 11:02:22.033222 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.033223 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.033225 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4c5b50 tracedn 0x676da20
2015-03-31 11:02:22.033228 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2876a800) [dentry #1/test_small/small5/blarg10018 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) pv=178636 v=177618 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676da20]
2015-03-31 11:02:22.033234 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407367 create #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.033242 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.033245 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31290
2015-03-31 11:02:22.033247 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31290 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.033252 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.033255 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.033257 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) including xattrs version 0
2015-03-31 11:02:22.033292 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033322 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033338 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033346 7fbe406af700  5 mds.0.log _submit_thread 5419529716~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.033352 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033378 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033390 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033401 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033412 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033423 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033434 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033468 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033478 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033547 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407368 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.033568 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407368 cr=0x26904d80)
2015-03-31 11:02:22.033570 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407368 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.033574 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407368 cr=0x26904d80) #1000006026a
2015-03-31 11:02:22.033576 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.033577 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.033578 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033593 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407368 cr=0x26904d80)
2015-03-31 11:02:22.033596 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033612 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033623 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033633 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033647 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.033672 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033682 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.033693 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033703 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.033714 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033728 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033752 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033763 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033773 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033788 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033808 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033830 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31290} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033846 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407368 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.033851 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407368 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.033861 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.033864 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.033869 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31291
2015-03-31 11:02:22.033871 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31291 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.033884 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407368 cr=0x26904d80)
2015-03-31 11:02:22.033903 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033919 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.033933 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033943 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.033954 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033964 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033986 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.033995 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034006 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.034020 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.034030 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.034175 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407369 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.034193 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407369 cr=0x9831680)
2015-03-31 11:02:22.034195 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407369 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.034199 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407369 cr=0x9831680) #1000006b2a8
2015-03-31 11:02:22.034201 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a8 snap head
2015-03-31 11:02:22.034202 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.034203 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4c5b50]
2015-03-31 11:02:22.034217 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407369 cr=0x9831680)
2015-03-31 11:02:22.034220 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034237 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034248 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034269 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4c5b50]
2015-03-31 11:02:22.034279 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034293 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.034308 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034318 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.034329 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034339 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.034349 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4c5b50]
2015-03-31 11:02:22.034359 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_pin by 0x23dd3700 on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4c5b50] now 1+0
2015-03-31 11:02:22.034369 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034385 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034399 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034431 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034453 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034462 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.034471 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.034486 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407369 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.034490 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407369 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.034500 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.034504 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.034508 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.034511 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.034523 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407369 cr=0x9831680)
2015-03-31 11:02:22.034542 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034558 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034572 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034583 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034593 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034603 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034624 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.034635 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.034644 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.034660 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.034670 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.034692 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_unpin by 0x23dd3700 on [inode 1000006b2a8 [2,head] {#1000006b2a8 /test_small/small5/blarg10018} auth v178636 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c5b50] now 0+0
2015-03-31 11:02:22.034774 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407370 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.034798 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407370 cr=0x940af80)
2015-03-31 11:02:22.034800 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407370 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.034804 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407370 cr=0x940af80) #1000006026a
2015-03-31 11:02:22.034806 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.034807 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.034808 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034824 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407370 cr=0x940af80)
2015-03-31 11:02:22.034827 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034842 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034854 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034864 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034878 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.034892 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034912 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.034923 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.034933 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.034943 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034958 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53467 pv53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.034972 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034982 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.034993 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.035003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.035014 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.035034 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.035056 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:22.035066 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.035075 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0xb37cf20 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:22.035078 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.058547 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.058554 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.058563 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.058565 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) mark_dirty [inode 1000006b2a3 [2,head] /test_small/small5/blarg10013 auth v178625 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:22.058580 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10013)  mark_dirty [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178626 v=177608 ap=2+0 inode=0x3f3cb128 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0]
2015-03-31 11:02:22.058589 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178626 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 20=20+0) hs=21+1583,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178626
2015-03-31 11:02:22.058600 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) mark_dirty_parent
2015-03-31 11:02:22.058602 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295196 pv3295208 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 20=20+0) n(v1 rc2015-03-31 11:02:58.000000 21=20+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.058617 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295196 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.058621 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295198 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382323=382316+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295198
2015-03-31 11:02:22.058633 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178627 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 21=21+0) hs=21+1583,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178627
2015-03-31 11:02:22.058641 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295199 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382324=382317+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295199
2015-03-31 11:02:22.058650 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a3 [2,head] /test_small/small5/blarg10013 auth v178626 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3cb128]
2015-03-31 11:02:22.058660 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.058663 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27494 client_caps(grant ino 1000006b2a3 1851480 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:22.058685 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178626 ap=2+0 inode=0x3f3cb128 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0]
2015-03-31 11:02:22.058695 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407317 create #1000006026a/blarg10013 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:22.058708 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a3
2015-03-31 11:02:22.058712 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178626 ap=2+0 inode=0x3f3cb128 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0]
2015-03-31 11:02:22.058754 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178626 ap=2+0 inode=0x3f3cb128 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0]
2015-03-31 11:02:22.058761 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178626 ap=2+0 inode=0x3f3cb128 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0]
2015-03-31 11:02:22.058768 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10013) auth_unpin by 0x676d218 on [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178626 ap=1+0 inode=0x3f3cb128 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0] now 1+0
2015-03-31 11:02:22.058776 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178626 ap=1+0 inode=0x3f3cb128 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0]
2015-03-31 11:02:22.058789 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.058806 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295198 pv3295208 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 22=21+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.058829 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295198 pv3295208 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 22=21+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.058840 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295198 pv3295208 ap=8+1 f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 22=21+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.058851 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178626 ap=1+0 inode=0x3f3cb128 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d0c0]
2015-03-31 11:02:22.058868 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407317 cr=0x2645c380)
2015-03-31 11:02:22.058887 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.058905 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.058917 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a73c00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295199 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382324=382317+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:22.058928 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a73c00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178627 cv=170705/170705 ap=5+11+11 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 21=21+0) hs=21+1583,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 11
2015-03-31 11:02:22.058936 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295198 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 22=21+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.058948 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10013) auth_unpin by 0x29a73c00 on [dentry #1/test_small/small5/blarg10013 [2,head] auth (dn sync l=1) (dversion lock) v=178626 inode=0x3f3cb128 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676d0c0] now 0+0
2015-03-31 11:02:22.058972 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.058974 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.058979 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.058980 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) mark_dirty [inode 1000006b2a4 [2,head] /test_small/small5/blarg10014 auth v178627 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f40b070]
2015-03-31 11:02:22.058992 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10014)  mark_dirty [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178628 v=177610 ap=2+0 inode=0x3f40b070 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0]
2015-03-31 11:02:22.058999 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178628 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 21=21+0) hs=22+1582,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178628
2015-03-31 11:02:22.059008 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) mark_dirty_parent
2015-03-31 11:02:22.059010 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295198 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 21=21+0) n(v1 rc2015-03-31 11:02:58.000000 22=21+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059023 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295198 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.059027 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295200 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382324=382317+7)/n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382315=382308+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295200
2015-03-31 11:02:22.059037 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120408 pv120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:57.000000 b422190090565 382316=382308+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.059049 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120410 v=120408 ap=0+7 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:22.059052 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120411 v=120410 cv=119911/119911 dir_auth=0 ap=1+6+7 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:57.000000 b422190196760 382332=382323+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120410
2015-03-31 11:02:22.059062 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53467 pv53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.059079 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178629 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 22=22+0) hs=22+1582,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178629
2015-03-31 11:02:22.059087 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295201 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295201
2015-03-31 11:02:22.059209 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120411 v=120411 cv=119911/119911 dir_auth=0 ap=1+6+7 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:58.000000 b422190196760 382342=382333+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120411
2015-03-31 11:02:22.059220 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a4 [2,head] /test_small/small5/blarg10014 auth v178628 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f40b070]
2015-03-31 11:02:22.059316 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.059319 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27495 client_caps(grant ino 1000006b2a4 1851481 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:22.059337 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178628 ap=2+0 inode=0x3f40b070 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0]
2015-03-31 11:02:22.059357 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407327 create #1000006026a/blarg10014 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:22.059367 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a4
2015-03-31 11:02:22.059371 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178628 ap=2+0 inode=0x3f40b070 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0]
2015-03-31 11:02:22.059379 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178628 ap=2+0 inode=0x3f40b070 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0]
2015-03-31 11:02:22.059384 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178628 ap=2+0 inode=0x3f40b070 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0]
2015-03-31 11:02:22.059389 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10014) auth_unpin by 0x676d3f8 on [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178628 ap=1+0 inode=0x3f40b070 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0] now 1+0
2015-03-31 11:02:22.059395 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178628 ap=1+0 inode=0x3f40b070 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0]
2015-03-31 11:02:22.059400 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.059430 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.059445 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.059459 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.059471 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.059482 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295200 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 23=22+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059493 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295200 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 23=22+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059504 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295200 pv3295208 ap=7+1 f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 23=22+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059526 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178628 ap=1+0 inode=0x3f40b070 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d2a0]
2015-03-31 11:02:22.059542 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407327 cr=0x3b9b480)
2015-03-31 11:02:22.059550 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.059566 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.059577 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x29a73700 on [dir 1 / [2,head] auth v=120411 cv=119911/119911 dir_auth=0 ap=0+5+6 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:58.000000 b422190196760 382342=382333+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 6
2015-03-31 11:02:22.059588 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a73700 on [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295201 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:22.059596 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a73700 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178629 cv=170705/170705 ap=4+9+9 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 22=22+0) hs=22+1582,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 9
2015-03-31 11:02:22.059604 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295200 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 23=22+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.059617 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10014) auth_unpin by 0x29a73700 on [dentry #1/test_small/small5/blarg10014 [2,head] auth (dn sync l=1) (dversion lock) v=178628 inode=0x3f40b070 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676d2a0] now 0+0
2015-03-31 11:02:22.059680 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.059682 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.059688 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.059689 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) mark_dirty [inode 1000006b2a5 [2,head] /test_small/small5/blarg10015 auth v178629 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:22.059701 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10015)  mark_dirty [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178630 v=177612 ap=2+0 inode=0x3f47a3a8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480]
2015-03-31 11:02:22.059708 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178630 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 22=22+0) hs=23+1581,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178630
2015-03-31 11:02:22.059717 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) mark_dirty_parent
2015-03-31 11:02:22.059719 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295200 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 22=22+0) n(v1 rc2015-03-31 11:02:58.000000 23=22+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059732 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295200 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.059736 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295202 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295202
2015-03-31 11:02:22.059745 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178631 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 23=23+0) hs=23+1581,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178631
2015-03-31 11:02:22.059753 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295203 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382319+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295203
2015-03-31 11:02:22.059762 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a5 [2,head] /test_small/small5/blarg10015 auth v178630 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f47a3a8]
2015-03-31 11:02:22.059772 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.059774 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27496 client_caps(grant ino 1000006b2a5 1851482 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:58.000000) v4
2015-03-31 11:02:22.059797 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178630 ap=2+0 inode=0x3f47a3a8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480]
2015-03-31 11:02:22.059806 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407337 create #1000006026a/blarg10015 2015-03-31 11:02:58.000000) v2
2015-03-31 11:02:22.059817 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a5
2015-03-31 11:02:22.059819 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178630 ap=2+0 inode=0x3f47a3a8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480]
2015-03-31 11:02:22.059828 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178630 ap=2+0 inode=0x3f47a3a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480]
2015-03-31 11:02:22.059834 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178630 ap=2+0 inode=0x3f47a3a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480]
2015-03-31 11:02:22.059839 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10015) auth_unpin by 0x676d5d8 on [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178630 ap=1+0 inode=0x3f47a3a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480] now 1+0
2015-03-31 11:02:22.059846 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178630 ap=1+0 inode=0x3f47a3a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480]
2015-03-31 11:02:22.059851 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.059865 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295202 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 24=23+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059877 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295202 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 24=23+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059889 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295202 pv3295208 ap=6+1 f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 24=23+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.059900 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178630 ap=1+0 inode=0x3f47a3a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d480]
2015-03-31 11:02:22.059914 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407337 cr=0x23fb8a00)
2015-03-31 11:02:22.059922 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.059939 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.059951 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2876ad00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295203 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382319+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:22.059961 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2876ad00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178631 cv=170705/170705 ap=3+7+7 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 23=23+0) hs=23+1581,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 7
2015-03-31 11:02:22.059969 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295202 pv3295208 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 24=23+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.059982 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10015) auth_unpin by 0x2876ad00 on [dentry #1/test_small/small5/blarg10015 [2,head] auth (dn sync l=1) (dversion lock) v=178630 inode=0x3f47a3a8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676d480] now 0+0
2015-03-31 11:02:22.060077 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.060080 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.060085 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.060086 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) mark_dirty [inode 1000006b2a6 [2,head] /test_small/small5/blarg10016 auth v178631 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:22.060098 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10016)  mark_dirty [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178632 v=177614 ap=2+0 inode=0x3f47ed68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660]
2015-03-31 11:02:22.060104 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178632 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 23=23+0) hs=24+1580,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178632
2015-03-31 11:02:22.060113 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) mark_dirty_parent
2015-03-31 11:02:22.060115 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295202 pv3295208 ap=5+1 f(v0 m2015-03-31 11:02:58.000000 23=23+0) n(v1 rc2015-03-31 11:02:58.000000 24=23+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060127 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295202 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.060131 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295204 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382319+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295204
2015-03-31 11:02:22.060141 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178633 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 24=24+0) hs=24+1580,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178633
2015-03-31 11:02:22.060148 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295205 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382327=382320+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295205
2015-03-31 11:02:22.060157 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a6 [2,head] /test_small/small5/blarg10016 auth v178632 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f47ed68]
2015-03-31 11:02:22.060167 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.060169 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27497 client_caps(grant ino 1000006b2a6 1851483 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.060188 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178632 ap=2+0 inode=0x3f47ed68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660]
2015-03-31 11:02:22.060197 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407347 create #1000006026a/blarg10016 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.060207 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a6
2015-03-31 11:02:22.060211 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178632 ap=2+0 inode=0x3f47ed68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660]
2015-03-31 11:02:22.060219 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178632 ap=2+0 inode=0x3f47ed68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660]
2015-03-31 11:02:22.060225 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178632 ap=2+0 inode=0x3f47ed68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660]
2015-03-31 11:02:22.060230 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10016) auth_unpin by 0x676d7b8 on [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178632 ap=1+0 inode=0x3f47ed68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660] now 1+0
2015-03-31 11:02:22.060237 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178632 ap=1+0 inode=0x3f47ed68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660]
2015-03-31 11:02:22.060242 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.060266 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295204 pv3295208 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 25=24+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060289 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295204 pv3295208 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 25=24+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060300 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295204 pv3295208 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 25=24+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060311 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178632 ap=1+0 inode=0x3f47ed68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d660]
2015-03-31 11:02:22.060325 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407347 cr=0x940f800)
2015-03-31 11:02:22.060333 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.060349 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.060360 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x296a6e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295205 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382327=382320+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:22.060381 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x296a6e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178633 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 24=24+0) hs=24+1580,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:22.060399 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295204 pv3295208 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 25=24+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.060411 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10016) auth_unpin by 0x296a6e00 on [dentry #1/test_small/small5/blarg10016 [2,head] auth (dn sync l=1) (dversion lock) v=178632 inode=0x3f47ed68 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676d660] now 0+0
2015-03-31 11:02:22.060432 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.060434 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.060439 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.060440 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) mark_dirty [inode 1000006b2a7 [2,head] /test_small/small5/blarg10017 auth v178633 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43a460]
2015-03-31 11:02:22.060450 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10017)  mark_dirty [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178634 v=177616 ap=2+0 inode=0x3f43a460 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840]
2015-03-31 11:02:22.060457 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178634 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 24=24+0) hs=25+1579,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178634
2015-03-31 11:02:22.060466 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) mark_dirty_parent
2015-03-31 11:02:22.060468 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295204 pv3295208 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 24=24+0) n(v1 rc2015-03-31 11:02:59.000000 25=24+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060480 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295204 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.060484 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295206 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382327=382320+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295206
2015-03-31 11:02:22.060494 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178635 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 25=25+0) hs=25+1579,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178635
2015-03-31 11:02:22.060502 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295207 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382328=382321+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295207
2015-03-31 11:02:22.060511 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a7 [2,head] /test_small/small5/blarg10017 auth v178634 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f43a460]
2015-03-31 11:02:22.060521 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.060523 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27498 client_caps(grant ino 1000006b2a7 1851484 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.060541 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178634 ap=2+0 inode=0x3f43a460 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840]
2015-03-31 11:02:22.060549 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407357 create #1000006026a/blarg10017 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.060560 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a7
2015-03-31 11:02:22.060562 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178634 ap=2+0 inode=0x3f43a460 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840]
2015-03-31 11:02:22.060570 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178634 ap=2+0 inode=0x3f43a460 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840]
2015-03-31 11:02:22.060576 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178634 ap=2+0 inode=0x3f43a460 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840]
2015-03-31 11:02:22.060581 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10017) auth_unpin by 0x676d998 on [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178634 ap=1+0 inode=0x3f43a460 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840] now 1+0
2015-03-31 11:02:22.060587 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178634 ap=1+0 inode=0x3f43a460 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840]
2015-03-31 11:02:22.060593 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.060606 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295206 pv3295208 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 26=25+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060619 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295206 pv3295208 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 26=25+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060630 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295206 pv3295208 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 26=25+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060641 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178634 ap=1+0 inode=0x3f43a460 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676d840]
2015-03-31 11:02:22.060656 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407357 cr=0x9cc2a80)
2015-03-31 11:02:22.060663 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.060680 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.060691 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd1900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295207 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382328=382321+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:22.060701 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd1900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178635 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 25=25+0) hs=25+1579,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:22.060709 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295206 pv3295208 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 26=25+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.060721 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10017) auth_unpin by 0x23dd1900 on [dentry #1/test_small/small5/blarg10017 [2,head] auth (dn sync l=1) (dversion lock) v=178634 inode=0x3f43a460 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676d840] now 0+0
2015-03-31 11:02:22.060742 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.060744 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.060749 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.060750 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) mark_dirty [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178635 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.060761 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10018)  mark_dirty [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178636 v=177618 ap=2+0 inode=0x3f4c5b50 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20]
2015-03-31 11:02:22.060767 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178636 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 25=25+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178636
2015-03-31 11:02:22.060775 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) mark_dirty_parent
2015-03-31 11:02:22.060777 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295206 pv3295208 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 25=25+0) n(v1 rc2015-03-31 11:02:59.000000 26=25+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060793 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295208 v=3295206 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.060797 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295208 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382328=382321+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295208
2015-03-31 11:02:22.060807 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178637 v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178637
2015-03-31 11:02:22.060815 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295209 v=3295209 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295209
2015-03-31 11:02:22.060824 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.060834 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.060837 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27499 client_caps(grant ino 1000006b2a8 1851485 seq 3 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.060855 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178636 ap=2+0 inode=0x3f4c5b50 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20]
2015-03-31 11:02:22.060863 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407367 create #1000006026a/blarg10018 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.060874 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a8
2015-03-31 11:02:22.060876 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178636 ap=2+0 inode=0x3f4c5b50 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20]
2015-03-31 11:02:22.060883 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178636 ap=2+0 inode=0x3f4c5b50 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20]
2015-03-31 11:02:22.060889 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178636 ap=2+0 inode=0x3f4c5b50 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20]
2015-03-31 11:02:22.060894 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10018) auth_unpin by 0x676db78 on [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178636 ap=1+0 inode=0x3f4c5b50 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20] now 1+0
2015-03-31 11:02:22.060900 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178636 ap=1+0 inode=0x3f4c5b50 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20]
2015-03-31 11:02:22.060905 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.060920 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.060931 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060943 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060955 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060966 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:22.060969 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.060979 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.060990 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:22.060991 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407370 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.060995 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407370 cr=0x940af80) #1000006026a
2015-03-31 11:02:22.060997 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.060999 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.061000 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061011 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407370 cr=0x940af80)
2015-03-31 11:02:22.061014 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.061030 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.061040 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061050 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.061064 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.061074 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061084 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.061098 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.061109 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061120 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061130 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061151 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061171 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061181 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061191 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061201 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061211 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31291} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061229 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407370 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.061233 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407370 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.061244 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.061247 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.061251 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31292
2015-03-31 11:02:22.061253 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31292 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.061267 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407370 cr=0x940af80)
2015-03-31 11:02:22.061287 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.061312 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.061326 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.061336 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.061346 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061356 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061378 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061388 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061398 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061408 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061419 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061429 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061438 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061447 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061457 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.061482 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.061492 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.061519 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061531 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061542 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061553 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178636 ap=1+0 inode=0x3f4c5b50 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676da20]
2015-03-31 11:02:22.061561 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061583 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407367 cr=0x8f0bc00)
2015-03-31 11:02:22.061590 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.061606 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.061617 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2876a800 on [dir 10000000000 /test_small/ [2,head] auth v=3295209 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:22.061637 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2876a800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178637 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:22.061645 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.061656 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10018) auth_unpin by 0x2876a800 on [dentry #1/test_small/small5/blarg10018 [2,head] auth (dn sync l=1) (dversion lock) v=178636 inode=0x3f4c5b50 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676da20] now 0+0
2015-03-31 11:02:22.061705 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407371 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.061737 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407371 cr=0xa252080)
2015-03-31 11:02:22.061740 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407371 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.061744 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407371 cr=0xa252080) #1000006b2a8
2015-03-31 11:02:22.061746 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a8 snap head
2015-03-31 11:02:22.061747 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.061748 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.061766 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407371 cr=0xa252080)
2015-03-31 11:02:22.061769 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.061793 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.061805 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.061816 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.061826 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.061841 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.061857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.061867 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.061878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.061888 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.061900 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.061909 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_pin by 0x242ca800 on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50] now 1+0
2015-03-31 11:02:22.061919 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.061935 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.061961 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.061971 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.061982 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.061992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.062012 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.062039 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407371 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.062043 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407371 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.062066 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.062070 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.062074 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.062076 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.062091 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407371 cr=0xa252080)
2015-03-31 11:02:22.062112 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.062129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.062143 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.062154 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.062164 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062194 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.062205 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.062214 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.062229 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.062240 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.062250 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_unpin by 0x242ca800 on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50] now 0+0
2015-03-31 11:02:22.062301 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407372 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.062320 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407372 cr=0xa254880)
2015-03-31 11:02:22.062322 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407372 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.062326 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407372 cr=0xa254880) #1000006026a
2015-03-31 11:02:22.062328 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.062329 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.062330 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.062343 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407372 cr=0xa254880)
2015-03-31 11:02:22.062345 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.062360 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.062370 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.062380 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.062394 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.062409 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.062428 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.062438 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.062446 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.062467 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.062480 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.062494 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.062504 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.062514 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062523 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062533 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062552 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31292} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062579 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407372 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.062583 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407372 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.062593 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.062597 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.062601 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31293
2015-03-31 11:02:22.062603 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31293 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.062615 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407372 cr=0xa254880)
2015-03-31 11:02:22.062634 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.062649 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.062663 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.062673 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.062684 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062694 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062713 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062722 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.062732 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.062746 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.062756 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.103070 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407373 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.103092 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407373 cr=0x26d3b700)
2015-03-31 11:02:22.103097 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407373 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.103100 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407373 cr=0x26d3b700) #1000006026a
2015-03-31 11:02:22.103103 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.103105 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.103106 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.103123 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407373 cr=0x26d3b700)
2015-03-31 11:02:22.103126 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.103143 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.103154 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.103165 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.103180 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.103195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.103205 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.103216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.103226 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.103238 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.103253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.103267 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.103277 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.103288 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103309 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103319 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31293} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103348 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407373 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.103353 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407373 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.103375 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.103378 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.103382 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31294
2015-03-31 11:02:22.103384 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31294 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.103397 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407373 cr=0x26d3b700)
2015-03-31 11:02:22.103417 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.103433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.103447 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.103458 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.103468 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103478 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103499 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103519 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.103533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.103544 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.103584 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e33 follows 0 op update
2015-03-31 11:02:22.103587 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103595 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.103597 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.103612 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.103613 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103619 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103627 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.103629 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103640 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103660 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103667 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.103668 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103676 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103682 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103685 7fbe406af700  5 mds.0.log _submit_thread 5419531356~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.103688 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103694 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103700 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103706 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103714 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.103734 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.103747 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407374 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.103775 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407374 cr=0x26d3b200)
2015-03-31 11:02:22.103777 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407374 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.103781 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407374 cr=0x26d3b200) #1000006b2a8
2015-03-31 11:02:22.103788 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a8 snap head
2015-03-31 11:02:22.103790 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.103791 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.103803 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407374 cr=0x26d3b200)
2015-03-31 11:02:22.103806 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.103821 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.103831 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.103840 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.103849 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.103863 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.103877 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.103886 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.103896 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.103904 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.103914 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.103923 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_pin by 0x242ca800 on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50] now 1+0
2015-03-31 11:02:22.103932 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.103947 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.103960 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.103970 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.103980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103989 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.103999 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.104009 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.104024 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407374 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.104028 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407374 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.104039 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.104042 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.104047 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.104049 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.104075 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407374 cr=0x26d3b200)
2015-03-31 11:02:22.104083 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.104109 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.104124 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.104134 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.104144 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.104154 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.104174 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.104184 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.104194 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.104208 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.104219 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.104229 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_unpin by 0x242ca800 on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50] now 0+0
2015-03-31 11:02:22.104905 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407375 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.104926 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407375 cr=0x51dfd00)
2015-03-31 11:02:22.104929 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407375 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.104933 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407375 cr=0x51dfd00) #1000006026a
2015-03-31 11:02:22.104935 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.104936 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.104937 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.104954 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407375 cr=0x51dfd00)
2015-03-31 11:02:22.104957 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.104974 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.104985 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.104995 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.105009 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.105024 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.105033 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.105045 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.105054 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.105065 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105080 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105094 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105105 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105125 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105136 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105147 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31294} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105185 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407375 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.105189 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407375 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.105200 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.105203 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.105207 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31295
2015-03-31 11:02:22.105210 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31295 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.105225 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407375 cr=0x51dfd00)
2015-03-31 11:02:22.105244 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105261 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105285 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105295 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105316 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105326 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105336 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105346 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.105361 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.105383 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.105463 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407376 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.105481 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407376 cr=0xb264600)
2015-03-31 11:02:22.105484 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407376 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.105487 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407376 cr=0xb264600) #1000006026a
2015-03-31 11:02:22.105489 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.105490 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.105492 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.105506 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407376 cr=0xb264600)
2015-03-31 11:02:22.105508 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.105523 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.105534 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.105544 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.105558 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.105573 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.105583 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.105604 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.105614 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.105624 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105639 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105653 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105663 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105673 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105683 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105694 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105704 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31295} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105742 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407376 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.105746 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407376 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.105757 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.105759 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.105763 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31296
2015-03-31 11:02:22.105765 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31296 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.105778 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407376 cr=0xb264600)
2015-03-31 11:02:22.105803 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105819 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.105833 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105843 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.105853 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105874 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105884 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105904 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.105914 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.105929 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.105940 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.105995 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e33 follows 0 op update
2015-03-31 11:02:22.105998 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106007 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.106009 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.106025 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.106026 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106033 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106042 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.106044 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106049 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106057 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106062 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.106064 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106072 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106079 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106084 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106089 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.106091 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.106092 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e33 [2,head] /test_small/small1/blarg10018 auth v136854 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c9608]
2015-03-31 11:02:22.106099 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.106113 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407377 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.106131 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407377 cr=0x6fc8000)
2015-03-31 11:02:22.106133 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407377 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.106136 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407377 cr=0x6fc8000) #1000006b2a8
2015-03-31 11:02:22.106138 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a8 snap head
2015-03-31 11:02:22.106139 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.106140 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.106163 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407377 cr=0x6fc8000)
2015-03-31 11:02:22.106166 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.106181 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.106191 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.106201 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.106210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.106224 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.106239 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.106248 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.106278 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.106299 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.106308 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50]
2015-03-31 11:02:22.106317 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_pin by 0x242ca800 on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50] now 1+0
2015-03-31 11:02:22.106326 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.106339 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.106352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.106361 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.106371 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.106380 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.106389 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.106398 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.106411 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407377 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.106415 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407377 getattr Xs #1000006b2a8 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.106425 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.106428 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.106433 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:22.106435 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.106448 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407377 cr=0x6fc8000)
2015-03-31 11:02:22.106468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.106483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.106497 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.106508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.106518 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.106528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.106549 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.106559 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4c5b50]
2015-03-31 11:02:22.106568 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.106583 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.106605 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.106615 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) auth_unpin by 0x242ca800 on [inode 1000006b2a8 [2,head] /test_small/small5/blarg10018 auth v178636 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c5b50] now 0+0
2015-03-31 11:02:22.146071 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407378 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146093 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407378 cr=0x37d4b00)
2015-03-31 11:02:22.146098 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407378 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146101 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407378 cr=0x37d4b00) #10000004e3f
2015-03-31 11:02:22.146104 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3f snap head
2015-03-31 11:02:22.146105 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.146106 7fbe462be700 10 mds.0.server ref is [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.146121 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407378 cr=0x37d4b00)
2015-03-31 11:02:22.146125 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.146143 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.146154 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.146164 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.146171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.146186 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.146201 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.146212 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.146223 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.146232 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.146241 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.146247 7fbe462be700 10 mds.0.cache.ino(10000004e3f) auth_pin by 0x242ca800 on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0] now 1+0
2015-03-31 11:02:22.146255 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.146296 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.146322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.146342 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.146351 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146357 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146363 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146369 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146383 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407378 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146387 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407378 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146398 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.146402 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.146406 7fbe462be700 10 mds.0.cache.ino(10000004e3f) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.146408 7fbe462be700 10 mds.0.cache.ino(10000004e3f) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.146422 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407378 cr=0x37d4b00)
2015-03-31 11:02:22.146442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146458 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146472 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.146483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.146494 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.146503 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.146523 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146531 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146538 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146544 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.146552 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.146567 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.146577 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.146586 7fbe462be700 10 mds.0.cache.ino(10000004e3f) auth_unpin by 0x242ca800 on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c8cd0] now 0+0
2015-03-31 11:02:22.146622 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407379 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146641 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407379 cr=0x25f4fa80)
2015-03-31 11:02:22.146643 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407379 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146646 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407379 cr=0x25f4fa80) #1000006026a
2015-03-31 11:02:22.146648 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.146649 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.146651 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.146664 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407379 cr=0x25f4fa80)
2015-03-31 11:02:22.146667 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.146681 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.146691 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.146701 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.146714 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.146728 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.146738 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.146759 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.146768 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.146778 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146809 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146833 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.146843 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.146853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.146863 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.146873 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.146883 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31296} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.146912 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407379 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146917 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407379 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.146928 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.146932 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.146935 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31297
2015-03-31 11:02:22.146937 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31297 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.146952 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407379 cr=0x25f4fa80)
2015-03-31 11:02:22.146960 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146976 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.146991 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.147002 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.147023 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.147033 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.147044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.147054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.147064 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.147079 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.147090 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.147127 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407380 lookup #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.147144 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407380 cr=0xaeea080)
2015-03-31 11:02:22.147147 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407380 lookup #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.147150 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407380 cr=0xaeea080) #1000006026a/blarg10019
2015-03-31 11:02:22.147152 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.147155 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10019 [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock) v=177620 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dc00]
2015-03-31 11:02:22.147173 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.147175 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407380 lookup #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.147184 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.147194 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407380 cr=0xaeea080)
2015-03-31 11:02:22.147615 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407381 lookup #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.147636 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407381 cr=0xaeedc80)
2015-03-31 11:02:22.147638 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407381 lookup #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.147641 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407381 cr=0xaeedc80) #1000006026a/blarg10019
2015-03-31 11:02:22.147643 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.147646 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10019 [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock) v=177620 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dc00]
2015-03-31 11:02:22.147654 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.147656 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407381 lookup #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.147669 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.147681 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407381 cr=0xaeedc80)
2015-03-31 11:02:22.148158 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407382 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.148180 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407382 cr=0x45a2300)
2015-03-31 11:02:22.148184 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407382 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.148188 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407382 cr=0x45a2300) #10000004e3f
2015-03-31 11:02:22.148190 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3f snap head
2015-03-31 11:02:22.148191 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.148192 7fbe462be700 10 mds.0.server ref is [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.148204 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407382 cr=0x45a2300)
2015-03-31 11:02:22.148207 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.148224 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.148236 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.148245 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.148252 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.148267 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.148281 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.148291 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.148302 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.148311 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.148320 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.148325 7fbe462be700 10 mds.0.cache.ino(10000004e3f) auth_pin by 0x242ca800 on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0] now 1+0
2015-03-31 11:02:22.148333 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.148348 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.148363 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.148384 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.148405 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.148414 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.148422 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148429 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148435 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148440 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148453 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407382 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.148457 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407382 getattr Xs #10000004e3f 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.148468 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.148471 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.148476 7fbe462be700 10 mds.0.cache.ino(10000004e3f) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.148478 7fbe462be700 10 mds.0.cache.ino(10000004e3f) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.148492 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407382 cr=0x45a2300)
2015-03-31 11:02:22.148511 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.148527 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.148542 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.148553 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.148563 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.148583 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.148593 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148599 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148605 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148612 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c8cd0]
2015-03-31 11:02:22.148619 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.148633 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.148655 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.148665 7fbe462be700 10 mds.0.cache.ino(10000004e3f) auth_unpin by 0x242ca800 on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c8cd0] now 0+0
2015-03-31 11:02:22.148728 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407383 readdir #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.148746 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407383 cr=0xb262800)
2015-03-31 11:02:22.148748 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407383 readdir #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.148751 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407383 cr=0xb262800) #1000006026a
2015-03-31 11:02:22.148753 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.148754 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.148755 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.148770 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407383 cr=0xb262800)
2015-03-31 11:02:22.148773 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.148793 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.148803 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.148813 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.148827 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.148842 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.148852 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.148873 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.148882 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.148893 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.148907 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.148921 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.148931 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.148942 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.148951 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.148962 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.148982 7fbe462be700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149004 7fbe462be700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149013 7fbe462be700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (idft sync r=1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31297} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149027 7fbe462be700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:22.149029 7fbe462be700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178637 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.149037 7fbe462be700 10 mds.0.server snapid head
2015-03-31 11:02:22.149042 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.149045 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149048 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.149050 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149053 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.149055 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149058 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.149060 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149063 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.149064 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149067 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.149069 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149071 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.149073 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149076 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.149077 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149080 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.149082 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149085 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.149087 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149089 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.149091 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149094 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.149095 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149098 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.149100 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149102 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.149104 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149106 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.149108 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149111 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.149113 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149115 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.149117 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149119 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.149121 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149124 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.149125 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149128 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.149129 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149132 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.149134 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149136 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.149138 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149141 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.149142 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149145 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.149146 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149149 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.149150 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149153 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.149154 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149202 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407383 readdir #1000006026a 2015-03-31 11:02:59.000000) v2 readdir num=26 bytes=7102 end=1 complete=1
2015-03-31 11:02:22.149208 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407383 readdir #1000006026a 2015-03-31 11:02:59.000000) v2 readdir num=26 end=1 complete=1
2015-03-31 11:02:22.149212 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407383 readdir #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.149222 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.149225 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.149229 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31298
2015-03-31 11:02:22.149231 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31298 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149244 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407383 cr=0xb262800)
2015-03-31 11:02:22.149263 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.149280 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.149294 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.149306 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.149316 7fbe462be700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149327 7fbe462be700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149349 7fbe462be700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149359 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149371 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149380 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149391 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.149405 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.149427 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.149507 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407384 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.149526 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407384 cr=0x9d48000)
2015-03-31 11:02:22.149528 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407384 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.149531 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407384 cr=0x9d48000) #1000006026a
2015-03-31 11:02:22.149533 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.149535 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.149536 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.149548 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407384 cr=0x9d48000)
2015-03-31 11:02:22.149551 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.149566 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.149576 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.149585 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.149608 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.149633 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.149642 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.149653 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.149662 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.149672 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.149686 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.149700 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.149711 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.149721 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149731 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149741 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149751 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31298} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149791 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407384 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.149794 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407384 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.149804 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.149807 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.149811 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31299
2015-03-31 11:02:22.149813 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31299 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.149825 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407384 cr=0x9d48000)
2015-03-31 11:02:22.149844 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.149860 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.149874 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.149885 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.149895 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31299} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149905 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31299} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149925 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31299} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149935 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31299} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.149956 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.149971 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.149983 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31299} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.190054 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407385 create #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.190076 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407385 cr=0x968a300)
2015-03-31 11:02:22.190081 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190099 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:22.190100 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190112 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.190113 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190125 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190136 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190146 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190155 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.190157 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407385 create #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.190160 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10019
2015-03-31 11:02:22.190161 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407385 cr=0x968a300) #1000006026a/blarg10019
2015-03-31 11:02:22.190163 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10019
2015-03-31 11:02:22.190165 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.190166 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.190167 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178637 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.190175 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178637 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.190182 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10019 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178637 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.190191 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407385 cr=0x968a300)
2015-03-31 11:02:22.190197 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.190213 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.190224 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190234 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock) v=177620 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.190255 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.190280 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.190299 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.190322 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.190330 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.190340 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock) v=177620 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190344 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10019) auth_pin by 0x242ca800 on [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock) v=177620 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00] now 1+0
2015-03-31 11:02:22.190350 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock) v=177620 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190355 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177620 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190360 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177620 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190365 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177620 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190370 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177620 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190375 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10019) auth_pin by 0x676dd58 on [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177620 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00] now 2+0
2015-03-31 11:02:22.190381 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242ca800) [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) v=177620 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190387 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.190401 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.190415 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.190428 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.190440 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.190450 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.190460 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.190469 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.190478 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190487 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190496 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190505 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190515 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190525 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190534 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190544 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190554 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190563 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190573 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190590 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2a9 ([1000006b2aa~379], 889 left)
2015-03-31 11:02:22.190593 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.190594 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2a9 [2,head] #1000006b2a9 auth v1 s=0 n() (iversion lock) 0x3f479138]
2015-03-31 11:02:22.190599 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178638
2015-03-31 11:02:22.190600 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10019)  pre_dirty [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) pv=178638 v=177620 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190609 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f479138]
2015-03-31 11:02:22.190616 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242ca800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:22.190625 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x69894a0
2015-03-31 11:02:22.190627 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178639
2015-03-31 11:02:22.190628 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178639 v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.190635 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178639 v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.190641 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f479138]
2015-03-31 11:02:22.190647 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.190649 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190663 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295210
2015-03-31 11:02:22.190664 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295210 v=3295208 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.190668 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295210 (current v 3295208)
2015-03-31 11:02:22.190669 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178639 v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.190677 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.190679 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242ca800 on [dir 10000000000 /test_small/ [2,head] auth v=3295209 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:22.190688 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x69896b0
2015-03-31 11:02:22.190689 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295211
2015-03-31 11:02:22.190690 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.190701 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.190712 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190723 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.190724 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.52409 < 1, stopping
2015-03-31 11:02:22.190729 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.190739 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.190743 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295210 v=3295208 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.190747 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31299} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.190760 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f479138]
2015-03-31 11:02:22.190767 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.190770 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f479138]
2015-03-31 11:02:22.190777 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.190779 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190792 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190799 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190806 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190812 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190818 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190825 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190831 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190838 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190844 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190851 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190857 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190864 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190870 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190876 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f479138]
2015-03-31 11:02:22.190886 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.190887 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.190889 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f479138 tracedn 0x676dc00
2015-03-31 11:02:22.190892 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242ca800) [dentry #1/test_small/small5/blarg10019 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) pv=178638 v=177620 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dc00]
2015-03-31 11:02:22.190899 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407385 create #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.190907 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.190910 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31300
2015-03-31 11:02:22.190912 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31300 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.190918 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.190921 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.190923 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) including xattrs version 0
2015-03-31 11:02:22.190961 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.190989 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191004 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191011 7fbe406af700  5 mds.0.log _submit_thread 5419532215~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.191018 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191064 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191074 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191084 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191096 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191108 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191118 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191129 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191139 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191377 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407386 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.191397 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407386 cr=0x26900500)
2015-03-31 11:02:22.191399 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407386 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.191402 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407386 cr=0x26900500) #1000006b2a9
2015-03-31 11:02:22.191405 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a9 snap head
2015-03-31 11:02:22.191406 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.191407 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f479138]
2015-03-31 11:02:22.191420 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407386 cr=0x26900500)
2015-03-31 11:02:22.191423 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191438 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191449 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191460 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f479138]
2015-03-31 11:02:22.191469 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191483 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.191497 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191506 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.191517 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191527 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.191537 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f479138]
2015-03-31 11:02:22.191546 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_pin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f479138] now 1+0
2015-03-31 11:02:22.191557 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191572 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191587 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191598 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191608 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191629 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191651 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.191660 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.191675 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407386 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.191679 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407386 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.191690 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.191693 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.191697 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.191700 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.191713 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407386 cr=0x26900500)
2015-03-31 11:02:22.191732 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191747 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.191761 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191772 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.191786 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191807 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.191818 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.191828 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.191838 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.191853 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.191863 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.191874 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_unpin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138] now 0+0
2015-03-31 11:02:22.192165 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407387 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.192183 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407387 cr=0x9830000)
2015-03-31 11:02:22.192186 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407387 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.192189 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407387 cr=0x9830000) #1000006b2a9
2015-03-31 11:02:22.192191 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a9 snap head
2015-03-31 11:02:22.192192 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.192193 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.192206 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407387 cr=0x9830000)
2015-03-31 11:02:22.192209 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.192224 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.192235 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.192246 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.192255 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.192269 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.192283 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.192292 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.192303 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.192314 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.192325 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.192334 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_pin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138] now 1+0
2015-03-31 11:02:22.192344 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.192359 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.192382 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.192393 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.192404 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.192425 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.192435 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.192456 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.192471 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407387 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.192476 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407387 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.192486 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.192488 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.192493 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.192495 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.192508 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407387 cr=0x9830000)
2015-03-31 11:02:22.192527 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.192542 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.192556 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.192567 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.192577 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.192587 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.192608 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.192619 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.192628 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.192643 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.192654 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.192664 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_unpin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138] now 0+0
2015-03-31 11:02:22.195818 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3f follows 0 op update
2015-03-31 11:02:22.195821 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195832 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.195834 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.195852 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.195853 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195860 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195868 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.195870 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195881 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195901 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195908 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.195909 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195918 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195924 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195925 7fbe406af700  5 mds.0.log _submit_thread 5419533855~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.195929 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195935 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195941 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195946 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195953 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.195962 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.235047 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407388 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.235069 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407388 cr=0x25f4df00)
2015-03-31 11:02:22.235074 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407388 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.235078 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407388 cr=0x25f4df00) #1000006b2a9
2015-03-31 11:02:22.235080 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a9 snap head
2015-03-31 11:02:22.235081 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.235082 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.235099 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407388 cr=0x25f4df00)
2015-03-31 11:02:22.235102 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.235121 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.235133 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.235146 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.235156 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.235173 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.235187 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.235198 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.235209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.235219 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.235230 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.235240 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_pin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138] now 1+0
2015-03-31 11:02:22.235251 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.235267 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.235282 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.235302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.235313 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.235324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.235334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.235344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.235361 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407388 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.235366 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407388 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.235378 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.235382 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.235387 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.235389 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.235415 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407388 cr=0x25f4df00)
2015-03-31 11:02:22.235435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.235451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.235466 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.235477 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.235487 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.235508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.235529 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.235539 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.235549 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.235564 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.235575 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.235586 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_unpin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138] now 0+0
2015-03-31 11:02:22.236863 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3f follows 0 op update
2015-03-31 11:02:22.236866 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236878 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.236880 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.236899 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.236900 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236907 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236915 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.236917 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236923 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236931 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236936 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.236937 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236945 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236952 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236958 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236964 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.236966 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.236967 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e3f [2,head] /test_small/small1/blarg10019 auth v136856 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c8cd0]
2015-03-31 11:02:22.236974 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.276057 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407389 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.276076 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407389 cr=0x237c1b80)
2015-03-31 11:02:22.276078 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407389 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.276082 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407389 cr=0x237c1b80) #1000006b2a9
2015-03-31 11:02:22.276084 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2a9 snap head
2015-03-31 11:02:22.276085 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.276086 7fbe462be700 10 mds.0.server ref is [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.276104 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407389 cr=0x237c1b80)
2015-03-31 11:02:22.276107 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.276125 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.276137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.276149 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.276160 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.276175 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.276190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.276201 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.276212 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.276223 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.276244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.276254 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_pin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138] now 1+0
2015-03-31 11:02:22.276265 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.276290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.276315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.276325 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.276334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.276344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.276354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.276363 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.276378 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407389 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.276383 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407389 getattr Xs #1000006b2a9 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.276394 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.276397 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.276401 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.276404 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.276417 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407389 cr=0x237c1b80)
2015-03-31 11:02:22.276437 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.276453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.276467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.276478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.276488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.276509 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.276520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.276531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f479138]
2015-03-31 11:02:22.276541 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.276556 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.276567 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.276577 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) auth_unpin by 0x2a623200 on [inode 1000006b2a9 [2,head] {#1000006b2a9 /test_small/small5/blarg10019} auth v178638 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f479138] now 0+0
2015-03-31 11:02:22.276931 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407390 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.276952 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407390 cr=0x6fc9b80)
2015-03-31 11:02:22.276955 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407390 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.276959 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407390 cr=0x6fc9b80) #100000003ee
2015-03-31 11:02:22.276960 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003ee snap head
2015-03-31 11:02:22.276962 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.276963 7fbe462be700 10 mds.0.server ref is [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.276976 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407390 cr=0x6fc9b80)
2015-03-31 11:02:22.276979 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.276996 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.277008 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.277017 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.277024 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.277039 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.277053 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.277063 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.277074 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.277083 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.277092 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.277098 7fbe462be700 10 mds.0.cache.ino(100000003ee) auth_pin by 0x2a623200 on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30] now 1+0
2015-03-31 11:02:22.277105 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.277120 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.277135 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.277157 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.277166 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.277174 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.277183 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277188 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277194 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277199 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277213 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407390 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.277217 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407390 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.277228 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.277231 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.277236 7fbe462be700 10 mds.0.cache.ino(100000003ee) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.277238 7fbe462be700 10 mds.0.cache.ino(100000003ee) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.277251 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407390 cr=0x6fc9b80)
2015-03-31 11:02:22.277271 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.277287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.277302 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.277312 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.277323 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.277331 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.277351 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277358 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277365 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277371 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.277377 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.277391 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.277402 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.277411 7fbe462be700 10 mds.0.cache.ino(100000003ee) auth_unpin by 0x2a623200 on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c1e30] now 0+0
2015-03-31 11:02:22.277793 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407391 lookup #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.277812 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407391 cr=0x49d4880)
2015-03-31 11:02:22.277815 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407391 lookup #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.277818 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407391 cr=0x49d4880) #1000006026a/blarg1002
2015-03-31 11:02:22.277819 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.277822 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1002 [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock) v=177622 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dde0]
2015-03-31 11:02:22.277831 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.277833 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407391 lookup #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.277845 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.277858 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407391 cr=0x49d4880)
2015-03-31 11:02:22.278351 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407392 lookup #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.278371 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407392 cr=0x49d1400)
2015-03-31 11:02:22.278374 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407392 lookup #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.278377 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407392 cr=0x49d1400) #1000006026a/blarg1002
2015-03-31 11:02:22.278379 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.278381 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1002 [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock) v=177622 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dde0]
2015-03-31 11:02:22.278390 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.278391 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407392 lookup #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.278403 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.278417 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407392 cr=0x49d1400)
2015-03-31 11:02:22.278896 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407393 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.278918 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407393 cr=0x49d2800)
2015-03-31 11:02:22.278921 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407393 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.278924 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407393 cr=0x49d2800) #100000003ee
2015-03-31 11:02:22.278926 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003ee snap head
2015-03-31 11:02:22.278928 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.278929 7fbe462be700 10 mds.0.server ref is [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.278941 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407393 cr=0x49d2800)
2015-03-31 11:02:22.278944 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.278962 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.278973 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.278983 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.278990 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279004 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.279018 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279028 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.279039 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.279048 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.279058 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.279063 7fbe462be700 10 mds.0.cache.ino(100000003ee) auth_pin by 0x2a623200 on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30] now 1+0
2015-03-31 11:02:22.279071 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279086 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279100 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279121 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279143 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.279151 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.279159 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279166 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279172 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279177 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279190 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407393 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.279194 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407393 getattr Xs #100000003ee 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.279205 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.279208 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.279213 7fbe462be700 10 mds.0.cache.ino(100000003ee) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.279215 7fbe462be700 10 mds.0.cache.ino(100000003ee) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.279229 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407393 cr=0x49d2800)
2015-03-31 11:02:22.279248 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279265 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279279 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279290 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279300 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.279308 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.279328 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279335 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279341 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279348 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c1e30]
2015-03-31 11:02:22.279354 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.279378 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.279389 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.279398 7fbe462be700 10 mds.0.cache.ino(100000003ee) auth_unpin by 0x2a623200 on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c1e30] now 0+0
2015-03-31 11:02:22.279770 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407394 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.279797 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407394 cr=0x49d7300)
2015-03-31 11:02:22.279800 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407394 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.279804 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407394 cr=0x49d7300) #1000006026a
2015-03-31 11:02:22.279806 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.279807 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.279808 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.279827 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407394 cr=0x49d7300)
2015-03-31 11:02:22.279829 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279846 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279857 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.279868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279882 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.279897 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279906 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.279918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.279928 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.279939 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279954 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.279968 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279989 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.279999 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280021 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280030 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280041 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31300} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280056 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407394 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.280059 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407394 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.280070 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.280073 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.280078 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31301
2015-03-31 11:02:22.280080 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31301 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.280093 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407394 cr=0x49d7300)
2015-03-31 11:02:22.280113 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280143 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280154 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280165 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280186 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280197 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280217 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.280231 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.280242 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.280633 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407395 create #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.280654 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407395 cr=0x25e3f080)
2015-03-31 11:02:22.280658 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407395 create #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.280660 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1002
2015-03-31 11:02:22.280662 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407395 cr=0x25e3f080) #1000006026a/blarg1002
2015-03-31 11:02:22.280664 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1002
2015-03-31 11:02:22.280665 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.280667 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.280668 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178639 v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.280678 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178639 v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.280687 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1002 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178639 v=178637 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.280697 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407395 cr=0x25e3f080)
2015-03-31 11:02:22.280703 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280723 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280734 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280746 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock) v=177622 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280752 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280767 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.280786 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280796 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.280807 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.280817 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.280828 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock) v=177622 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280833 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1002) auth_pin by 0x2a623200 on [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock) v=177622 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0] now 1+0
2015-03-31 11:02:22.280840 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock) v=177622 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280855 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177622 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280861 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177622 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280865 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177622 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280883 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177622 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280888 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1002) auth_pin by 0x676df38 on [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177622 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0] now 2+0
2015-03-31 11:02:22.280893 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2a623200) [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dn xlock x=1 by 0x2a623200) (dversion lock w=1 last_client=708310) v=177622 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.280899 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280914 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280927 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280940 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.280953 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280963 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280972 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280981 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.280991 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281000 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281010 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281020 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281029 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281039 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281049 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281058 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281068 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281078 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281096 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2aa ([1000006b2ab~378], 888 left)
2015-03-31 11:02:22.281097 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.281099 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2aa [2,head] #1000006b2aa auth v1 s=0 n() (iversion lock) 0x3f3ec7d8]
2015-03-31 11:02:22.281103 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178640
2015-03-31 11:02:22.281104 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1002)  pre_dirty [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dn xlock x=1 by 0x2a623200) (dversion lock w=1 last_client=708310) pv=178640 v=177622 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.281112 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ec7d8]
2015-03-31 11:02:22.281118 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2a623200 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178640 v=178637 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:22.281128 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x924f2d0
2015-03-31 11:02:22.281129 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178641
2015-03-31 11:02:22.281131 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178641 v=178637 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.281137 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178641 v=178637 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.281144 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ec7d8]
2015-03-31 11:02:22.281150 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.281152 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295210 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281166 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295212
2015-03-31 11:02:22.281167 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295212 v=3295208 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.281171 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295212 (current v 3295208)
2015-03-31 11:02:22.281172 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178641 v=178637 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.281178 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.281180 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2a623200 on [dir 10000000000 /test_small/ [2,head] auth pv=3295212 v=3295209 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:22.281189 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924bb20
2015-03-31 11:02:22.281191 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295213
2015-03-31 11:02:22.281192 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281204 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281214 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281224 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.281225 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.614596 < 1, stopping
2015-03-31 11:02:22.281230 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281240 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.281244 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295212 v=3295208 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.281249 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31301} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281262 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3ec7d8]
2015-03-31 11:02:22.281269 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.281272 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281279 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.281281 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281289 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281296 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281302 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281309 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281316 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281323 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281329 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281336 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281342 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281347 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281354 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281361 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281367 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281374 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281383 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.281384 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.281386 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3ec7d8 tracedn 0x676dde0
2015-03-31 11:02:22.281389 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2a623200) [dentry #1/test_small/small5/blarg1002 [2,head] auth NULL (dn xlock x=1 by 0x2a623200) (dversion lock w=1 last_client=708310) pv=178640 v=177622 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dde0]
2015-03-31 11:02:22.281396 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407395 create #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.281405 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.281408 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31302
2015-03-31 11:02:22.281410 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31302 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.281415 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.281419 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.281421 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) including xattrs version 0
2015-03-31 11:02:22.281456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.281485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.281505 7fbe406af700  5 mds.0.log _submit_thread 5419534714~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.281500 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.281523 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.281549 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281560 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281571 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281582 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281593 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281604 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281616 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281626 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281637 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281647 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.281921 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407396 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.281940 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407396 cr=0x25e3c380)
2015-03-31 11:02:22.281942 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407396 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.281945 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407396 cr=0x25e3c380) #1000006b2aa
2015-03-31 11:02:22.281947 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2aa snap head
2015-03-31 11:02:22.281949 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.281950 7fbe462be700 10 mds.0.server ref is [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.281963 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407396 cr=0x25e3c380)
2015-03-31 11:02:22.281965 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.281981 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.281991 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282002 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.282011 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282025 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.282040 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282049 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.282060 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282070 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.282080 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ec7d8]
2015-03-31 11:02:22.282088 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_pin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ec7d8] now 1+0
2015-03-31 11:02:22.282098 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282113 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282127 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282138 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282147 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282158 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282169 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.282189 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.282216 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407396 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.282220 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407396 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.282230 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.282235 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.282238 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.282240 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.282253 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407396 cr=0x25e3c380)
2015-03-31 11:02:22.282272 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282288 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282303 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282322 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282333 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282355 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282365 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.282376 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.282385 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.282401 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.282411 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.282422 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_unpin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8] now 0+0
2015-03-31 11:02:22.282717 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407397 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.282735 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407397 cr=0x25e39e00)
2015-03-31 11:02:22.282737 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407397 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.282740 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407397 cr=0x25e39e00) #1000006b2aa
2015-03-31 11:02:22.282743 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2aa snap head
2015-03-31 11:02:22.282744 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.282745 7fbe462be700 10 mds.0.server ref is [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.282758 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407397 cr=0x25e39e00)
2015-03-31 11:02:22.282761 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282776 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282790 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282801 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.282811 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282825 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.282840 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282849 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.282860 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282870 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.282881 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.282890 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_pin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8] now 1+0
2015-03-31 11:02:22.282900 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282915 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.282929 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282940 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.282951 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282961 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.282983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.283004 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.283019 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407397 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.283023 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407397 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.283034 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.283038 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.283041 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.283045 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.283058 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407397 cr=0x25e39e00)
2015-03-31 11:02:22.283077 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.283093 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.283107 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.283117 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.283138 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.283149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.283159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.283170 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.283180 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.283195 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.283206 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.283217 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_unpin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8] now 0+0
2015-03-31 11:02:22.287840 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003ee follows 0 op update
2015-03-31 11:02:22.287844 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287854 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.287856 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.287872 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.287873 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287878 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287885 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.287887 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287898 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287918 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287925 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.287926 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287934 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287941 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287941 7fbe406af700  5 mds.0.log _submit_thread 5419536353~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.287956 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287962 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287967 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287973 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287980 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.287990 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.327045 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407398 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.327065 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407398 cr=0x25e3d000)
2015-03-31 11:02:22.327067 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407398 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.327070 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407398 cr=0x25e3d000) #1000006b2aa
2015-03-31 11:02:22.327073 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2aa snap head
2015-03-31 11:02:22.327074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.327075 7fbe462be700 10 mds.0.server ref is [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.327093 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407398 cr=0x25e3d000)
2015-03-31 11:02:22.327096 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.327115 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.327127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.327139 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.327150 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.327165 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.327180 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.327190 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.327203 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.327214 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.327235 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.327245 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_pin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8] now 1+0
2015-03-31 11:02:22.327266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.327293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.327306 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.327316 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.327325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.327335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.327345 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.327354 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.327370 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407398 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.327374 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407398 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.327385 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.327389 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.327393 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.327396 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.327410 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407398 cr=0x25e3d000)
2015-03-31 11:02:22.327430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.327446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.327460 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.327472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.327482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.327493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.327514 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.327524 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.327534 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.327549 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.327560 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.327570 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_unpin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8] now 0+0
2015-03-31 11:02:22.328791 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003ee follows 0 op update
2015-03-31 11:02:22.328794 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328806 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.328808 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.328826 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.328827 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328834 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328842 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.328844 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328850 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328857 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328864 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.328865 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328872 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328877 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328884 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328889 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.328890 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.328891 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003ee [2,head] /test_small/small1/blarg1002 auth v59066 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c1e30]
2015-03-31 11:02:22.328899 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.368038 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407399 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.368061 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407399 cr=0x25e39680)
2015-03-31 11:02:22.368065 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407399 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.368069 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407399 cr=0x25e39680) #1000006b2aa
2015-03-31 11:02:22.368072 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2aa snap head
2015-03-31 11:02:22.368073 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.368074 7fbe462be700 10 mds.0.server ref is [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.368091 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407399 cr=0x25e39680)
2015-03-31 11:02:22.368094 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.368125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.368138 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.368149 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368164 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.368179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.368189 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.368201 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.368212 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.368223 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.368243 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_pin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8] now 1+0
2015-03-31 11:02:22.368254 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.368313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.368323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.368333 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.368343 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.368352 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.368368 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407399 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.368372 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407399 getattr Xs #1000006b2aa 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.368383 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.368387 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.368391 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.368394 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.368407 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407399 cr=0x25e39680)
2015-03-31 11:02:22.368427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.368468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.368478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.368500 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.368511 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.368522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ec7d8]
2015-03-31 11:02:22.368532 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.368546 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.368557 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.368568 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) auth_unpin by 0x23dd2300 on [inode 1000006b2aa [2,head] {#1000006b2aa /test_small/small5/blarg1002} auth v178640 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ec7d8] now 0+0
2015-03-31 11:02:22.368886 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407400 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.368904 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407400 cr=0x25e38500)
2015-03-31 11:02:22.368907 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407400 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.368910 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407400 cr=0x25e38500) #10000004e44
2015-03-31 11:02:22.368912 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e44 snap head
2015-03-31 11:02:22.368913 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.368915 7fbe462be700 10 mds.0.server ref is [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.368926 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407400 cr=0x25e38500)
2015-03-31 11:02:22.368929 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368944 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.368954 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.368964 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.368969 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.368983 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.368997 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.369007 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.369018 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.369027 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.369036 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.369042 7fbe462be700 10 mds.0.cache.ino(10000004e44) auth_pin by 0x23dd2300 on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60] now 1+0
2015-03-31 11:02:22.369049 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.369064 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.369078 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.369088 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.369098 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.369107 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.369117 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369124 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369148 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369166 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369178 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407400 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.369183 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407400 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.369193 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.369196 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.369199 7fbe462be700 10 mds.0.cache.ino(10000004e44) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.369201 7fbe462be700 10 mds.0.cache.ino(10000004e44) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.369214 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407400 cr=0x25e38500)
2015-03-31 11:02:22.369233 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.369248 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.369262 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.369273 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.369283 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.369292 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.369312 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369319 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369326 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369332 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.369338 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.369352 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.369363 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.369372 7fbe462be700 10 mds.0.cache.ino(10000004e44) auth_unpin by 0x23dd2300 on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c7a60] now 0+0
2015-03-31 11:02:22.369749 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407401 lookup #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.369770 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407401 cr=0x25e3b200)
2015-03-31 11:02:22.369772 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407401 lookup #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.369775 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407401 cr=0x25e3b200) #1000006026a/blarg10020
2015-03-31 11:02:22.369777 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.369780 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10020 [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock) v=177624 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.369794 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.369806 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407401 lookup #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.369817 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.369830 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407401 cr=0x25e3b200)
2015-03-31 11:02:22.370317 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407402 lookup #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.370338 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407402 cr=0x25e38280)
2015-03-31 11:02:22.370340 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407402 lookup #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.370343 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407402 cr=0x25e38280) #1000006026a/blarg10020
2015-03-31 11:02:22.370345 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.370347 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10020 [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock) v=177624 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.370355 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.370356 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407402 lookup #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.370366 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.370377 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407402 cr=0x25e38280)
2015-03-31 11:02:22.370865 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407403 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.370886 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407403 cr=0x51d9b80)
2015-03-31 11:02:22.370888 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407403 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.370892 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407403 cr=0x51d9b80) #10000004e44
2015-03-31 11:02:22.370894 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e44 snap head
2015-03-31 11:02:22.370895 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.370896 7fbe462be700 10 mds.0.server ref is [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.370909 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407403 cr=0x51d9b80)
2015-03-31 11:02:22.370912 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.370929 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.370941 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.370950 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.370957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.370972 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.370986 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.370996 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.371007 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.371016 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.371025 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.371031 7fbe462be700 10 mds.0.cache.ino(10000004e44) auth_pin by 0x23dd2300 on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60] now 1+0
2015-03-31 11:02:22.371039 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371054 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371068 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371089 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371099 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.371119 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.371127 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371134 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371140 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371146 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371159 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407403 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.371163 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407403 getattr Xs #10000004e44 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.371174 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.371177 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.371182 7fbe462be700 10 mds.0.cache.ino(10000004e44) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.371184 7fbe462be700 10 mds.0.cache.ino(10000004e44) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.371198 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407403 cr=0x51d9b80)
2015-03-31 11:02:22.371217 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371234 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371260 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371270 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.371290 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.371300 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371307 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371314 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371321 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c7a60]
2015-03-31 11:02:22.371326 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.371341 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.371352 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.371361 7fbe462be700 10 mds.0.cache.ino(10000004e44) auth_unpin by 0x23dd2300 on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c7a60] now 0+0
2015-03-31 11:02:22.371728 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407404 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.371751 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407404 cr=0x51dd280)
2015-03-31 11:02:22.371753 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407404 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.371756 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407404 cr=0x51dd280) #1000006026a
2015-03-31 11:02:22.371758 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.371760 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.371761 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.371779 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407404 cr=0x51dd280)
2015-03-31 11:02:22.371786 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371803 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371814 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.371826 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371839 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.371854 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371863 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.371875 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.371885 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.371896 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371911 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.371935 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371957 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.371965 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.371975 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.371984 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.371994 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31302} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372010 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407404 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.372015 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407404 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.372026 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.372029 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.372034 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31303
2015-03-31 11:02:22.372036 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31303 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.372050 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407404 cr=0x51dd280)
2015-03-31 11:02:22.372069 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372085 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372099 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372110 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372120 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372142 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372153 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372172 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.372187 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.372197 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.372591 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407405 create #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.372612 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407405 cr=0x51d9e00)
2015-03-31 11:02:22.372614 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407405 create #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.372617 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10020
2015-03-31 11:02:22.372618 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407405 cr=0x51d9e00) #1000006026a/blarg10020
2015-03-31 11:02:22.372620 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10020
2015-03-31 11:02:22.372622 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.372623 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.372625 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178641 v=178637 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.372634 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178641 v=178637 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.372643 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10020 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178641 v=178637 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.372653 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407405 cr=0x51d9e00)
2015-03-31 11:02:22.372659 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372678 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372690 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372701 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock) v=177624 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372707 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372721 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.372736 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372746 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.372757 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372768 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.372779 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock) v=177624 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372788 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10020) auth_pin by 0x23dd2300 on [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock) v=177624 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0] now 1+0
2015-03-31 11:02:22.372796 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock) v=177624 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372800 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177624 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372815 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177624 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372821 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177624 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372837 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177624 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372843 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10020) auth_pin by 0x676e118 on [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177624 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0] now 2+0
2015-03-31 11:02:22.372848 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd2300) [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) v=177624 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.372854 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372869 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372882 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372896 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.372909 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372919 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372928 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372937 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.372947 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372956 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372966 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372976 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372985 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.372995 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373004 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373014 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373023 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373033 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373052 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ab ([1000006b2ac~377], 887 left)
2015-03-31 11:02:22.373055 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.373056 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ab [2,head] #1000006b2ab auth v1 s=0 n() (iversion lock) 0x3f485c08]
2015-03-31 11:02:22.373060 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178642
2015-03-31 11:02:22.373061 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10020)  pre_dirty [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) pv=178642 v=177624 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.373069 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f485c08]
2015-03-31 11:02:22.373076 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd2300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178642 v=178637 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:22.373086 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0xa0696b0
2015-03-31 11:02:22.373087 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178643
2015-03-31 11:02:22.373088 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178643 v=178637 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.373095 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178643 v=178637 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.373101 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f485c08]
2015-03-31 11:02:22.373107 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.373109 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295212 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373122 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295214
2015-03-31 11:02:22.373123 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295214 v=3295208 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.373127 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295214 (current v 3295208)
2015-03-31 11:02:22.373129 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178643 v=178637 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.373136 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.373139 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd2300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295214 v=3295209 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:22.373149 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924d490
2015-03-31 11:02:22.373150 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295215
2015-03-31 11:02:22.373151 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373163 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373173 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373184 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.373185 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.706551 < 1, stopping
2015-03-31 11:02:22.373189 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373200 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.373203 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295214 v=3295208 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.373209 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31303} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373222 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f485c08]
2015-03-31 11:02:22.373229 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.373231 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f485c08]
2015-03-31 11:02:22.373239 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.373240 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373248 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373255 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373261 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373268 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373275 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373282 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373289 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373295 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373301 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373308 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373315 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373321 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373327 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373334 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f485c08]
2015-03-31 11:02:22.373344 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.373345 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.373347 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f485c08 tracedn 0x676dfc0
2015-03-31 11:02:22.373350 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd2300) [dentry #1/test_small/small5/blarg10020 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) pv=178642 v=177624 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676dfc0]
2015-03-31 11:02:22.373356 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407405 create #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.373364 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.373367 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31304
2015-03-31 11:02:22.373369 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31304 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.373375 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.373378 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.373380 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) including xattrs version 0
2015-03-31 11:02:22.373417 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.373446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.373465 7fbe406af700  5 mds.0.log _submit_thread 5419537211~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.373461 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.373484 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.373510 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373534 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373544 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373554 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373567 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373578 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373588 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373599 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373609 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.373910 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407406 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.373929 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407406 cr=0x51da300)
2015-03-31 11:02:22.373931 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407406 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.373934 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407406 cr=0x51da300) #1000006b2ab
2015-03-31 11:02:22.373936 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ab snap head
2015-03-31 11:02:22.373938 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.373939 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f485c08]
2015-03-31 11:02:22.373952 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407406 cr=0x51da300)
2015-03-31 11:02:22.373955 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.373971 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.373981 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374001 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f485c08]
2015-03-31 11:02:22.374022 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374037 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.374052 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374062 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.374073 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374083 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.374094 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f485c08]
2015-03-31 11:02:22.374104 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_pin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f485c08] now 1+0
2015-03-31 11:02:22.374114 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374130 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374146 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374157 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374168 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374179 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374190 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.374201 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.374218 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407406 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.374223 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407406 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.374234 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.374239 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.374243 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.374247 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.374263 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407406 cr=0x51da300)
2015-03-31 11:02:22.374272 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374289 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374304 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374315 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374326 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374337 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374348 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.374359 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.374369 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.374384 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.374405 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.374416 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_unpin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08] now 0+0
2015-03-31 11:02:22.374708 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407407 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.374725 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407407 cr=0x929a300)
2015-03-31 11:02:22.374727 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407407 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.374730 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407407 cr=0x929a300) #1000006b2ab
2015-03-31 11:02:22.374732 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ab snap head
2015-03-31 11:02:22.374733 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.374734 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.374747 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407407 cr=0x929a300)
2015-03-31 11:02:22.374750 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374765 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374775 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374792 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.374802 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374816 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.374831 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374840 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.374851 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374861 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.374872 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.374881 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_pin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08] now 1+0
2015-03-31 11:02:22.374890 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.374919 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374930 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.374940 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374951 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.374976 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.374997 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.375011 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407407 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.375016 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407407 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.375026 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.375030 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.375033 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.375036 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.375050 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407407 cr=0x929a300)
2015-03-31 11:02:22.375068 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.375085 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.375099 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.375109 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.375119 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.375129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.375151 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.375161 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.375170 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.375186 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.375197 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.375207 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_unpin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08] now 0+0
2015-03-31 11:02:22.379085 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e44 follows 0 op update
2015-03-31 11:02:22.379087 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379095 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.379097 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.379113 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.379114 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379120 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379128 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.379129 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379140 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379160 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379167 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.379170 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379178 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379184 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379183 7fbe406af700  5 mds.0.log _submit_thread 5419538851~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.379189 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379195 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379200 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379207 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379214 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.379223 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.419060 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407408 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.419085 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407408 cr=0x929cd80)
2015-03-31 11:02:22.419090 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407408 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.419094 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407408 cr=0x929cd80) #1000006b2ab
2015-03-31 11:02:22.419096 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ab snap head
2015-03-31 11:02:22.419097 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.419098 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.419114 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407408 cr=0x929cd80)
2015-03-31 11:02:22.419117 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.419135 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.419148 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.419160 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.419171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.419186 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.419201 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.419212 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.419223 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.419234 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.419245 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.419266 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_pin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08] now 1+0
2015-03-31 11:02:22.419276 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.419312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.419325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.419335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.419344 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.419355 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.419364 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.419373 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.419389 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407408 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.419393 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407408 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.419404 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.419407 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.419412 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.419415 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.419429 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407408 cr=0x929cd80)
2015-03-31 11:02:22.419448 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.419464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.419478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.419489 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.419500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.419510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.419532 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.419542 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.419552 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.419567 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.419578 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.419588 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_unpin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08] now 0+0
2015-03-31 11:02:22.420833 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e44 follows 0 op update
2015-03-31 11:02:22.420837 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420848 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.420850 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.420868 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.420869 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420876 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420884 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.420887 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420892 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420900 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420906 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.420908 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420916 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420923 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420928 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420935 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.420936 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.420937 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e44 [2,head] /test_small/small1/blarg10020 auth v136858 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7a60]
2015-03-31 11:02:22.420945 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.460007 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407409 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.460034 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407409 cr=0x9299400)
2015-03-31 11:02:22.460037 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407409 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.460040 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407409 cr=0x9299400) #1000006b2ab
2015-03-31 11:02:22.460042 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ab snap head
2015-03-31 11:02:22.460043 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.460044 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.460061 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407409 cr=0x9299400)
2015-03-31 11:02:22.460064 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460083 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460095 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.460107 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.460118 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460133 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.460148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460158 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.460170 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.460181 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.460191 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.460202 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_pin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08] now 1+0
2015-03-31 11:02:22.460212 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460228 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460244 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460255 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.460278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.460289 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.460309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.460326 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407409 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.460331 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407409 getattr Xs #1000006b2ab 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.460343 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.460347 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.460351 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.460355 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.460370 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407409 cr=0x9299400)
2015-03-31 11:02:22.460380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460397 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460423 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.460456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.460467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.460478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f485c08]
2015-03-31 11:02:22.460489 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.460504 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.460515 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.460526 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) auth_unpin by 0x242cdf00 on [inode 1000006b2ab [2,head] {#1000006b2ab /test_small/small5/blarg10020} auth v178642 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f485c08] now 0+0
2015-03-31 11:02:22.460771 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407410 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.460796 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407410 cr=0x929e680)
2015-03-31 11:02:22.460798 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407410 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.460801 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407410 cr=0x929e680) #10000004e3e
2015-03-31 11:02:22.460803 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3e snap head
2015-03-31 11:02:22.460805 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.460806 7fbe462be700 10 mds.0.server ref is [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.460816 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407410 cr=0x929e680)
2015-03-31 11:02:22.460819 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460844 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460855 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.460864 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.460870 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460884 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.460898 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460907 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.460919 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.460927 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.460937 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.460942 7fbe462be700 10 mds.0.cache.ino(10000004e3e) auth_pin by 0x242cdf00 on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128] now 1+0
2015-03-31 11:02:22.460949 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460963 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.460977 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460988 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.460998 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.461007 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.461027 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461046 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461052 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461058 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461071 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407410 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.461075 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407410 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.461085 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.461088 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.461092 7fbe462be700 10 mds.0.cache.ino(10000004e3e) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.461095 7fbe462be700 10 mds.0.cache.ino(10000004e3e) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.461108 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407410 cr=0x929e680)
2015-03-31 11:02:22.461127 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.461143 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.461158 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.461168 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.461189 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.461198 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.461208 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461215 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461222 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461228 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.461234 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.461248 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.461259 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.461268 7fbe462be700 10 mds.0.cache.ino(10000004e3e) auth_unpin by 0x242cdf00 on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c7128] now 0+0
2015-03-31 11:02:22.461547 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407411 lookup #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.461564 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407411 cr=0x9298a00)
2015-03-31 11:02:22.461566 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407411 lookup #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.461569 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407411 cr=0x9298a00) #1000006026a/blarg10021
2015-03-31 11:02:22.461570 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.461573 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10021 [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock) v=177626 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.461582 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.461584 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407411 lookup #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.461593 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.461605 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407411 cr=0x9298a00)
2015-03-31 11:02:22.462077 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407412 lookup #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.462096 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407412 cr=0x929da00)
2015-03-31 11:02:22.462099 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407412 lookup #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.462101 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407412 cr=0x929da00) #1000006026a/blarg10021
2015-03-31 11:02:22.462104 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.462106 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10021 [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock) v=177626 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.462114 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.462116 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407412 lookup #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.462129 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.462141 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407412 cr=0x929da00)
2015-03-31 11:02:22.462585 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407413 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.462606 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407413 cr=0x9299900)
2015-03-31 11:02:22.462609 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407413 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.462612 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407413 cr=0x9299900) #10000004e3e
2015-03-31 11:02:22.462614 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3e snap head
2015-03-31 11:02:22.462615 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.462616 7fbe462be700 10 mds.0.server ref is [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.462627 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407413 cr=0x9299900)
2015-03-31 11:02:22.462630 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.462648 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.462660 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.462670 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.462677 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.462691 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.462705 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.462715 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.462726 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.462735 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.462744 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.462750 7fbe462be700 10 mds.0.cache.ino(10000004e3e) auth_pin by 0x242cdf00 on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128] now 1+0
2015-03-31 11:02:22.462757 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.462772 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.462804 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.462827 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.462837 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.462857 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.462866 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.462873 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.462878 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.462884 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.462898 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407413 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.462903 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407413 getattr Xs #10000004e3e 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.462915 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.462919 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.462922 7fbe462be700 10 mds.0.cache.ino(10000004e3e) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.462925 7fbe462be700 10 mds.0.cache.ino(10000004e3e) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.462941 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407413 cr=0x9299900)
2015-03-31 11:02:22.462961 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.462978 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.462992 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463004 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463025 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.463035 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.463045 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.463052 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.463059 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.463065 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c7128]
2015-03-31 11:02:22.463071 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.463086 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.463097 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.463107 7fbe462be700 10 mds.0.cache.ino(10000004e3e) auth_unpin by 0x242cdf00 on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c7128] now 0+0
2015-03-31 11:02:22.463392 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407414 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.463410 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407414 cr=0x9298280)
2015-03-31 11:02:22.463412 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407414 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.463415 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407414 cr=0x9298280) #1000006026a
2015-03-31 11:02:22.463417 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.463418 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.463419 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463435 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407414 cr=0x9298280)
2015-03-31 11:02:22.463438 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.463452 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463462 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463473 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.463486 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.463501 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463510 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.463521 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463531 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.463542 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.463556 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.463570 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463580 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463591 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463602 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463613 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463623 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31304} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463650 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407414 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.463655 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407414 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.463677 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.463681 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.463685 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31305
2015-03-31 11:02:22.463687 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31305 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.463698 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407414 cr=0x9298280)
2015-03-31 11:02:22.463717 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.463733 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.463747 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463757 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.463778 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463805 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463816 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463826 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.463836 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.463850 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.463861 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.464117 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407415 create #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.464134 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407415 cr=0x929a080)
2015-03-31 11:02:22.464137 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407415 create #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.464139 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10021
2015-03-31 11:02:22.464142 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407415 cr=0x929a080) #1000006026a/blarg10021
2015-03-31 11:02:22.464145 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10021
2015-03-31 11:02:22.464146 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.464147 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.464149 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178643 v=178637 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.464158 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178643 v=178637 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.464165 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10021 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178643 v=178637 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.464175 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407415 cr=0x929a080)
2015-03-31 11:02:22.464182 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.464199 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464210 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464221 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock) v=177626 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464228 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.464242 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.464257 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464267 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.464278 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464288 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.464299 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock) v=177626 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464305 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10021) auth_pin by 0x242cdf00 on [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock) v=177626 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0] now 1+0
2015-03-31 11:02:22.464311 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock) v=177626 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464316 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177626 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464323 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177626 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464328 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177626 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464334 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177626 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464339 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10021) auth_pin by 0x676e2f8 on [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177626 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0] now 2+0
2015-03-31 11:02:22.464346 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cdf00) [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dn xlock x=1 by 0x242cdf00) (dversion lock w=1 last_client=708310) v=177626 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.464379 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.464393 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.464407 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.464422 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464432 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464443 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464453 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464463 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464474 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464485 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464496 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464506 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464516 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464526 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464536 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464547 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464557 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464577 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ac ([1000006b2ad~376], 886 left)
2015-03-31 11:02:22.464580 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.464582 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ac [2,head] #1000006b2ac auth v1 s=0 n() (iversion lock) 0x3f4e68c8]
2015-03-31 11:02:22.464586 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178644
2015-03-31 11:02:22.464588 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10021)  pre_dirty [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dn xlock x=1 by 0x242cdf00) (dversion lock w=1 last_client=708310) pv=178644 v=177626 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464596 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4e68c8]
2015-03-31 11:02:22.464604 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cdf00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178644 v=178637 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:22.464614 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0xa06e040
2015-03-31 11:02:22.464616 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178645
2015-03-31 11:02:22.464617 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178645 v=178637 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.464624 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178645 v=178637 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.464632 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4e68c8]
2015-03-31 11:02:22.464638 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.464640 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295214 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464655 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295216
2015-03-31 11:02:22.464656 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295216 v=3295208 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.464660 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295216 (current v 3295208)
2015-03-31 11:02:22.464662 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178645 v=178637 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.464669 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.464670 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cdf00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295216 v=3295209 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:22.464681 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa068bb0
2015-03-31 11:02:22.464682 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295217
2015-03-31 11:02:22.464683 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464696 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464707 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464719 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.464720 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.798076 < 1, stopping
2015-03-31 11:02:22.464725 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.464736 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.464740 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295216 v=3295208 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.464745 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31305} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.464760 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4e68c8]
2015-03-31 11:02:22.464767 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.464770 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464779 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.464780 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464794 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464801 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464809 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464816 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464824 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464831 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464838 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464845 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464851 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464858 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464866 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464873 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464880 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464887 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e68c8]
2015-03-31 11:02:22.464897 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.464899 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.464901 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4e68c8 tracedn 0x676e1a0
2015-03-31 11:02:22.464904 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cdf00) [dentry #1/test_small/small5/blarg10021 [2,head] auth NULL (dn xlock x=1 by 0x242cdf00) (dversion lock w=1 last_client=708310) pv=178644 v=177626 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e1a0]
2015-03-31 11:02:22.464911 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407415 create #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.464920 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.464924 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31306
2015-03-31 11:02:22.464926 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31306 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.464932 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.464936 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.464938 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) including xattrs version 0
2015-03-31 11:02:22.464965 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465004 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465014 7fbe406af700  5 mds.0.log _submit_thread 5419539710~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.465020 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465034 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465048 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465060 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465071 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465081 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465092 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465103 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465115 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465125 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465136 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465146 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465389 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407416 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.465410 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407416 cr=0x9299e00)
2015-03-31 11:02:22.465412 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407416 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.465416 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407416 cr=0x9299e00) #1000006b2ac
2015-03-31 11:02:22.465417 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ac snap head
2015-03-31 11:02:22.465419 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.465420 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4e68c8]
2015-03-31 11:02:22.465434 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407416 cr=0x9299e00)
2015-03-31 11:02:22.465437 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465452 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465463 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465475 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4e68c8]
2015-03-31 11:02:22.465485 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465499 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.465514 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465524 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.465535 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465546 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.465557 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4e68c8]
2015-03-31 11:02:22.465567 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_pin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4e68c8] now 1+0
2015-03-31 11:02:22.465577 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465593 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465608 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465619 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465629 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465640 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465651 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.465662 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.465689 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407416 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.465694 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407416 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.465705 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.465709 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.465713 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.465716 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.465731 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407416 cr=0x9299e00)
2015-03-31 11:02:22.465750 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465777 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.465796 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465807 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.465827 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465837 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.465848 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.465858 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.465879 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.465894 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.465904 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.465914 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_unpin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8] now 0+0
2015-03-31 11:02:22.466292 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407417 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.466313 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407417 cr=0x9298500)
2015-03-31 11:02:22.466316 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407417 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.466319 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407417 cr=0x9298500) #1000006b2ac
2015-03-31 11:02:22.466321 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ac snap head
2015-03-31 11:02:22.466323 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.466324 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.466340 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407417 cr=0x9298500)
2015-03-31 11:02:22.466344 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.466361 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.466373 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.466385 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.466395 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.466409 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.466424 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.466433 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.466445 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.466455 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.466465 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.466475 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_pin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8] now 1+0
2015-03-31 11:02:22.466486 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.466501 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.466525 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.466547 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.466556 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.466566 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.466576 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.466585 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.466600 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407417 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.466605 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407417 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.466616 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.466620 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.466623 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.466627 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.466641 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407417 cr=0x9298500)
2015-03-31 11:02:22.466660 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.466676 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.466690 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.466701 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.466712 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.466723 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.466733 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.466754 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.466764 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.466779 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.466795 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.466806 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_unpin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8] now 0+0
2015-03-31 11:02:22.471099 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3e follows 0 op update
2015-03-31 11:02:22.471103 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471113 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.471115 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.471133 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.471134 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471140 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471148 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.471150 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471161 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471170 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471177 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.471178 7fbe406af700  5 mds.0.log _submit_thread 5419541350~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.471179 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471197 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471205 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471211 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471218 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471224 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471230 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471236 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.471245 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.511065 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407418 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.511088 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407418 cr=0x929cb00)
2015-03-31 11:02:22.511092 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407418 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.511096 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407418 cr=0x929cb00) #1000006b2ac
2015-03-31 11:02:22.511098 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ac snap head
2015-03-31 11:02:22.511100 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.511101 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.511118 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407418 cr=0x929cb00)
2015-03-31 11:02:22.511121 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.511139 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.511151 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.511163 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.511174 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.511189 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.511204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.511215 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.511226 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.511247 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.511257 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.511267 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_pin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8] now 1+0
2015-03-31 11:02:22.511288 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.511315 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.511328 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.511338 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.511348 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.511357 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.511366 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.511376 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.511391 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407418 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.511395 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407418 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.511406 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.511409 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.511414 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.511416 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.511430 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407418 cr=0x929cb00)
2015-03-31 11:02:22.511449 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.511466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.511480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.511491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.511501 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.511511 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.511532 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.511542 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.511552 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.511567 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.511578 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.511588 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_unpin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8] now 0+0
2015-03-31 11:02:22.512868 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3e follows 0 op update
2015-03-31 11:02:22.512871 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512883 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.512885 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.512903 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.512904 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512911 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512919 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.512921 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512926 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512934 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512940 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.512942 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512949 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512956 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512963 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512969 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.512970 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.512971 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e3e [2,head] /test_small/small1/blarg10021 auth v136860 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c7128]
2015-03-31 11:02:22.512978 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.552048 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407419 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.552074 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407419 cr=0x9f78f00)
2015-03-31 11:02:22.552076 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407419 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.552080 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407419 cr=0x9f78f00) #1000006b2ac
2015-03-31 11:02:22.552082 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ac snap head
2015-03-31 11:02:22.552083 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.552085 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.552102 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407419 cr=0x9f78f00)
2015-03-31 11:02:22.552105 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552123 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.552148 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.552158 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552173 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.552188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552199 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.552211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.552231 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.552242 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.552252 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_pin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8] now 1+0
2015-03-31 11:02:22.552273 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552299 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.552351 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.552360 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.552370 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.552384 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407419 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.552388 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407419 getattr Xs #1000006b2ac 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.552399 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.552402 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.552406 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.552409 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.552423 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407419 cr=0x9f78f00)
2015-03-31 11:02:22.552442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552458 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552494 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.552504 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.552525 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.552536 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e68c8]
2015-03-31 11:02:22.552546 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.552561 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.552571 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.552582 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) auth_unpin by 0x2b0c2800 on [inode 1000006b2ac [2,head] {#1000006b2ac /test_small/small5/blarg10021} auth v178644 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e68c8] now 0+0
2015-03-31 11:02:22.552866 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407420 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.552884 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407420 cr=0x9f79b80)
2015-03-31 11:02:22.552887 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407420 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.552890 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407420 cr=0x9f79b80) #10000004e3a
2015-03-31 11:02:22.552892 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3a snap head
2015-03-31 11:02:22.552894 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.552895 7fbe462be700 10 mds.0.server ref is [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.552907 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407420 cr=0x9f79b80)
2015-03-31 11:02:22.552909 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552925 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552935 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.552944 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.552950 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.552963 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.552978 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.552987 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.552998 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.553007 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.553016 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.553022 7fbe462be700 10 mds.0.cache.ino(10000004e3a) auth_pin by 0x2b0c2800 on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0] now 1+0
2015-03-31 11:02:22.553030 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.553044 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.553058 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.553069 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.553080 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.553089 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.553098 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553105 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553121 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553127 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553150 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407420 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.553153 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407420 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.553163 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.553166 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.553170 7fbe462be700 10 mds.0.cache.ino(10000004e3a) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.553172 7fbe462be700 10 mds.0.cache.ino(10000004e3a) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.553184 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407420 cr=0x9f79b80)
2015-03-31 11:02:22.553203 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.553219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.553233 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.553243 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.553254 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.553263 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.553272 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553289 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553295 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553302 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.553309 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.553323 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.553333 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.553343 7fbe462be700 10 mds.0.cache.ino(10000004e3a) auth_unpin by 0x2b0c2800 on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c67f0] now 0+0
2015-03-31 11:02:22.553710 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407421 lookup #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.553730 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407421 cr=0x9f7c600)
2015-03-31 11:02:22.553732 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407421 lookup #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.553735 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407421 cr=0x9f7c600) #1000006026a/blarg10022
2015-03-31 11:02:22.553737 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.553740 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10022 [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock) v=177628 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e380]
2015-03-31 11:02:22.553748 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.553750 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407421 lookup #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.553762 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.553775 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407421 cr=0x9f7c600)
2015-03-31 11:02:22.554222 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407422 lookup #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.554243 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407422 cr=0x9f7e400)
2015-03-31 11:02:22.554245 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407422 lookup #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.554248 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407422 cr=0x9f7e400) #1000006026a/blarg10022
2015-03-31 11:02:22.554250 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.554253 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10022 [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock) v=177628 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e380]
2015-03-31 11:02:22.554261 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.554263 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407422 lookup #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.554275 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.554288 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407422 cr=0x9f7e400)
2015-03-31 11:02:22.554795 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407423 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.554816 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407423 cr=0x9f7af80)
2015-03-31 11:02:22.554820 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407423 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.554823 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407423 cr=0x9f7af80) #10000004e3a
2015-03-31 11:02:22.554825 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3a snap head
2015-03-31 11:02:22.554826 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.554827 7fbe462be700 10 mds.0.server ref is [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.554839 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407423 cr=0x9f7af80)
2015-03-31 11:02:22.554842 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.554860 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.554871 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.554881 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.554888 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.554902 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.554917 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.554927 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.554938 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.554947 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.554957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.554963 7fbe462be700 10 mds.0.cache.ino(10000004e3a) auth_pin by 0x2b0c2800 on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0] now 1+0
2015-03-31 11:02:22.554970 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.554986 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555000 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555043 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.555052 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.555060 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555067 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555073 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555078 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555091 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407423 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.555096 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407423 getattr Xs #10000004e3a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.555107 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.555111 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.555114 7fbe462be700 10 mds.0.cache.ino(10000004e3a) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.555118 7fbe462be700 10 mds.0.cache.ino(10000004e3a) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.555131 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407423 cr=0x9f7af80)
2015-03-31 11:02:22.555151 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555166 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555181 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555192 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555202 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.555211 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.555220 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555227 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555245 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555251 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c67f0]
2015-03-31 11:02:22.555259 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.555274 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.555285 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.555294 7fbe462be700 10 mds.0.cache.ino(10000004e3a) auth_unpin by 0x2b0c2800 on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c67f0] now 0+0
2015-03-31 11:02:22.555589 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407424 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.555607 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407424 cr=0x9f7a300)
2015-03-31 11:02:22.555609 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407424 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.555612 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407424 cr=0x9f7a300) #1000006026a
2015-03-31 11:02:22.555614 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.555616 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.555617 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555632 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407424 cr=0x9f7a300)
2015-03-31 11:02:22.555635 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555649 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555659 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555670 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555683 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.555697 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555707 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.555717 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555727 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.555739 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555767 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555776 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555790 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555801 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555811 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555822 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31306} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555849 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407424 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.555853 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407424 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.555874 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.555877 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.555881 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31307
2015-03-31 11:02:22.555883 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31307 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.555896 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407424 cr=0x9f7a300)
2015-03-31 11:02:22.555914 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.555945 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555955 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.555965 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555976 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.555986 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556007 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556018 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.556032 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.556042 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.556433 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407425 create #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.556453 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407425 cr=0x9f7d280)
2015-03-31 11:02:22.556456 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407425 create #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.556459 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10022
2015-03-31 11:02:22.556460 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407425 cr=0x9f7d280) #1000006026a/blarg10022
2015-03-31 11:02:22.556462 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10022
2015-03-31 11:02:22.556464 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.556465 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.556467 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178645 v=178637 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.556477 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178645 v=178637 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.556485 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10022 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178645 v=178637 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.556496 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407425 cr=0x9f7d280)
2015-03-31 11:02:22.556502 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.556521 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.556533 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556544 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock) v=177628 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e380]
2015-03-31 11:02:22.556551 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.556566 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.556580 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.556601 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.556613 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556624 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.556635 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock) v=177628 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e380]
2015-03-31 11:02:22.556641 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10022) auth_pin by 0x2b0c2800 on [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock) v=177628 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380] now 1+0
2015-03-31 11:02:22.556647 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock) v=177628 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.556653 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177628 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.556659 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177628 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.556664 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177628 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.556671 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177628 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.556677 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10022) auth_pin by 0x676e4d8 on [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177628 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380] now 2+0
2015-03-31 11:02:22.556683 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2b0c2800) [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) v=177628 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.556689 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.556706 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.556722 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.556736 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.556751 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.556762 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.556772 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.556790 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.556801 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556812 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556823 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556834 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556854 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556865 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556877 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556887 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556898 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556909 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.556939 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ad ([1000006b2ae~375], 885 left)
2015-03-31 11:02:22.556953 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.556955 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ad [2,head] #1000006b2ad auth v1 s=0 n() (iversion lock) 0x3f3ae438]
2015-03-31 11:02:22.556959 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178646
2015-03-31 11:02:22.556972 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10022)  pre_dirty [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) pv=178646 v=177628 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.556980 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ae438]
2015-03-31 11:02:22.556987 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2b0c2800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178646 v=178637 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:22.556996 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0xa06a050
2015-03-31 11:02:22.556997 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178647
2015-03-31 11:02:22.556998 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178647 v=178637 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.557005 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178647 v=178637 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.557012 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ae438]
2015-03-31 11:02:22.557018 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.557020 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295216 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557034 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295218
2015-03-31 11:02:22.557035 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295218 v=3295208 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.557039 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295218 (current v 3295208)
2015-03-31 11:02:22.557042 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178647 v=178637 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.557048 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.557050 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2b0c2800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295218 v=3295209 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:22.557060 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa06eca0
2015-03-31 11:02:22.557062 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295219
2015-03-31 11:02:22.557063 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557075 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557085 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557095 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.557097 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.890428 < 1, stopping
2015-03-31 11:02:22.557101 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557111 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.557115 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295218 v=3295208 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.557120 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31307} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557133 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3ae438]
2015-03-31 11:02:22.557140 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.557142 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557150 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.557152 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557159 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557166 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557172 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557179 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557186 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557193 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557199 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557206 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557212 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557219 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557225 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557232 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557238 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557244 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ae438]
2015-03-31 11:02:22.557253 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.557254 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.557257 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3ae438 tracedn 0x676e380
2015-03-31 11:02:22.557259 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2b0c2800) [dentry #1/test_small/small5/blarg10022 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) pv=178646 v=177628 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e380]
2015-03-31 11:02:22.557268 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407425 create #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.557276 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.557279 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31308
2015-03-31 11:02:22.557281 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31308 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.557287 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.557290 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.557293 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) including xattrs version 0
2015-03-31 11:02:22.557330 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557358 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557372 7fbe406af700  5 mds.0.log _submit_thread 5419542209~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.557374 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557398 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557424 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557435 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557445 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557456 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557468 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557490 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557501 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557512 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557729 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407426 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.557750 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407426 cr=0x9f7d780)
2015-03-31 11:02:22.557752 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407426 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.557756 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407426 cr=0x9f7d780) #1000006b2ad
2015-03-31 11:02:22.557758 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ad snap head
2015-03-31 11:02:22.557759 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.557760 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3ae438]
2015-03-31 11:02:22.557773 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407426 cr=0x9f7d780)
2015-03-31 11:02:22.557776 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557797 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557808 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557819 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ae438]
2015-03-31 11:02:22.557828 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557842 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.557857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557867 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.557878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557888 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.557898 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ae438]
2015-03-31 11:02:22.557907 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_pin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ae438] now 1+0
2015-03-31 11:02:22.557918 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557932 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.557947 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557957 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.557967 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.557988 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558009 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558018 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558033 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407426 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.558037 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407426 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.558048 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.558051 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.558055 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.558057 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.558070 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407426 cr=0x9f7d780)
2015-03-31 11:02:22.558089 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558105 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558119 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558130 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558140 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558161 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558171 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558182 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558192 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.558206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.558217 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.558228 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_unpin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438] now 0+0
2015-03-31 11:02:22.558438 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407427 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.558457 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407427 cr=0x9f7c380)
2015-03-31 11:02:22.558460 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407427 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.558463 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407427 cr=0x9f7c380) #1000006b2ad
2015-03-31 11:02:22.558465 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ad snap head
2015-03-31 11:02:22.558466 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.558467 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.558480 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407427 cr=0x9f7c380)
2015-03-31 11:02:22.558483 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558498 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558508 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558519 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.558529 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558542 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.558556 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558566 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.558576 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558586 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.558596 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.558606 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_pin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438] now 1+0
2015-03-31 11:02:22.558615 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558630 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558643 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558653 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558664 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558674 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558685 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558704 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558729 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407427 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.558733 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407427 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.558743 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.558746 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.558749 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.558751 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.558764 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407427 cr=0x9f7c380)
2015-03-31 11:02:22.558786 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558802 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.558816 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558827 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.558837 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558858 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.558868 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558879 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.558889 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.558903 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.558914 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.558925 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_unpin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438] now 0+0
2015-03-31 11:02:22.562330 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3a follows 0 op update
2015-03-31 11:02:22.562333 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562344 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.562345 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.562364 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.562364 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562371 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562379 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.562381 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562392 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562413 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562420 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.562422 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562431 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562431 7fbe406af700  5 mds.0.log _submit_thread 5419543849~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.562438 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562444 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562450 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562457 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562464 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562471 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.562481 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.602039 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407428 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.602061 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407428 cr=0x9f7c100)
2015-03-31 11:02:22.602066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407428 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.602070 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407428 cr=0x9f7c100) #1000006b2ad
2015-03-31 11:02:22.602071 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ad snap head
2015-03-31 11:02:22.602073 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.602074 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.602091 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407428 cr=0x9f7c100)
2015-03-31 11:02:22.602094 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.602111 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.602123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.602135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.602145 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.602160 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.602175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.602185 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.602196 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.602206 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.602217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.602227 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_pin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438] now 1+0
2015-03-31 11:02:22.602237 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.602253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.602279 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.602300 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.602310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.602320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.602329 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.602339 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.602354 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407428 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.602358 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407428 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.602369 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.602373 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.602377 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.602380 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.602393 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407428 cr=0x9f7c100)
2015-03-31 11:02:22.602412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.602429 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.602443 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.602454 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.602473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.602484 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.602505 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.602516 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.602527 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.602542 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.602553 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.602564 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_unpin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438] now 0+0
2015-03-31 11:02:22.603850 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3a follows 0 op update
2015-03-31 11:02:22.603854 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603866 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.603867 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.603885 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.603886 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603893 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603902 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.603904 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603909 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603917 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603924 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.603925 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603932 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603939 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603946 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603951 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.603953 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.603954 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e3a [2,head] /test_small/small1/blarg10022 auth v136862 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c67f0]
2015-03-31 11:02:22.603961 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.643014 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407429 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.643036 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407429 cr=0x9ae3e80)
2015-03-31 11:02:22.643038 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407429 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.643042 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407429 cr=0x9ae3e80) #1000006b2ad
2015-03-31 11:02:22.643043 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ad snap head
2015-03-31 11:02:22.643045 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.643046 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.643063 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407429 cr=0x9ae3e80)
2015-03-31 11:02:22.643066 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643083 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643095 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.643107 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.643117 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643132 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.643147 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643156 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.643168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.643178 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.643189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.643198 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_pin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438] now 1+0
2015-03-31 11:02:22.643208 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643224 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643238 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643280 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.643290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.643299 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.643308 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.643324 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407429 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.643328 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407429 getattr Xs #1000006b2ad 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.643338 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.643342 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.643346 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.643349 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.643362 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407429 cr=0x9ae3e80)
2015-03-31 11:02:22.643381 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643398 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643423 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.643443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.643453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.643475 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ae438]
2015-03-31 11:02:22.643485 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.643500 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.643510 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.643521 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) auth_unpin by 0x2a626e00 on [inode 1000006b2ad [2,head] {#1000006b2ad /test_small/small5/blarg10022} auth v178646 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ae438] now 0+0
2015-03-31 11:02:22.643813 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407430 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.643831 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407430 cr=0x9ae7300)
2015-03-31 11:02:22.643833 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407430 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.643836 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407430 cr=0x9ae7300) #10000004e39
2015-03-31 11:02:22.643838 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e39 snap head
2015-03-31 11:02:22.643840 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.643841 7fbe462be700 10 mds.0.server ref is [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.643853 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407430 cr=0x9ae7300)
2015-03-31 11:02:22.643856 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643872 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643883 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.643892 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.643898 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643911 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.643926 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.643935 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.643946 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.643955 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.643964 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.643970 7fbe462be700 10 mds.0.cache.ino(10000004e39) auth_pin by 0x2a626e00 on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8] now 1+0
2015-03-31 11:02:22.643977 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.643991 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.644005 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.644015 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.644026 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.644034 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.644044 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644051 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644068 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644075 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644100 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407430 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.644105 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407430 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.644115 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.644118 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.644123 7fbe462be700 10 mds.0.cache.ino(10000004e39) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.644125 7fbe462be700 10 mds.0.cache.ino(10000004e39) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.644138 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407430 cr=0x9ae7300)
2015-03-31 11:02:22.644157 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.644173 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.644187 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.644198 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.644208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.644216 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.644225 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644232 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644255 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.644261 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.644276 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.644286 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.644296 7fbe462be700 10 mds.0.cache.ino(10000004e39) auth_unpin by 0x2a626e00 on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c5eb8] now 0+0
2015-03-31 11:02:22.644594 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407431 lookup #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.644612 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407431 cr=0x9ae3200)
2015-03-31 11:02:22.644614 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407431 lookup #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.644616 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407431 cr=0x9ae3200) #1000006026a/blarg10023
2015-03-31 11:02:22.644618 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.644621 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10023 [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock) v=177630 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e560]
2015-03-31 11:02:22.644629 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.644631 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407431 lookup #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.644640 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.644652 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407431 cr=0x9ae3200)
2015-03-31 11:02:22.645123 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407432 lookup #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.645143 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407432 cr=0x9ae1680)
2015-03-31 11:02:22.645145 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407432 lookup #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.645148 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407432 cr=0x9ae1680) #1000006026a/blarg10023
2015-03-31 11:02:22.645150 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.645153 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10023 [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock) v=177630 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e560]
2015-03-31 11:02:22.645161 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.645163 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407432 lookup #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.645174 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.645187 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407432 cr=0x9ae1680)
2015-03-31 11:02:22.645660 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407433 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.645681 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407433 cr=0x9ae4d80)
2015-03-31 11:02:22.645684 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407433 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.645687 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407433 cr=0x9ae4d80) #10000004e39
2015-03-31 11:02:22.645689 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e39 snap head
2015-03-31 11:02:22.645691 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.645692 7fbe462be700 10 mds.0.server ref is [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.645703 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407433 cr=0x9ae4d80)
2015-03-31 11:02:22.645706 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.645724 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.645735 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.645744 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.645751 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.645765 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.645780 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.645794 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.645805 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.645813 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.645823 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.645828 7fbe462be700 10 mds.0.cache.ino(10000004e39) auth_pin by 0x2a626e00 on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8] now 1+0
2015-03-31 11:02:22.645836 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.645850 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.645865 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.645885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.645896 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.645916 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.645925 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.645930 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.645936 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.645943 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.645956 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407433 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.645960 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407433 getattr Xs #10000004e39 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.645971 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.645975 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.645979 7fbe462be700 10 mds.0.cache.ino(10000004e39) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.645981 7fbe462be700 10 mds.0.cache.ino(10000004e39) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.645995 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407433 cr=0x9ae4d80)
2015-03-31 11:02:22.646014 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646031 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646045 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646056 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646066 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.646075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.646085 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.646091 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.646110 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.646116 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c5eb8]
2015-03-31 11:02:22.646122 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.646136 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.646147 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.646156 7fbe462be700 10 mds.0.cache.ino(10000004e39) auth_unpin by 0x2a626e00 on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c5eb8] now 0+0
2015-03-31 11:02:22.646453 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407434 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.646470 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407434 cr=0x9ae4b00)
2015-03-31 11:02:22.646473 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407434 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.646476 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407434 cr=0x9ae4b00) #1000006026a
2015-03-31 11:02:22.646478 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.646480 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.646481 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646496 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407434 cr=0x9ae4b00)
2015-03-31 11:02:22.646499 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646513 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646523 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646534 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646547 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.646561 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646571 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.646581 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646591 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.646603 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646616 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646630 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646640 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646650 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646661 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646671 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646682 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31308} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646699 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407434 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.646713 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407434 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.646735 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.646738 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.646742 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31309
2015-03-31 11:02:22.646744 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31309 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.646757 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407434 cr=0x9ae4b00)
2015-03-31 11:02:22.646775 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646796 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.646810 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646821 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.646831 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646842 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646852 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646874 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.646884 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.646898 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.646908 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.647252 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407435 create #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.647273 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407435 cr=0x9ae4100)
2015-03-31 11:02:22.647275 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407435 create #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.647278 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10023
2015-03-31 11:02:22.647279 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407435 cr=0x9ae4100) #1000006026a/blarg10023
2015-03-31 11:02:22.647281 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10023
2015-03-31 11:02:22.647283 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.647284 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.647285 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178647 v=178637 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.647295 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178647 v=178637 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.647302 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10023 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178647 v=178637 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.647312 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407435 cr=0x9ae4100)
2015-03-31 11:02:22.647318 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.647337 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647348 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647360 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock) v=177630 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e560]
2015-03-31 11:02:22.647367 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.647382 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.647405 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647415 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.647426 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647437 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.647448 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock) v=177630 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e560]
2015-03-31 11:02:22.647453 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10023) auth_pin by 0x2a626e00 on [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock) v=177630 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560] now 1+0
2015-03-31 11:02:22.647470 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock) v=177630 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.647474 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177630 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.647480 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177630 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.647498 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177630 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.647502 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177630 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.647506 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10023) auth_pin by 0x676e6b8 on [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177630 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560] now 2+0
2015-03-31 11:02:22.647511 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2a626e00) [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) v=177630 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.647516 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.647530 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.647543 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.647556 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.647569 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647578 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647588 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647597 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647606 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647616 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647626 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647635 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647645 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647655 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647664 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647674 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647683 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647692 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647710 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ae ([1000006b2af~374], 884 left)
2015-03-31 11:02:22.647713 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.647715 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ae [2,head] #1000006b2ae auth v1 s=0 n() (iversion lock) 0x3f3aed70]
2015-03-31 11:02:22.647719 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178648
2015-03-31 11:02:22.647720 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10023)  pre_dirty [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) pv=178648 v=177630 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.647727 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3aed70]
2015-03-31 11:02:22.647734 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2a626e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178648 v=178637 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:22.647744 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0xa06ef60
2015-03-31 11:02:22.647745 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178649
2015-03-31 11:02:22.647746 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178637 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.647753 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178637 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.647760 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3aed70]
2015-03-31 11:02:22.647765 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.647767 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295218 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647780 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295220
2015-03-31 11:02:22.647781 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295208 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.647790 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295220 (current v 3295208)
2015-03-31 11:02:22.647791 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178637 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=26+1578,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.647798 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.647800 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2a626e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295220 v=3295209 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:22.647809 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa068420
2015-03-31 11:02:22.647811 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295221
2015-03-31 11:02:22.647812 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647823 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647834 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647845 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.647846 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.98121 < 1, stopping
2015-03-31 11:02:22.647850 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.647861 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.647864 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295208 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.647869 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31309} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.647883 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3aed70]
2015-03-31 11:02:22.647889 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.647892 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647899 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.647901 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647909 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647916 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647922 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647930 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647936 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647943 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647949 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647955 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647961 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647968 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647975 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647982 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647988 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.647995 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3aed70]
2015-03-31 11:02:22.648005 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.648006 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.648008 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3aed70 tracedn 0x676e560
2015-03-31 11:02:22.648011 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2a626e00) [dentry #1/test_small/small5/blarg10023 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) pv=178648 v=177630 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e560]
2015-03-31 11:02:22.648017 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407435 create #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.648026 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.648029 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31310
2015-03-31 11:02:22.648031 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31310 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.648037 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.648039 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.648041 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) including xattrs version 0
2015-03-31 11:02:22.648079 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648107 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648121 7fbe406af700  5 mds.0.log _submit_thread 5419544708~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.648122 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648148 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648162 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648174 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648185 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648196 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648206 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648218 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648229 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648240 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648251 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648261 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648458 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407436 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.648478 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407436 cr=0x9ae1e00)
2015-03-31 11:02:22.648481 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407436 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.648484 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407436 cr=0x9ae1e00) #1000006b2ae
2015-03-31 11:02:22.648486 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ae snap head
2015-03-31 11:02:22.648487 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.648488 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3aed70]
2015-03-31 11:02:22.648501 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407436 cr=0x9ae1e00)
2015-03-31 11:02:22.648504 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648519 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648529 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648540 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3aed70]
2015-03-31 11:02:22.648550 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648564 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.648578 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648587 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.648598 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648608 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.648618 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3aed70]
2015-03-31 11:02:22.648628 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_pin by 0x2b0c2300 on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3aed70] now 1+0
2015-03-31 11:02:22.648638 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648653 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648667 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648678 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648688 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648699 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648719 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.648739 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.648755 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407436 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.648759 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407436 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.648769 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.648772 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.648777 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.648779 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.648796 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407436 cr=0x9ae1e00)
2015-03-31 11:02:22.648815 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648831 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.648845 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648855 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.648865 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648875 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.648886 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.648907 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.648917 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.648932 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.648942 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.648952 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_unpin by 0x2b0c2300 on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3aed70] now 0+0
2015-03-31 11:02:22.649175 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407437 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.649191 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407437 cr=0x9ae3c00)
2015-03-31 11:02:22.649193 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407437 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.649196 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407437 cr=0x9ae3c00) #1000006b2ae
2015-03-31 11:02:22.649198 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ae snap head
2015-03-31 11:02:22.649199 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.649200 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.649213 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407437 cr=0x9ae3c00)
2015-03-31 11:02:22.649216 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.649231 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.649241 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.649252 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.649261 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.649275 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.649289 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.649299 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.649310 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.649320 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.649330 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.649339 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_pin by 0x2b0c2300 on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70] now 1+0
2015-03-31 11:02:22.649349 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.649364 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.649378 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.649389 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.649400 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.649410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.649421 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.649440 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.649466 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407437 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.649471 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407437 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.649481 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.649483 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.649488 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.649490 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.649503 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407437 cr=0x9ae3c00)
2015-03-31 11:02:22.649522 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.649538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.649551 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.649562 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.649572 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.649593 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.649603 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.649614 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.649623 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.649638 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.649648 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.649659 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_unpin by 0x2b0c2300 on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3aed70] now 0+0
2015-03-31 11:02:22.653126 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e39 follows 0 op update
2015-03-31 11:02:22.653130 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653140 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.653142 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.653161 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.653162 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653168 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653176 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.653178 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653189 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653209 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653215 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.653216 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653225 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653228 7fbe406af700  5 mds.0.log _submit_thread 5419546348~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.653232 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653238 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653243 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653249 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653255 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653263 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.653272 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.693044 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407438 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693066 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407438 cr=0x9ae4380)
2015-03-31 11:02:22.693070 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407438 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693073 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407438 cr=0x9ae4380) #1000006b2ae
2015-03-31 11:02:22.693076 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ae snap head
2015-03-31 11:02:22.693078 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.693079 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.693096 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407438 cr=0x9ae4380)
2015-03-31 11:02:22.693099 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693116 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693141 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.693151 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693166 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.693181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693191 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.693202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693213 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.693223 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.693233 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_pin by 0x2b0c2300 on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70] now 1+0
2015-03-31 11:02:22.693244 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693259 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693273 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693284 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693295 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693315 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693337 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.693346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.693361 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407438 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693365 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407438 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693375 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.693378 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.693382 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.693384 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.693398 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407438 cr=0x9ae4380)
2015-03-31 11:02:22.693417 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693447 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.693509 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.693519 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.693534 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.693544 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.693555 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_unpin by 0x2b0c2300 on [inode 1000006b2ae [2,head] {#1000006b2ae /test_small/small5/blarg10023} auth v178648 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3aed70] now 0+0
2015-03-31 11:02:22.693593 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407439 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693610 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407439 cr=0x9ae5000)
2015-03-31 11:02:22.693613 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407439 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693616 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407439 cr=0x9ae5000) #1000006026a
2015-03-31 11:02:22.693618 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.693619 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.693620 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693634 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407439 cr=0x9ae5000)
2015-03-31 11:02:22.693636 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693651 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693661 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693672 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693686 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.693700 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693709 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.693720 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693730 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.693750 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693764 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693777 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693793 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693803 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693814 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693824 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693834 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31310} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693851 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407439 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693855 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407439 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.693866 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.693870 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.693873 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31311
2015-03-31 11:02:22.693875 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31311 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.693900 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407439 cr=0x9ae5000)
2015-03-31 11:02:22.693919 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693935 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.693949 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693959 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.693969 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693980 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.693991 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694011 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694021 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.694035 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.694046 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.694330 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407440 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.694351 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407440 cr=0x9ae2f80)
2015-03-31 11:02:22.694353 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407440 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.694357 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407440 cr=0x9ae2f80) #1000006026a
2015-03-31 11:02:22.694358 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.694360 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.694361 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694375 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407440 cr=0x9ae2f80)
2015-03-31 11:02:22.694378 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.694393 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.694403 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694414 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.694427 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:22.694441 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.694450 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:22.694461 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694471 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.694482 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.694496 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.694510 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.694521 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.694531 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694541 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694552 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694563 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694574 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=8+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:22.694594 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=8+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.694616 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x4e46060 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:22.694618 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=8+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709347 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.709353 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.709362 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.709364 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) mark_dirty [inode 1000006b2a9 [2,head] /test_small/small5/blarg10019 auth v178637 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.709380 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10019)  mark_dirty [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178638 v=177620 ap=2+0 inode=0x3f479138 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00]
2015-03-31 11:02:22.709389 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178638 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 26=26+0) hs=27+1577,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178638
2015-03-31 11:02:22.709400 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) mark_dirty_parent
2015-03-31 11:02:22.709401 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295208 pv3295220 ap=8+1 f(v0 m2015-03-31 11:02:59.000000 26=26+0) n(v1 rc2015-03-31 11:02:59.000000 27=26+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709416 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295208 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.709421 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295210 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382329=382322+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295210
2015-03-31 11:02:22.709432 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178639 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 27=27+0) hs=27+1577,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178639
2015-03-31 11:02:22.709440 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295211 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382330=382323+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295211
2015-03-31 11:02:22.709450 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2a9 [2,head] /test_small/small5/blarg10019 auth v178638 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f479138]
2015-03-31 11:02:22.709461 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.709463 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27500 client_caps(grant ino 1000006b2a9 1851486 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.709486 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178638 ap=2+0 inode=0x3f479138 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00]
2015-03-31 11:02:22.709496 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407385 create #1000006026a/blarg10019 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.709508 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2a9
2015-03-31 11:02:22.709512 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178638 ap=2+0 inode=0x3f479138 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00]
2015-03-31 11:02:22.709522 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178638 ap=2+0 inode=0x3f479138 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00]
2015-03-31 11:02:22.709528 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178638 ap=2+0 inode=0x3f479138 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00]
2015-03-31 11:02:22.709533 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10019) auth_unpin by 0x676dd58 on [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178638 ap=1+0 inode=0x3f479138 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00] now 1+0
2015-03-31 11:02:22.709541 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178638 ap=1+0 inode=0x3f479138 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00]
2015-03-31 11:02:22.709547 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.709563 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295210 pv3295220 ap=8+1 f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 28=27+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709598 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295210 pv3295220 ap=8+1 f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 28=27+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709620 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295210 pv3295220 ap=8+1 f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 28=27+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709630 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178638 ap=1+0 inode=0x3f479138 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dc00]
2015-03-31 11:02:22.709646 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407385 cr=0x968a300)
2015-03-31 11:02:22.709654 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53468 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:22.709671 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:22.709682 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242ca800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295211 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382330=382323+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:22.709692 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242ca800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178639 cv=170705/170705 ap=5+11+11 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 27=27+0) hs=27+1577,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 11
2015-03-31 11:02:22.709700 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295210 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 28=27+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:22.709712 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10019) auth_unpin by 0x242ca800 on [dentry #1/test_small/small5/blarg10019 [2,head] auth (dn sync l=1) (dversion lock) v=178638 inode=0x3f479138 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676dc00] now 0+0
2015-03-31 11:02:22.709734 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.709736 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.709740 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.709741 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) mark_dirty [inode 1000006b2aa [2,head] /test_small/small5/blarg1002 auth v178639 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.709752 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1002)  mark_dirty [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178640 v=177622 ap=2+0 inode=0x3f3ec7d8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0]
2015-03-31 11:02:22.709771 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178640 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 27=27+0) hs=28+1576,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178640
2015-03-31 11:02:22.709780 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) mark_dirty_parent
2015-03-31 11:02:22.709781 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295210 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 27=27+0) n(v1 rc2015-03-31 11:02:59.000000 28=27+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709812 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295210 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.709816 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295212 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382330=382323+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295212
2015-03-31 11:02:22.709826 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178641 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 28=28+0) hs=28+1576,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178641
2015-03-31 11:02:22.709834 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295213 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382331=382324+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295213
2015-03-31 11:02:22.709843 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2aa [2,head] /test_small/small5/blarg1002 auth v178640 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ec7d8]
2015-03-31 11:02:22.709853 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.709856 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27501 client_caps(grant ino 1000006b2aa 1851487 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.709875 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178640 ap=2+0 inode=0x3f3ec7d8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0]
2015-03-31 11:02:22.709884 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407395 create #1000006026a/blarg1002 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.709895 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2aa
2015-03-31 11:02:22.709898 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178640 ap=2+0 inode=0x3f3ec7d8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0]
2015-03-31 11:02:22.709906 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178640 ap=2+0 inode=0x3f3ec7d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0]
2015-03-31 11:02:22.709912 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178640 ap=2+0 inode=0x3f3ec7d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0]
2015-03-31 11:02:22.709917 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1002) auth_unpin by 0x676df38 on [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178640 ap=1+0 inode=0x3f3ec7d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0] now 1+0
2015-03-31 11:02:22.709924 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178640 ap=1+0 inode=0x3f3ec7d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0]
2015-03-31 11:02:22.709929 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.709943 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295212 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 29=28+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709957 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295212 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 29=28+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709969 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295212 pv3295220 ap=7+1 f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 29=28+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.709980 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178640 ap=1+0 inode=0x3f3ec7d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dde0]
2015-03-31 11:02:22.709994 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407395 cr=0x25e3f080)
2015-03-31 11:02:22.710002 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53468 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:22.710019 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:22.710031 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2a623200 on [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295213 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382331=382324+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:22.710041 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2a623200 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178641 cv=170705/170705 ap=4+9+9 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 28=28+0) hs=28+1576,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 9
2015-03-31 11:02:22.710049 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295212 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 29=28+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:22.710061 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1002) auth_unpin by 0x2a623200 on [dentry #1/test_small/small5/blarg1002 [2,head] auth (dn sync l=1) (dversion lock) v=178640 inode=0x3f3ec7d8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676dde0] now 0+0
2015-03-31 11:02:22.710094 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.710096 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.710112 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.710113 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) mark_dirty [inode 1000006b2ab [2,head] /test_small/small5/blarg10020 auth v178641 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.710125 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10020)  mark_dirty [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178642 v=177624 ap=2+0 inode=0x3f485c08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0]
2015-03-31 11:02:22.710132 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178642 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 28=28+0) hs=29+1575,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178642
2015-03-31 11:02:22.710141 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) mark_dirty_parent
2015-03-31 11:02:22.710142 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295212 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 28=28+0) n(v1 rc2015-03-31 11:02:59.000000 29=28+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710155 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295212 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.710159 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295214 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382331=382324+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295214
2015-03-31 11:02:22.710169 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178643 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 29=29+0) hs=29+1575,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178643
2015-03-31 11:02:22.710177 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295215 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382332=382325+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295215
2015-03-31 11:02:22.710186 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ab [2,head] /test_small/small5/blarg10020 auth v178642 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f485c08]
2015-03-31 11:02:22.710196 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.710198 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27502 client_caps(grant ino 1000006b2ab 1851488 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.710216 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178642 ap=2+0 inode=0x3f485c08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0]
2015-03-31 11:02:22.710225 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407405 create #1000006026a/blarg10020 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.710234 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ab
2015-03-31 11:02:22.710237 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178642 ap=2+0 inode=0x3f485c08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0]
2015-03-31 11:02:22.710246 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178642 ap=2+0 inode=0x3f485c08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0]
2015-03-31 11:02:22.710252 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178642 ap=2+0 inode=0x3f485c08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0]
2015-03-31 11:02:22.710257 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10020) auth_unpin by 0x676e118 on [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178642 ap=1+0 inode=0x3f485c08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0] now 1+0
2015-03-31 11:02:22.710264 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178642 ap=1+0 inode=0x3f485c08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0]
2015-03-31 11:02:22.710268 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.710282 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295214 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 30=29+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710295 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295214 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 30=29+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710307 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295214 pv3295220 ap=6+1 f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 30=29+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710317 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178642 ap=1+0 inode=0x3f485c08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676dfc0]
2015-03-31 11:02:22.710332 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407405 cr=0x51d9e00)
2015-03-31 11:02:22.710340 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53468 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:22.710357 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:22.710368 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd2300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295215 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382332=382325+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:22.710378 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd2300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178643 cv=170705/170705 ap=3+7+7 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 29=29+0) hs=29+1575,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 7
2015-03-31 11:02:22.710396 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295214 pv3295220 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 30=29+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:22.710408 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10020) auth_unpin by 0x23dd2300 on [dentry #1/test_small/small5/blarg10020 [2,head] auth (dn sync l=1) (dversion lock) v=178642 inode=0x3f485c08 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676dfc0] now 0+0
2015-03-31 11:02:22.710428 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.710430 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.710446 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.710447 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) mark_dirty [inode 1000006b2ac [2,head] /test_small/small5/blarg10021 auth v178643 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.710458 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10021)  mark_dirty [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178644 v=177626 ap=2+0 inode=0x3f4e68c8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0]
2015-03-31 11:02:22.710465 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178644 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 29=29+0) hs=30+1574,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178644
2015-03-31 11:02:22.710474 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) mark_dirty_parent
2015-03-31 11:02:22.710475 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295214 pv3295220 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 29=29+0) n(v1 rc2015-03-31 11:02:59.000000 30=29+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710487 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295214 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.710491 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295216 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382332=382325+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295216
2015-03-31 11:02:22.710501 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178645 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 30=30+0) hs=30+1574,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178645
2015-03-31 11:02:22.710509 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295217 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382333=382326+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295217
2015-03-31 11:02:22.710518 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ac [2,head] /test_small/small5/blarg10021 auth v178644 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4e68c8]
2015-03-31 11:02:22.710528 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.710530 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27503 client_caps(grant ino 1000006b2ac 1851489 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.710549 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178644 ap=2+0 inode=0x3f4e68c8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0]
2015-03-31 11:02:22.710557 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407415 create #1000006026a/blarg10021 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.710568 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ac
2015-03-31 11:02:22.710570 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178644 ap=2+0 inode=0x3f4e68c8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0]
2015-03-31 11:02:22.710578 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178644 ap=2+0 inode=0x3f4e68c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0]
2015-03-31 11:02:22.710585 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178644 ap=2+0 inode=0x3f4e68c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0]
2015-03-31 11:02:22.710590 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10021) auth_unpin by 0x676e2f8 on [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178644 ap=1+0 inode=0x3f4e68c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0] now 1+0
2015-03-31 11:02:22.710597 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178644 ap=1+0 inode=0x3f4e68c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0]
2015-03-31 11:02:22.710602 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.710615 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295216 pv3295220 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 31=30+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710628 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295216 pv3295220 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 31=30+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710640 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295216 pv3295220 ap=5+1 f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 31=30+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710651 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178644 ap=1+0 inode=0x3f4e68c8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e1a0]
2015-03-31 11:02:22.710665 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407415 cr=0x929a080)
2015-03-31 11:02:22.710673 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53468 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.710689 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.710700 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cdf00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295217 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382333=382326+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:22.710711 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cdf00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178645 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 30=30+0) hs=30+1574,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:22.710729 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295216 pv3295220 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 31=30+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:22.710740 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10021) auth_unpin by 0x242cdf00 on [dentry #1/test_small/small5/blarg10021 [2,head] auth (dn sync l=1) (dversion lock) v=178644 inode=0x3f4e68c8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676e1a0] now 0+0
2015-03-31 11:02:22.710761 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.710763 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.710778 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.710780 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) mark_dirty [inode 1000006b2ad [2,head] /test_small/small5/blarg10022 auth v178645 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.710795 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10022)  mark_dirty [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178646 v=177628 ap=2+0 inode=0x3f3ae438 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380]
2015-03-31 11:02:22.710802 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178646 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 30=30+0) hs=31+1573,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178646
2015-03-31 11:02:22.710811 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) mark_dirty_parent
2015-03-31 11:02:22.710813 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295216 pv3295220 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 30=30+0) n(v1 rc2015-03-31 11:02:59.000000 31=30+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710825 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295216 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.710829 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295218 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382333=382326+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295218
2015-03-31 11:02:22.710839 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178647 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 31=31+0) hs=31+1573,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178647
2015-03-31 11:02:22.710847 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295219 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382334=382327+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295219
2015-03-31 11:02:22.710856 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ad [2,head] /test_small/small5/blarg10022 auth v178646 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ae438]
2015-03-31 11:02:22.710865 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.710868 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27504 client_caps(grant ino 1000006b2ad 1851490 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.710887 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178646 ap=2+0 inode=0x3f3ae438 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380]
2015-03-31 11:02:22.710895 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407425 create #1000006026a/blarg10022 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.710906 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ad
2015-03-31 11:02:22.710908 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178646 ap=2+0 inode=0x3f3ae438 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380]
2015-03-31 11:02:22.710916 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178646 ap=2+0 inode=0x3f3ae438 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380]
2015-03-31 11:02:22.710922 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178646 ap=2+0 inode=0x3f3ae438 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380]
2015-03-31 11:02:22.710927 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10022) auth_unpin by 0x676e4d8 on [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178646 ap=1+0 inode=0x3f3ae438 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380] now 1+0
2015-03-31 11:02:22.710933 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178646 ap=1+0 inode=0x3f3ae438 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380]
2015-03-31 11:02:22.710939 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.710952 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295218 pv3295220 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 32=31+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710965 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295218 pv3295220 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 32=31+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710976 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295218 pv3295220 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 32=31+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.710987 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178646 ap=1+0 inode=0x3f3ae438 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e380]
2015-03-31 11:02:22.711001 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407425 cr=0x9f7d280)
2015-03-31 11:02:22.711009 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.711025 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.711036 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2b0c2800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295219 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382334=382327+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:22.711047 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2b0c2800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178647 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 31=31+0) hs=31+1573,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:22.711065 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295218 pv3295220 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 32=31+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.711076 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10022) auth_unpin by 0x2b0c2800 on [dentry #1/test_small/small5/blarg10022 [2,head] auth (dn sync l=1) (dversion lock) v=178646 inode=0x3f3ae438 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676e380] now 0+0
2015-03-31 11:02:22.711097 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.711099 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.711114 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.711115 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) mark_dirty [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178647 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.711126 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10023)  mark_dirty [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178648 v=177630 ap=2+0 inode=0x3f3aed70 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560]
2015-03-31 11:02:22.711133 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178648 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 31=31+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178648
2015-03-31 11:02:22.711142 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) mark_dirty_parent
2015-03-31 11:02:22.711143 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295218 pv3295220 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 31=31+0) n(v1 rc2015-03-31 11:02:59.000000 32=31+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.711156 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295220 v=3295218 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.711160 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295220 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382334=382327+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295220
2015-03-31 11:02:22.711170 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178649 v=178649 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178649
2015-03-31 11:02:22.711176 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295221 v=3295221 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382335=382328+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295221
2015-03-31 11:02:22.711184 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.711194 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.711197 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27505 client_caps(grant ino 1000006b2ae 1851491 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.711216 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178648 ap=2+0 inode=0x3f3aed70 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560]
2015-03-31 11:02:22.711224 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407435 create #1000006026a/blarg10023 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.711235 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ae
2015-03-31 11:02:22.711236 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178648 ap=2+0 inode=0x3f3aed70 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560]
2015-03-31 11:02:22.711244 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178648 ap=2+0 inode=0x3f3aed70 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560]
2015-03-31 11:02:22.711250 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178648 ap=2+0 inode=0x3f3aed70 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560]
2015-03-31 11:02:22.711255 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10023) auth_unpin by 0x676e6b8 on [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178648 ap=1+0 inode=0x3f3aed70 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560] now 1+0
2015-03-31 11:02:22.711262 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178648 ap=1+0 inode=0x3f3aed70 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560]
2015-03-31 11:02:22.711266 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.711280 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.711292 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.711305 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.711316 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.711327 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:22.711329 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.711340 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.711351 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:22.711352 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407440 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.711356 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407440 cr=0x9ae2f80) #1000006026a
2015-03-31 11:02:22.711358 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.711360 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.711361 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711372 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407440 cr=0x9ae2f80)
2015-03-31 11:02:22.711375 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.711400 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.711410 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711419 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.711433 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.711443 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711453 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.711467 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.711477 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711487 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711497 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711519 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711542 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711551 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711560 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711569 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711579 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31311} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711595 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407440 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.711600 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407440 getattr pAsLsXsFs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.711609 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.711612 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.711616 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31312
2015-03-31 11:02:22.711618 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31312 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.711630 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407440 cr=0x9ae2f80)
2015-03-31 11:02:22.711649 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.711664 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.711678 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.711689 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.711699 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711710 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711720 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711741 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711751 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711761 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711773 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711787 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711797 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711806 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711816 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.711830 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.711840 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.711866 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711878 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711888 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711897 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178648 ap=1+0 inode=0x3f3aed70 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e560]
2015-03-31 11:02:22.711906 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.711928 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407435 cr=0x9ae4100)
2015-03-31 11:02:22.711936 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.711951 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.711961 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2a626e00 on [dir 10000000000 /test_small/ [2,head] auth v=3295221 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382335=382328+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:22.711972 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2a626e00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178649 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:22.711979 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.711990 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10023) auth_unpin by 0x2a626e00 on [dentry #1/test_small/small5/blarg10023 [2,head] auth (dn sync l=1) (dversion lock) v=178648 inode=0x3f3aed70 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676e560] now 0+0
2015-03-31 11:02:22.712039 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e39 follows 0 op update
2015-03-31 11:02:22.712048 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712063 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.712065 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.712085 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.712086 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712094 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712102 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.712105 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712110 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712118 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712125 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.712126 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712133 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712140 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712145 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712151 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.712153 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.712154 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e39 [2,head] /test_small/small1/blarg10023 auth v136864 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5eb8]
2015-03-31 11:02:22.712161 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.712180 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407441 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712201 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407441 cr=0x9ae2a80)
2015-03-31 11:02:22.712203 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407441 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712207 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407441 cr=0x9ae2a80) #1000006b2ae
2015-03-31 11:02:22.712209 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ae snap head
2015-03-31 11:02:22.712210 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.712211 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.712225 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407441 cr=0x9ae2a80)
2015-03-31 11:02:22.712228 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.712244 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.712255 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.712266 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.712276 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.712301 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.712316 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.712326 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.712337 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.712346 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.712368 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3aed70]
2015-03-31 11:02:22.712376 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_pin by 0x24afa300 on [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3aed70] now 1+0
2015-03-31 11:02:22.712385 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.712398 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.712411 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.712421 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.712431 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712440 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712449 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.712458 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.712474 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407441 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712478 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407441 getattr Xs #1000006b2ae 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712489 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.712493 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.712497 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:22.712500 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.712514 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407441 cr=0x9ae2a80)
2015-03-31 11:02:22.712533 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.712550 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.712564 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.712575 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.712585 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712595 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712605 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.712625 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3aed70]
2015-03-31 11:02:22.712634 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.712650 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.712661 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.712671 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) auth_unpin by 0x24afa300 on [inode 1000006b2ae [2,head] /test_small/small5/blarg10023 auth v178648 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3aed70] now 0+0
2015-03-31 11:02:22.712708 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407442 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712727 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407442 cr=0x9ae5f00)
2015-03-31 11:02:22.712730 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407442 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712734 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407442 cr=0x9ae5f00) #1000006026a
2015-03-31 11:02:22.712736 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.712737 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.712738 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.712750 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407442 cr=0x9ae5f00)
2015-03-31 11:02:22.712752 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.712767 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.712777 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.712791 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.712805 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.712819 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.712829 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.712840 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.712849 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.712869 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.712883 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.712896 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.712906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.712916 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712935 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712945 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31312} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.712961 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407442 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712965 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407442 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.712976 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.712979 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.712983 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31313
2015-03-31 11:02:22.712985 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31313 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.713011 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407442 cr=0x9ae5f00)
2015-03-31 11:02:22.713018 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.713044 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.713058 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.713068 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.713077 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.713088 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.713098 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.713107 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.713128 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.713141 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.713151 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.713290 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407443 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.713309 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407443 cr=0xa250c80)
2015-03-31 11:02:22.713312 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407443 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.713316 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407443 cr=0xa250c80) #10000004e3c
2015-03-31 11:02:22.713318 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3c snap head
2015-03-31 11:02:22.713320 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.713321 7fbe462be700 10 mds.0.server ref is [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.713331 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407443 cr=0xa250c80)
2015-03-31 11:02:22.713333 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.713348 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.713359 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.713368 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.713374 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.713388 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.713402 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.713412 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.713422 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.713431 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.713440 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.713445 7fbe462be700 10 mds.0.cache.ino(10000004e3c) auth_pin by 0x24afa300 on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580] now 1+0
2015-03-31 11:02:22.713453 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.713467 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.713481 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.713491 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.713502 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.713511 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.713520 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713527 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713534 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713551 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713576 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407443 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.713580 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407443 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.713590 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.713593 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.713596 7fbe462be700 10 mds.0.cache.ino(10000004e3c) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.713598 7fbe462be700 10 mds.0.cache.ino(10000004e3c) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.713611 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407443 cr=0xa250c80)
2015-03-31 11:02:22.713630 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.713646 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.713660 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.713670 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.713680 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.713689 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.713698 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713704 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713723 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713729 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.713735 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.713749 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.713760 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.713769 7fbe462be700 10 mds.0.cache.ino(10000004e3c) auth_unpin by 0x24afa300 on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c5580] now 0+0
2015-03-31 11:02:22.713835 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407444 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.713853 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407444 cr=0xa253700)
2015-03-31 11:02:22.713855 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407444 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.713858 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407444 cr=0xa253700) #1000006026a
2015-03-31 11:02:22.713860 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.713861 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.713863 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.713876 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407444 cr=0xa253700)
2015-03-31 11:02:22.713878 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.713893 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.713903 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.713912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.713925 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.713940 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.713949 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.713960 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.713969 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.713980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.713993 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.714007 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.714016 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.714026 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714036 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714046 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714056 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31313} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714073 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407444 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.714076 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407444 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.714097 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.714100 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.714103 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31314
2015-03-31 11:02:22.714107 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31314 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.714120 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407444 cr=0xa253700)
2015-03-31 11:02:22.714139 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.714155 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.714170 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.714181 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.714191 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714201 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.714231 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.714245 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.714255 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.714370 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407445 lookup #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.714386 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407445 cr=0xa251180)
2015-03-31 11:02:22.714389 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407445 lookup #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.714392 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407445 cr=0xa251180) #1000006026a/blarg10024
2015-03-31 11:02:22.714394 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.714396 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10024 [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock) v=177632 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e740]
2015-03-31 11:02:22.714405 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.714406 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407445 lookup #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.714415 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.714428 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407445 cr=0xa251180)
2015-03-31 11:02:22.754041 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407446 lookup #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754061 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407446 cr=0xa256900)
2015-03-31 11:02:22.754066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407446 lookup #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754069 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407446 cr=0xa256900) #1000006026a/blarg10024
2015-03-31 11:02:22.754071 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.754074 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10024 [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock) v=177632 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e740]
2015-03-31 11:02:22.754083 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.754085 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407446 lookup #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754098 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.754112 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407446 cr=0xa256900)
2015-03-31 11:02:22.754145 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407447 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754161 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407447 cr=0x3b08f00)
2015-03-31 11:02:22.754162 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407447 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754165 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407447 cr=0x3b08f00) #1000006026a
2015-03-31 11:02:22.754167 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.754168 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.754169 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.754186 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407447 cr=0x3b08f00)
2015-03-31 11:02:22.754189 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.754206 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.754217 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.754227 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.754241 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.754256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.754266 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.754277 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.754286 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.754297 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754326 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754336 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754347 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754357 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754367 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754378 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31314} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754394 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407447 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754398 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407447 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754409 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.754412 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.754417 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31315
2015-03-31 11:02:22.754419 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31315 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.754459 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407447 cr=0x3b08f00)
2015-03-31 11:02:22.754478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754505 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754542 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754552 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754562 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754572 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754582 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.754596 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.754607 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.754642 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407448 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754660 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407448 cr=0x3b0e180)
2015-03-31 11:02:22.754662 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407448 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754665 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407448 cr=0x3b0e180) #1000006026a
2015-03-31 11:02:22.754667 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.754668 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.754669 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.754682 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407448 cr=0x3b0e180)
2015-03-31 11:02:22.754684 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.754698 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.754708 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.754717 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.754731 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.754745 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.754755 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.754765 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.754774 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.754792 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754806 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754820 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754830 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754861 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754871 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754880 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31315} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.754894 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407448 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754898 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407448 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.754908 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.754911 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.754914 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31316
2015-03-31 11:02:22.754916 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31316 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.754929 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407448 cr=0x3b0e180)
2015-03-31 11:02:22.754948 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754964 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.754978 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754989 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.754999 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.755020 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.755031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.755040 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.755050 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.755064 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.755074 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.755110 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407449 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.755127 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407449 cr=0x3b0be80)
2015-03-31 11:02:22.755130 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407449 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.755133 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407449 cr=0x3b0be80) #10000004e3c
2015-03-31 11:02:22.755135 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3c snap head
2015-03-31 11:02:22.755136 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.755137 7fbe462be700 10 mds.0.server ref is [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.755145 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407449 cr=0x3b0be80)
2015-03-31 11:02:22.755148 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.755163 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.755173 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.755182 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.755187 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.755200 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.755215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.755224 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.755235 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.755255 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.755264 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.755269 7fbe462be700 10 mds.0.cache.ino(10000004e3c) auth_pin by 0x24afa300 on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580] now 1+0
2015-03-31 11:02:22.755276 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.755290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.755303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.755313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.755323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.755332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.755341 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755348 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755366 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755372 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755384 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407449 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.755388 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407449 getattr Xs #10000004e3c 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.755396 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.755399 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.755402 7fbe462be700 10 mds.0.cache.ino(10000004e3c) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.755404 7fbe462be700 10 mds.0.cache.ino(10000004e3c) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.755416 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407449 cr=0x3b0be80)
2015-03-31 11:02:22.755435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.755451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.755465 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.755475 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.755485 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.755505 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.755515 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755522 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755529 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755536 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c5580]
2015-03-31 11:02:22.755541 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.755555 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.755566 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.755575 7fbe462be700 10 mds.0.cache.ino(10000004e3c) auth_unpin by 0x24afa300 on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c5580] now 0+0
2015-03-31 11:02:22.755833 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407450 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.755850 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407450 cr=0x236ba580)
2015-03-31 11:02:22.755852 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407450 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.755855 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407450 cr=0x236ba580) #1000006026a
2015-03-31 11:02:22.755857 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.755859 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.755860 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.755874 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407450 cr=0x236ba580)
2015-03-31 11:02:22.755876 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.755890 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.755900 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.755909 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.755923 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.755937 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.755946 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.755957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.755966 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.755976 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.755990 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.756004 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756014 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756033 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756043 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756053 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31316} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756069 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407450 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.756073 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407450 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.756094 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.756097 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.756113 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31317
2015-03-31 11:02:22.756115 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31317 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.756128 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407450 cr=0x236ba580)
2015-03-31 11:02:22.756147 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.756162 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.756176 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756186 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756207 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31317} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756217 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31317} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756227 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31317} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31317} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756246 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.756260 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.756270 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31317} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.756584 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407451 create #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.756601 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407451 cr=0x237c6b80)
2015-03-31 11:02:22.756604 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756618 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:22.756619 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756629 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.756630 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756641 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756651 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756660 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756669 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.756670 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407451 create #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.756673 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10024
2015-03-31 11:02:22.756675 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407451 cr=0x237c6b80) #1000006026a/blarg10024
2015-03-31 11:02:22.756677 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10024
2015-03-31 11:02:22.756678 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.756679 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.756681 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178649 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.756689 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178649 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.756695 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10024 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178649 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.756704 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407451 cr=0x237c6b80)
2015-03-31 11:02:22.756709 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.756724 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.756734 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756744 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock) v=177632 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e740]
2015-03-31 11:02:22.756751 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.756764 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.756778 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.756792 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.756803 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.756812 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.756831 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock) v=177632 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e740]
2015-03-31 11:02:22.756837 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10024) auth_pin by 0x24afa300 on [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock) v=177632 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740] now 1+0
2015-03-31 11:02:22.756856 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock) v=177632 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.756860 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177632 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.756866 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177632 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.756870 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177632 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.756876 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177632 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.756881 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10024) auth_pin by 0x676e898 on [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177632 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740] now 2+0
2015-03-31 11:02:22.756887 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x24afa300) [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dn xlock x=1 by 0x24afa300) (dversion lock w=1 last_client=708310) v=177632 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.756892 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.756907 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.756920 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.756933 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.756946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756955 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756964 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756973 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.756983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.756992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757000 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757009 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757019 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757029 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757038 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757047 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757056 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757065 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757074 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757093 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2af ([1000006b2b0~373], 883 left)
2015-03-31 11:02:22.757096 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.757097 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2af [2,head] #1000006b2af auth v1 s=0 n() (iversion lock) 0x3f38bb18]
2015-03-31 11:02:22.757101 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178650
2015-03-31 11:02:22.757103 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10024)  pre_dirty [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dn xlock x=1 by 0x24afa300) (dversion lock w=1 last_client=708310) pv=178650 v=177632 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.757110 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f38bb18]
2015-03-31 11:02:22.757117 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x24afa300 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178649 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:22.757126 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x28ed67d0
2015-03-31 11:02:22.757128 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178651
2015-03-31 11:02:22.757129 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178651 v=178649 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.757136 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178651 v=178649 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.757143 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f38bb18]
2015-03-31 11:02:22.757148 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.757150 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757163 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295222
2015-03-31 11:02:22.757164 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295222 v=3295220 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.757168 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295222 (current v 3295220)
2015-03-31 11:02:22.757169 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178651 v=178649 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=32+1572,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.757175 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.757177 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x24afa300 on [dir 10000000000 /test_small/ [2,head] auth v=3295221 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382335=382328+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:22.757185 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x47feeb0
2015-03-31 11:02:22.757187 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295223
2015-03-31 11:02:22.757188 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757199 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757209 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757220 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.757221 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.09059 ago, continuing
2015-03-31 11:02:22.757225 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120410 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757236 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120412
2015-03-31 11:02:22.757237 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120412 v=120410 ap=0+2 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:22.757241 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120412 (current v 120410)
2015-03-31 11:02:22.757242 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295223 v=3295221 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382335=382328+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:22.757249 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.757251 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x24afa300 on [dir 1 / [2,head] auth v=120411 cv=119911/119911 dir_auth=0 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:58.000000 b422190196760 382342=382333+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 2
2015-03-31 11:02:22.757261 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x3b6c830
2015-03-31 11:02:22.757262 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120413
2015-03-31 11:02:22.757263 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757278 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757291 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757301 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.757302 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.09059 ago, continuing
2015-03-31 11:02:22.757304 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53468 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757323 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120412 v=120410 ap=0+2 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:22.757328 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757339 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295222 v=3295220 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.757342 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31317} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757355 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f38bb18]
2015-03-31 11:02:22.757362 7fbe462be700 10 mds.0.cache.ino(1000006b2af) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.757365 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757372 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.757374 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757382 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757389 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757396 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757403 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757409 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757416 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757422 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757428 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757434 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757441 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757447 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757453 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757459 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757466 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38bb18]
2015-03-31 11:02:22.757475 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.757476 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.757478 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f38bb18 tracedn 0x676e740
2015-03-31 11:02:22.757480 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x24afa300) [dentry #1/test_small/small5/blarg10024 [2,head] auth NULL (dn xlock x=1 by 0x24afa300) (dversion lock w=1 last_client=708310) pv=178650 v=177632 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e740]
2015-03-31 11:02:22.757487 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407451 create #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.757495 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.757498 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31318
2015-03-31 11:02:22.757500 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31318 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.757506 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.757508 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.757511 7fbe462be700 10 mds.0.cache.ino(1000006b2af) including xattrs version 0
2015-03-31 11:02:22.757547 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757576 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757607 7fbe406af700  5 mds.0.log _submit_thread 5419547207~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:22.757591 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757626 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757641 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757653 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757664 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757675 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757686 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757698 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757709 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757720 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757731 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757741 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757807 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407452 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.757826 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407452 cr=0x237c1400)
2015-03-31 11:02:22.757829 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407452 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.757833 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407452 cr=0x237c1400) #1000006026a
2015-03-31 11:02:22.757835 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.757836 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.757837 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757850 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407452 cr=0x237c1400)
2015-03-31 11:02:22.757853 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757868 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757879 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757889 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757912 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.757927 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.757936 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.757947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.757957 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.757967 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757982 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.757996 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758006 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758017 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758027 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758037 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758048 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31318} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758087 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407452 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.758091 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407452 getattr Xs #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.758101 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.758104 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.758109 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31319
2015-03-31 11:02:22.758111 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31319 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.758123 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407452 cr=0x237c1400)
2015-03-31 11:02:22.758143 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758158 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758172 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758183 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758204 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758214 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758225 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758234 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758244 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.758258 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.758268 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.758340 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407453 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.758358 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407453 cr=0x237c5780)
2015-03-31 11:02:22.758360 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407453 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.758363 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407453 cr=0x237c5780) #1000006b2af
2015-03-31 11:02:22.758365 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2af snap head
2015-03-31 11:02:22.758366 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.758367 7fbe462be700 10 mds.0.server ref is [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f38bb18]
2015-03-31 11:02:22.758381 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407453 cr=0x237c5780)
2015-03-31 11:02:22.758384 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758399 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758410 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758421 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f38bb18]
2015-03-31 11:02:22.758430 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758444 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.758459 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758469 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.758480 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758490 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.758500 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f38bb18]
2015-03-31 11:02:22.758509 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_pin by 0x28ebe400 on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f38bb18] now 1+0
2015-03-31 11:02:22.758519 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758534 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758549 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758560 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758570 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758581 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758601 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.758623 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.758638 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407453 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.758642 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407453 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.758651 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.758654 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.758657 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.758660 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.758673 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407453 cr=0x237c5780)
2015-03-31 11:02:22.758692 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758708 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.758722 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758733 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.758755 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758765 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.758776 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.758791 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.758801 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.758817 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.758828 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.758838 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_unpin by 0x28ebe400 on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38bb18] now 0+0
2015-03-31 11:02:22.799049 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407454 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.799070 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407454 cr=0x237c4880)
2015-03-31 11:02:22.799074 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407454 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.799078 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407454 cr=0x237c4880) #1000006b2af
2015-03-31 11:02:22.799080 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2af snap head
2015-03-31 11:02:22.799081 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.799082 7fbe462be700 10 mds.0.server ref is [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.799099 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407454 cr=0x237c4880)
2015-03-31 11:02:22.799102 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799121 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799133 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799144 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.799155 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799170 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.799185 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799195 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.799207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799217 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.799228 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.799237 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_pin by 0x28ebe400 on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38bb18] now 1+0
2015-03-31 11:02:22.799248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799264 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799279 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799341 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.799351 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.799366 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407454 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.799370 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407454 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.799381 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.799384 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.799389 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.799391 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.799405 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407454 cr=0x237c4880)
2015-03-31 11:02:22.799424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799497 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.799518 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.799528 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.799544 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.799555 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.799565 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_unpin by 0x28ebe400 on [inode 1000006b2af [2,head] {#1000006b2af /test_small/small5/blarg10024} auth v178650 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38bb18] now 0+0
2015-03-31 11:02:22.799603 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407455 readdir #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.799620 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407455 cr=0x237c5280)
2015-03-31 11:02:22.799622 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407455 readdir #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.799625 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407455 cr=0x237c5280) #1000006026a
2015-03-31 11:02:22.799627 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.799628 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.799629 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799644 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407455 cr=0x237c5280)
2015-03-31 11:02:22.799647 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799662 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799673 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53468 pv53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799697 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.799711 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799721 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.799732 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799742 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.799762 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799794 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.799807 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799816 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.799824 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799833 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799842 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799852 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799862 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.799871 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.799881 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x9393300 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:22.799883 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.803905 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3c follows 0 op update
2015-03-31 11:02:22.803909 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.803919 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.803921 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.803940 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.803941 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.803948 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.803957 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.803959 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.803970 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.803990 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.803996 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.803998 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804006 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804009 7fbe406af700  5 mds.0.log _submit_thread 5419549997~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.804013 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804019 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804024 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804030 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804037 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804044 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.804054 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.815012 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:22.815018 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:22.815027 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:22.815032 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) mark_dirty [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178649 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.815047 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10024)  mark_dirty [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178650 v=177632 ap=2+0 inode=0x3f38bb18 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740]
2015-03-31 11:02:22.815056 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178651 v=178650 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 32=32+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178650
2015-03-31 11:02:22.815067 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) mark_dirty_parent
2015-03-31 11:02:22.815069 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295220 pv3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 32=32+0) n(v1 rc2015-03-31 11:02:59.000000 33=32+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.815084 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295222 v=3295220 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.815088 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295223 v=3295222 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382335=382328+7)/n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382325=382318+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295222
2015-03-31 11:02:22.815099 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120410 pv120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:58.000000 b422190090565 382326=382318+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.815112 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120412 v=120410 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:22.815115 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120413 v=120412 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:58.000000 b422190196760 382342=382333+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120412
2015-03-31 11:02:22.815126 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53468 pv53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815142 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178651 v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178651
2015-03-31 11:02:22.815150 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295223 v=3295223 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295223
2015-03-31 11:02:22.815158 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120413 v=120413 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:59.000000 b422190196760 382353=382344+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120413
2015-03-31 11:02:22.815168 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.815179 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:22.815182 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27506 client_caps(grant ino 1000006b2af 1851492 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:02:59.000000) v4
2015-03-31 11:02:22.815212 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178650 ap=2+0 inode=0x3f38bb18 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740]
2015-03-31 11:02:22.815233 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407451 create #1000006026a/blarg10024 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.815256 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2af
2015-03-31 11:02:22.815259 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178650 ap=2+0 inode=0x3f38bb18 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740]
2015-03-31 11:02:22.815278 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178650 ap=2+0 inode=0x3f38bb18 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740]
2015-03-31 11:02:22.815283 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178650 ap=2+0 inode=0x3f38bb18 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740]
2015-03-31 11:02:22.815288 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10024) auth_unpin by 0x676e898 on [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178650 ap=1+0 inode=0x3f38bb18 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740] now 1+0
2015-03-31 11:02:22.815295 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178650 ap=1+0 inode=0x3f38bb18 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740]
2015-03-31 11:02:22.815301 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815331 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815346 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815360 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.815373 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.815384 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.815394 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.815406 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.815417 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.815427 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:22.815430 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:22.815440 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.815451 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:22.815453 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407455 readdir #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.815456 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407455 cr=0x237c5280) #1000006026a
2015-03-31 11:02:22.815458 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.815459 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.815460 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815470 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407455 cr=0x237c5280)
2015-03-31 11:02:22.815484 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815499 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.815510 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815520 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815534 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.815545 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815555 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815570 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.815580 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815590 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815600 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815611 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815621 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31319} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.815637 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:22.815640 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178651 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.815648 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:22.815653 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:22.815656 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815661 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:22.815663 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815667 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:22.815670 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815674 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:22.815676 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815679 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:22.815681 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815685 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:22.815686 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815689 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.815691 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815694 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.815696 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815699 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.815701 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815704 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.815706 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815709 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.815711 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815714 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.815715 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815719 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:22.815720 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815724 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.815725 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815729 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.815730 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815747 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.815748 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815751 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.815763 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815766 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.815768 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815771 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.815773 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815775 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:22.815777 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815797 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.815799 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815808 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.815810 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815813 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.815814 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815817 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.815819 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815821 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.815823 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815825 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:22.815827 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815830 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.815831 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815834 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.815835 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815838 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.815839 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815842 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.815843 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815846 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.815848 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815850 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.815852 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815854 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.815856 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815903 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407455 readdir #1000006026a 2015-03-31 11:02:59.000000) v2 readdir num=33 bytes=9012 end=1 complete=1
2015-03-31 11:02:22.815909 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407455 readdir #1000006026a 2015-03-31 11:02:59.000000) v2 readdir num=33 end=1 complete=1
2015-03-31 11:02:22.815912 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407455 readdir #1000006026a 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.815922 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.815925 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.815928 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31320
2015-03-31 11:02:22.815930 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31320 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.815942 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407455 cr=0x237c5280)
2015-03-31 11:02:22.815961 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815977 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.815991 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.816001 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.816011 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816022 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816032 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816041 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816063 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816072 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816082 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.816096 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.816106 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.816130 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816141 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816151 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816161 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178650 ap=1+0 inode=0x3f38bb18 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e740]
2015-03-31 11:02:22.816170 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816192 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407451 cr=0x237c6b80)
2015-03-31 11:02:22.816200 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.816214 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.816225 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x24afa300 on [dir 1 / [2,head] auth v=120413 cv=119911/119911 dir_auth=0 ap=0+0+1 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:59.000000 b422190196760 382353=382344+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 1
2015-03-31 11:02:22.816235 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x24afa300 on [dir 10000000000 /test_small/ [2,head] auth v=3295223 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:22.816243 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x24afa300 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178651 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:22.816251 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.816261 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10024) auth_unpin by 0x24afa300 on [dentry #1/test_small/small5/blarg10024 [2,head] auth (dn sync l=1) (dversion lock) v=178650 inode=0x3f38bb18 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676e740] now 0+0
2015-03-31 11:02:22.816309 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407456 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.816341 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407456 cr=0x237c3480)
2015-03-31 11:02:22.816343 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407456 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.816347 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407456 cr=0x237c3480) #1000006b2af
2015-03-31 11:02:22.816349 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2af snap head
2015-03-31 11:02:22.816350 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.816352 7fbe462be700 10 mds.0.server ref is [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.816368 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407456 cr=0x237c3480)
2015-03-31 11:02:22.816372 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.816390 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.816402 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.816413 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.816423 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.816438 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.816454 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.816464 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.816476 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.816486 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.816507 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.816516 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_pin by 0x2367d000 on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18] now 1+0
2015-03-31 11:02:22.816527 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.816542 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.816556 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.816577 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.816586 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816596 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816617 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.816626 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.816641 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407456 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.816645 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407456 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.816656 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.816660 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.816664 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:22.816667 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.816682 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407456 cr=0x237c3480)
2015-03-31 11:02:22.816701 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.816717 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.816731 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.816741 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.816751 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816761 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.816770 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.816797 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.816807 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.816822 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.816832 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.816843 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_unpin by 0x2367d000 on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18] now 0+0
2015-03-31 11:02:22.818117 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3c follows 0 op update
2015-03-31 11:02:22.818121 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818132 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.818134 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.818152 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.818153 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818159 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818167 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.818170 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818175 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818182 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818187 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.818188 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818196 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818203 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818208 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818213 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.818214 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.818215 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e3c [2,head] /test_small/small1/blarg10024 auth v136866 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c5580]
2015-03-31 11:02:22.818222 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.858038 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407457 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.858060 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407457 cr=0x237c7a80)
2015-03-31 11:02:22.858064 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407457 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.858067 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407457 cr=0x237c7a80) #1000006b2af
2015-03-31 11:02:22.858069 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2af snap head
2015-03-31 11:02:22.858070 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.858071 7fbe462be700 10 mds.0.server ref is [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.858087 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407457 cr=0x237c7a80)
2015-03-31 11:02:22.858090 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.858107 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.858119 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.858129 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.858139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.858153 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.858168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.858178 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.858190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.858199 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.858210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18]
2015-03-31 11:02:22.858219 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_pin by 0x2367d000 on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18] now 1+0
2015-03-31 11:02:22.858229 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.858244 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.858259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.858278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.858300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.858309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.858318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.858327 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.858342 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407457 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.858346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407457 getattr Xs #1000006b2af 2015-03-31 11:02:59.000000) v2
2015-03-31 11:02:22.858357 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.858361 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.858365 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:22.858368 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.858382 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407457 cr=0x237c7a80)
2015-03-31 11:02:22.858401 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.858417 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.858432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.858442 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.858452 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.858462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.858472 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.858493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38bb18]
2015-03-31 11:02:22.858503 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.858518 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.858530 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=0+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:22.858540 7fbe462be700 10 mds.0.cache.ino(1000006b2af) auth_unpin by 0x2367d000 on [inode 1000006b2af [2,head] /test_small/small5/blarg10024 auth v178650 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38bb18] now 0+0
2015-03-31 11:02:22.858894 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407458 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.858915 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407458 cr=0x237c5500)
2015-03-31 11:02:22.858917 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407458 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.858921 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407458 cr=0x237c5500) #10000004e42
2015-03-31 11:02:22.858922 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e42 snap head
2015-03-31 11:02:22.858924 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.858925 7fbe462be700 10 mds.0.server ref is [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.858939 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407458 cr=0x237c5500)
2015-03-31 11:02:22.858943 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.858960 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.858971 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.858981 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.858987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.859001 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.859015 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.859025 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.859036 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.859045 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.859055 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.859061 7fbe462be700 10 mds.0.cache.ino(10000004e42) auth_pin by 0x2367d000 on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48] now 1+0
2015-03-31 11:02:22.859069 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.859083 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.859097 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.859118 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.859128 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.859137 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.859157 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859164 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859169 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859174 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859188 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407458 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.859192 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407458 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.859203 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.859206 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.859210 7fbe462be700 10 mds.0.cache.ino(10000004e42) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.859213 7fbe462be700 10 mds.0.cache.ino(10000004e42) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.859226 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407458 cr=0x237c5500)
2015-03-31 11:02:22.859245 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.859262 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.859276 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.859286 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.859296 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.859306 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.859315 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859332 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859339 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859346 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.859351 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.859366 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.859377 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.859386 7fbe462be700 10 mds.0.cache.ino(10000004e42) auth_unpin by 0x2367d000 on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c4c48] now 0+0
2015-03-31 11:02:22.859769 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407459 lookup #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.859796 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407459 cr=0x237c5f00)
2015-03-31 11:02:22.859798 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407459 lookup #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.859801 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407459 cr=0x237c5f00) #1000006026a/blarg10025
2015-03-31 11:02:22.859804 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.859806 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10025 [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock) v=177634 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e920]
2015-03-31 11:02:22.859815 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.859817 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407459 lookup #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.859829 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.859842 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407459 cr=0x237c5f00)
2015-03-31 11:02:22.860313 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407460 lookup #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.860334 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407460 cr=0x237c2300)
2015-03-31 11:02:22.860336 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407460 lookup #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.860339 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407460 cr=0x237c2300) #1000006026a/blarg10025
2015-03-31 11:02:22.860341 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.860344 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10025 [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock) v=177634 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e920]
2015-03-31 11:02:22.860352 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.860354 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407460 lookup #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.860364 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.860376 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407460 cr=0x237c2300)
2015-03-31 11:02:22.860869 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407461 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.860891 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407461 cr=0x237c6400)
2015-03-31 11:02:22.860893 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407461 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.860897 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407461 cr=0x237c6400) #10000004e42
2015-03-31 11:02:22.860899 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e42 snap head
2015-03-31 11:02:22.860900 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.860901 7fbe462be700 10 mds.0.server ref is [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.860914 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407461 cr=0x237c6400)
2015-03-31 11:02:22.860917 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.860934 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.860945 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.860955 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.860961 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.860976 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.860990 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.861000 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.861011 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.861020 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.861030 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.861037 7fbe462be700 10 mds.0.cache.ino(10000004e42) auth_pin by 0x2367d000 on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48] now 1+0
2015-03-31 11:02:22.861044 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.861059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.861074 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.861094 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.861104 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.861124 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.861133 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861139 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861145 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861151 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861164 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407461 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.861168 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407461 getattr Xs #10000004e42 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.861178 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.861182 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.861186 7fbe462be700 10 mds.0.cache.ino(10000004e42) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.861188 7fbe462be700 10 mds.0.cache.ino(10000004e42) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.861202 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407461 cr=0x237c6400)
2015-03-31 11:02:22.861221 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.861237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.861252 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.861262 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.861272 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.861281 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.861290 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861308 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861315 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861321 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c4c48]
2015-03-31 11:02:22.861327 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.861341 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.861352 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.861361 7fbe462be700 10 mds.0.cache.ino(10000004e42) auth_unpin by 0x2367d000 on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c4c48] now 0+0
2015-03-31 11:02:22.861739 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407462 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.861762 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407462 cr=0x4a0c100)
2015-03-31 11:02:22.861766 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407462 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.861769 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407462 cr=0x4a0c100) #1000006026a
2015-03-31 11:02:22.861771 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.861773 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.861774 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.861796 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407462 cr=0x4a0c100)
2015-03-31 11:02:22.861799 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.861815 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.861826 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.861836 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.861850 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.861864 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.861874 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.861885 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.861895 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.861906 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.861920 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.861935 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.861946 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.861966 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.861987 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.861996 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.862006 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31320} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.862022 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407462 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.862026 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407462 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.862036 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.862040 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.862044 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31321
2015-03-31 11:02:22.862046 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31321 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.862061 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407462 cr=0x4a0c100)
2015-03-31 11:02:22.862080 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.862107 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.862122 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.862133 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.862143 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31321} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.862154 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31321} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.862175 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31321} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.862184 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31321} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.862195 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:22.862209 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:22.862220 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31321} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:22.862609 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407463 create #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.862630 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407463 cr=0x4a0a080)
2015-03-31 11:02:22.862634 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862651 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:22.862653 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862665 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.862666 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862678 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862688 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862698 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862707 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.862709 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407463 create #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.862712 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10025
2015-03-31 11:02:22.862713 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407463 cr=0x4a0a080) #1000006026a/blarg10025
2015-03-31 11:02:22.862715 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10025
2015-03-31 11:02:22.862717 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.862718 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.862719 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178651 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.862727 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178651 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.862734 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10025 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178651 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:22.862743 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407463 cr=0x4a0a080)
2015-03-31 11:02:22.862750 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.862766 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.862776 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862792 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock) v=177634 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e920]
2015-03-31 11:02:22.862798 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:22.862812 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.862836 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:22.862857 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:22.862868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:22.862876 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+0 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:22.862885 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock) v=177634 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676e920]
2015-03-31 11:02:22.862890 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10025) auth_pin by 0x2367d000 on [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock) v=177634 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920] now 1+0
2015-03-31 11:02:22.862895 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock) v=177634 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.862901 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177634 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.862907 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177634 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.862911 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177634 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.862916 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177634 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.862922 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10025) auth_pin by 0x676ea78 on [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177634 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920] now 2+0
2015-03-31 11:02:22.862927 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367d000) [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) v=177634 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.862932 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.862947 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.862960 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.862973 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.862986 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.862996 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863005 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863014 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863033 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863042 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863051 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863061 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863071 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863080 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863090 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863099 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863109 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863118 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863136 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b0 ([1000006b2b1~372], 882 left)
2015-03-31 11:02:22.863139 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.863141 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b0 [2,head] #1000006b2b0 auth v1 s=0 n() (iversion lock) 0x3f3c54f8]
2015-03-31 11:02:22.863145 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178652
2015-03-31 11:02:22.863146 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10025)  pre_dirty [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) pv=178652 v=177634 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.863154 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3c54f8]
2015-03-31 11:02:22.863161 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367d000 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:22.863170 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc68bb0
2015-03-31 11:02:22.863172 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178653
2015-03-31 11:02:22.863173 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178653 v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.863179 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178653 v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.863185 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3c54f8]
2015-03-31 11:02:22.863190 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.863191 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863205 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295224
2015-03-31 11:02:22.863206 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295224 v=3295222 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.863210 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295224 (current v 3295222)
2015-03-31 11:02:22.863211 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178653 v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.863218 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.863220 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367d000 on [dir 10000000000 /test_small/ [2,head] auth v=3295223 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:22.863228 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9a32100
2015-03-31 11:02:22.863229 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295225
2015-03-31 11:02:22.863230 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863241 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863252 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863263 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.863264 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.106044 < 1, stopping
2015-03-31 11:02:22.863268 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863279 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.863282 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295224 v=3295222 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.863288 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31321} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863302 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3c54f8]
2015-03-31 11:02:22.863308 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.863311 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863319 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.863321 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863328 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863334 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863341 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863348 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863354 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863361 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863367 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863374 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863380 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863386 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863393 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863400 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863406 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863412 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863421 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.863422 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.863424 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3c54f8 tracedn 0x676e920
2015-03-31 11:02:22.863426 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367d000) [dentry #1/test_small/small5/blarg10025 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) pv=178652 v=177634 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676e920]
2015-03-31 11:02:22.863433 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407463 create #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.863441 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.863444 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31322
2015-03-31 11:02:22.863447 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31322 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.863452 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.863455 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.863458 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) including xattrs version 0
2015-03-31 11:02:22.863495 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.863524 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.863538 7fbe406af700  5 mds.0.log _submit_thread 5419550856~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.863539 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.863551 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.863565 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863586 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863598 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863608 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.863618 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863630 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863642 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863653 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863664 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863674 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.863935 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407464 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.863954 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407464 cr=0x968b480)
2015-03-31 11:02:22.863957 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407464 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.863960 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407464 cr=0x968b480) #1000006b2b0
2015-03-31 11:02:22.863962 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b0 snap head
2015-03-31 11:02:22.863964 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.863965 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3c54f8]
2015-03-31 11:02:22.863978 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407464 cr=0x968b480)
2015-03-31 11:02:22.863981 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.863996 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864006 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864016 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3c54f8]
2015-03-31 11:02:22.864026 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.864039 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.864054 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864063 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.864074 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864084 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.864094 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3c54f8]
2015-03-31 11:02:22.864104 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_pin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3c54f8] now 1+0
2015-03-31 11:02:22.864113 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.864128 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.864143 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864154 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864164 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864175 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864195 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.864216 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.864230 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407464 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.864235 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407464 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.864245 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.864249 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.864253 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.864255 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.864269 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407464 cr=0x968b480)
2015-03-31 11:02:22.864287 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.864304 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.864317 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864328 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864338 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864348 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864358 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.864379 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.864389 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.864404 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.864414 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.864425 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_unpin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8] now 0+0
2015-03-31 11:02:22.864811 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407465 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.864831 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407465 cr=0x6883200)
2015-03-31 11:02:22.864834 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407465 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.864837 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407465 cr=0x6883200) #1000006b2b0
2015-03-31 11:02:22.864839 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b0 snap head
2015-03-31 11:02:22.864840 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.864842 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.864858 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407465 cr=0x6883200)
2015-03-31 11:02:22.864861 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.864879 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864890 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864902 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.864912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.864926 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.864941 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.864951 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.864962 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.864972 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.864982 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.864992 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_pin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8] now 1+0
2015-03-31 11:02:22.865002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.865028 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.865054 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.865063 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.865073 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.865083 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.865092 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.865101 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.865117 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407465 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.865121 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407465 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.865132 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.865135 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.865141 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.865144 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.865158 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407465 cr=0x6883200)
2015-03-31 11:02:22.865177 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.865194 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.865208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.865219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.865241 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.865252 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.865262 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.865273 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.865283 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.865298 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.865308 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.865319 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_unpin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8] now 0+0
2015-03-31 11:02:22.868550 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e42 follows 0 op update
2015-03-31 11:02:22.868553 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868562 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.868564 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.868580 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.868581 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868587 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868594 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.868596 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868608 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868627 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868633 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.868635 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868643 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868647 7fbe406af700  5 mds.0.log _submit_thread 5419552496~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.868650 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868656 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868661 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868668 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868675 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868682 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.868691 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.908031 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407466 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.908052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407466 cr=0x6883980)
2015-03-31 11:02:22.908057 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407466 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.908060 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407466 cr=0x6883980) #1000006b2b0
2015-03-31 11:02:22.908063 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b0 snap head
2015-03-31 11:02:22.908064 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.908065 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.908082 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407466 cr=0x6883980)
2015-03-31 11:02:22.908085 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.908103 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.908115 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.908127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.908138 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.908152 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.908167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.908177 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.908188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.908198 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.908209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.908219 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_pin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8] now 1+0
2015-03-31 11:02:22.908229 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.908244 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.908270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.908292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.908302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.908312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.908321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.908331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.908347 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407466 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.908351 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407466 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.908361 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.908365 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.908370 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:22.908372 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.908386 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407466 cr=0x6883980)
2015-03-31 11:02:22.908405 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.908421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.908435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.908445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.908455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.908466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.908476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.908497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.908507 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.908522 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.908533 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.908544 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_unpin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8] now 0+0
2015-03-31 11:02:22.909738 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e42 follows 0 op update
2015-03-31 11:02:22.909742 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909753 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.909755 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.909773 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.909774 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909788 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909798 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:22.909799 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909805 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909812 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909818 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:22.909819 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909827 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909833 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909839 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909845 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:22.909847 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:22.909848 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e42 [2,head] /test_small/small1/blarg10025 auth v136868 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4c48]
2015-03-31 11:02:22.909855 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.949055 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407467 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.949072 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407467 cr=0x6884880)
2015-03-31 11:02:22.949075 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407467 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.949078 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407467 cr=0x6884880) #1000006b2b0
2015-03-31 11:02:22.949080 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b0 snap head
2015-03-31 11:02:22.949082 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.949083 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.949099 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407467 cr=0x6884880)
2015-03-31 11:02:22.949102 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949121 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949133 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.949145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.949156 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949170 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.949185 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949195 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.949206 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.949217 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.949228 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:22.949238 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_pin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8] now 1+0
2015-03-31 11:02:22.949249 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949264 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949279 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.949310 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.949321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.949331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.949348 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407467 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.949353 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407467 getattr Xs #1000006b2b0 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.949365 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.949370 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.949374 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:22.949378 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.949393 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407467 cr=0x6884880)
2015-03-31 11:02:22.949403 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949436 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949459 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.949470 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.949480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.949492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3c54f8]
2015-03-31 11:02:22.949502 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.949517 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.949528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.949539 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) auth_unpin by 0x242c9400 on [inode 1000006b2b0 [2,head] {#1000006b2b0 /test_small/small5/blarg10025} auth v178652 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3c54f8] now 0+0
2015-03-31 11:02:22.949832 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407468 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.949850 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407468 cr=0x37d2580)
2015-03-31 11:02:22.949853 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407468 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.949856 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407468 cr=0x37d2580) #10000004e43
2015-03-31 11:02:22.949858 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e43 snap head
2015-03-31 11:02:22.949860 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.949861 7fbe462be700 10 mds.0.server ref is [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.949873 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407468 cr=0x37d2580)
2015-03-31 11:02:22.949876 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949892 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949902 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.949912 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.949918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.949933 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.949947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.949957 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.949968 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.949977 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.949987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.949993 7fbe462be700 10 mds.0.cache.ino(10000004e43) auth_pin by 0x242c9400 on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310] now 1+0
2015-03-31 11:02:22.950001 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.950015 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.950030 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.950040 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.950051 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.950060 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.950070 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950077 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950084 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950091 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950106 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407468 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.950111 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407468 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.950122 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.950125 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.950130 7fbe462be700 10 mds.0.cache.ino(10000004e43) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:22.950132 7fbe462be700 10 mds.0.cache.ino(10000004e43) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.950147 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407468 cr=0x37d2580)
2015-03-31 11:02:22.950155 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.950172 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.950187 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.950199 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.950210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.950219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.950229 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950236 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950243 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950249 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.950255 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.950270 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.950281 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.950290 7fbe462be700 10 mds.0.cache.ino(10000004e43) auth_unpin by 0x242c9400 on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c4310] now 0+0
2015-03-31 11:02:22.950567 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407469 lookup #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.950585 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407469 cr=0x37d7580)
2015-03-31 11:02:22.950586 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407469 lookup #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.950589 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407469 cr=0x37d7580) #1000006026a/blarg10026
2015-03-31 11:02:22.950591 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.950594 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10026 [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock) v=177636 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eb00]
2015-03-31 11:02:22.950602 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.950604 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407469 lookup #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.950614 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.950626 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407469 cr=0x37d7580)
2015-03-31 11:02:22.951039 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407470 lookup #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.951059 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407470 cr=0x37d5500)
2015-03-31 11:02:22.951062 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407470 lookup #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.951065 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407470 cr=0x37d5500) #1000006026a/blarg10026
2015-03-31 11:02:22.951067 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.951070 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10026 [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock) v=177636 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eb00]
2015-03-31 11:02:22.951078 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:22.951080 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407470 lookup #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.951092 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.951104 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407470 cr=0x37d5500)
2015-03-31 11:02:22.951512 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407471 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.951533 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407471 cr=0x2a508c80)
2015-03-31 11:02:22.951536 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407471 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.951540 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407471 cr=0x2a508c80) #10000004e43
2015-03-31 11:02:22.951542 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e43 snap head
2015-03-31 11:02:22.951543 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.951544 7fbe462be700 10 mds.0.server ref is [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.951556 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407471 cr=0x2a508c80)
2015-03-31 11:02:22.951559 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.951577 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.951589 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.951599 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.951606 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.951620 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.951635 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.951645 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.951656 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:22.951666 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:22.951675 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.951682 7fbe462be700 10 mds.0.cache.ino(10000004e43) auth_pin by 0x242c9400 on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310] now 1+0
2015-03-31 11:02:22.951690 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.951705 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.951720 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.951732 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.951743 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.951752 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.951762 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951769 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951776 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951789 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951805 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407471 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.951810 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407471 getattr Xs #10000004e43 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.951822 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.951826 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.951831 7fbe462be700 10 mds.0.cache.ino(10000004e43) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:22.951834 7fbe462be700 10 mds.0.cache.ino(10000004e43) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.951849 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407471 cr=0x2a508c80)
2015-03-31 11:02:22.951859 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.951876 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.951892 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.951903 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.951914 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.951923 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:22.951933 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951940 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951948 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951954 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c4310]
2015-03-31 11:02:22.951960 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.951975 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.951986 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:22.951996 7fbe462be700 10 mds.0.cache.ino(10000004e43) auth_unpin by 0x242c9400 on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c4310] now 0+0
2015-03-31 11:02:22.952357 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407472 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.952379 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407472 cr=0x2a509900)
2015-03-31 11:02:22.952382 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407472 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.952385 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407472 cr=0x2a509900) #1000006026a
2015-03-31 11:02:22.952387 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.952389 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.952390 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952409 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407472 cr=0x2a509900)
2015-03-31 11:02:22.952412 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.952429 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.952440 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952452 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.952466 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.952482 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.952492 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.952503 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952514 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.952526 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.952541 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.952556 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.952567 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.952577 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952588 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952599 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952610 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31322} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952628 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407472 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.952633 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407472 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.952645 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.952648 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.952652 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31323
2015-03-31 11:02:22.952654 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31323 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.952669 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407472 cr=0x2a509900)
2015-03-31 11:02:22.952679 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.952696 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.952711 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.952722 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.952733 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952745 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952756 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952767 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.952777 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:22.952796 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:22.952807 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:22.953178 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407473 create #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.953198 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407473 cr=0xaeed500)
2015-03-31 11:02:22.953201 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407473 create #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.953204 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10026
2015-03-31 11:02:22.953205 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407473 cr=0xaeed500) #1000006026a/blarg10026
2015-03-31 11:02:22.953208 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10026
2015-03-31 11:02:22.953209 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:22.953210 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.953212 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178653 v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.953222 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178653 v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.953229 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10026 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178653 v=178651 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.953240 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407473 cr=0xaeed500)
2015-03-31 11:02:22.953246 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.953265 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953277 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953289 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock) v=177636 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953296 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.953311 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.953325 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953336 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.953347 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=1+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953358 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.953368 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock) v=177636 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953374 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10026) auth_pin by 0x242c9400 on [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock) v=177636 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00] now 1+0
2015-03-31 11:02:22.953381 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock) v=177636 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953385 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177636 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953392 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177636 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953398 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177636 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953404 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177636 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953410 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10026) auth_pin by 0x676ec58 on [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177636 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00] now 2+0
2015-03-31 11:02:22.953416 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242c9400) [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dn xlock x=1 by 0x242c9400) (dversion lock w=1 last_client=708310) v=177636 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953423 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.953439 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.953455 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.953469 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.953484 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953495 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953506 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953516 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953527 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953538 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953549 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953560 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953571 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953581 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953592 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953603 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953614 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953624 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953646 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b1 ([1000006b2b2~371], 881 left)
2015-03-31 11:02:22.953649 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:22.953651 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b1 [2,head] #1000006b2b1 auth v1 s=0 n() (iversion lock) 0x3f3f1ad0]
2015-03-31 11:02:22.953656 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178654
2015-03-31 11:02:22.953657 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10026)  pre_dirty [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dn xlock x=1 by 0x242c9400) (dversion lock w=1 last_client=708310) pv=178654 v=177636 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953666 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3f1ad0]
2015-03-31 11:02:22.953673 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242c9400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178654 v=178651 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:22.953684 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d13f0
2015-03-31 11:02:22.953686 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178655
2015-03-31 11:02:22.953687 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178655 v=178651 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.953694 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178655 v=178651 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.953702 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3f1ad0]
2015-03-31 11:02:22.953707 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.953709 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295224 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953724 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295226
2015-03-31 11:02:22.953725 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295226 v=3295222 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.953729 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295226 (current v 3295222)
2015-03-31 11:02:22.953731 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178655 v=178651 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:22.953740 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:22.953743 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242c9400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295226 v=3295223 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:22.953751 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x6ff72d0
2015-03-31 11:02:22.953752 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295227
2015-03-31 11:02:22.953753 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953764 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953776 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953793 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:22.953795 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.196552 < 1, stopping
2015-03-31 11:02:22.953799 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.953811 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:22.953815 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295226 v=3295222 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:22.953822 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31323} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.953836 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3f1ad0]
2015-03-31 11:02:22.953844 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:22.953847 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953856 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.953857 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953866 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953873 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953881 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953888 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953896 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953904 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953910 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953916 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953922 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953930 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953938 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953946 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953952 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953960 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.953971 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:22.953972 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:22.953975 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3f1ad0 tracedn 0x676eb00
2015-03-31 11:02:22.953978 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242c9400) [dentry #1/test_small/small5/blarg10026 [2,head] auth NULL (dn xlock x=1 by 0x242c9400) (dversion lock w=1 last_client=708310) pv=178654 v=177636 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eb00]
2015-03-31 11:02:22.953985 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407473 create #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.953995 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.953999 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31324
2015-03-31 11:02:22.954001 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31324 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.954007 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:22.954010 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:22.954013 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) including xattrs version 0
2015-03-31 11:02:22.954041 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954059 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954081 7fbe406af700  5 mds.0.log _submit_thread 5419553355~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:22.954075 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954098 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954114 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954125 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954137 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954147 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954157 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954169 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954181 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954191 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954201 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954211 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954445 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407474 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.954465 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407474 cr=0xaee8c80)
2015-03-31 11:02:22.954468 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407474 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.954472 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407474 cr=0xaee8c80) #1000006b2b1
2015-03-31 11:02:22.954473 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b1 snap head
2015-03-31 11:02:22.954475 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.954476 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.954490 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407474 cr=0xaee8c80)
2015-03-31 11:02:22.954493 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954509 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954519 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954530 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.954540 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954554 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.954569 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954579 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.954590 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954600 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.954611 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3f1ad0]
2015-03-31 11:02:22.954621 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_pin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3f1ad0] now 1+0
2015-03-31 11:02:22.954631 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954647 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954661 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954672 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954683 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954693 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954704 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.954715 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.954732 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407474 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.954736 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407474 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.954747 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.954751 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.954756 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:22.954759 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.954773 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407474 cr=0xaee8c80)
2015-03-31 11:02:22.954786 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954803 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.954818 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954829 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.954840 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954850 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.954861 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.954872 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.954882 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.954897 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.954908 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.954919 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_unpin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0] now 0+0
2015-03-31 11:02:22.955185 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407475 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.955203 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407475 cr=0x26d3df00)
2015-03-31 11:02:22.955206 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407475 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.955209 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407475 cr=0x26d3df00) #1000006b2b1
2015-03-31 11:02:22.955211 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b1 snap head
2015-03-31 11:02:22.955212 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:22.955213 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:22.955227 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407475 cr=0x26d3df00)
2015-03-31 11:02:22.955229 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.955245 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.955256 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.955267 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:22.955277 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.955291 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:22.955306 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.955316 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:22.955327 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.955338 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:22.955349 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:22.955358 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_pin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0] now 1+0
2015-03-31 11:02:22.955369 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.955384 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.955399 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.955410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.955421 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.955431 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.955441 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.955452 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.955469 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407475 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.955473 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407475 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:22.955485 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:22.955489 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:22.955493 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:22.955495 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:22.955510 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407475 cr=0x26d3df00)
2015-03-31 11:02:22.955518 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.955535 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.955550 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.955561 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:22.955572 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.955583 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:22.955594 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.955605 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:22.955615 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:22.955631 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:22.955642 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:22.955653 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_unpin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0] now 0+0
2015-03-31 11:02:22.959974 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e43 follows 0 op update
2015-03-31 11:02:22.959979 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.959987 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:22.959989 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:22.960005 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:22.960006 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960012 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960020 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:22.960022 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960033 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960041 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960048 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:22.960050 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960058 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960065 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960068 7fbe406af700  5 mds.0.log _submit_thread 5419554995~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:22.960070 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960076 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960081 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960086 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960093 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:22.960103 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.000052 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407476 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.000074 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407476 cr=0x26d3af80)
2015-03-31 11:02:23.000078 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407476 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.000082 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407476 cr=0x26d3af80) #1000006b2b1
2015-03-31 11:02:23.000084 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b1 snap head
2015-03-31 11:02:23.000086 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.000087 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.000104 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407476 cr=0x26d3af80)
2015-03-31 11:02:23.000107 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.000125 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.000137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.000150 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.000161 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.000175 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.000190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.000200 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.000211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.000222 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.000233 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.000243 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_pin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0] now 1+0
2015-03-31 11:02:23.000254 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.000270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.000285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.000296 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.000307 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.000318 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.000328 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.000339 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.000357 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407476 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.000361 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407476 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.000374 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.000377 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.000383 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.000385 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.000400 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407476 cr=0x26d3af80)
2015-03-31 11:02:23.000410 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.000427 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.000443 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.000454 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.000465 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.000477 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.000488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.000499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.000510 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.000525 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.000537 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.000548 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_unpin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0] now 0+0
2015-03-31 11:02:23.001868 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e43 follows 0 op update
2015-03-31 11:02:23.001872 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001884 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.001886 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.001904 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.001905 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001912 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001921 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.001923 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001928 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001935 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001941 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.001943 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001949 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001957 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001963 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001969 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.001970 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.001971 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e43 [2,head] /test_small/small1/blarg10026 auth v136870 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c4310]
2015-03-31 11:02:23.001979 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.041035 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407477 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.041057 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407477 cr=0x26d39900)
2015-03-31 11:02:23.041062 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407477 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.041065 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407477 cr=0x26d39900) #1000006b2b1
2015-03-31 11:02:23.041067 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b1 snap head
2015-03-31 11:02:23.041069 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.041070 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.041087 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407477 cr=0x26d39900)
2015-03-31 11:02:23.041090 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041109 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.041133 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.041144 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041158 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.041173 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041183 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.041195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.041206 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.041217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.041227 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_pin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0] now 1+0
2015-03-31 11:02:23.041238 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041289 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.041311 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.041321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.041332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.041349 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407477 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.041353 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407477 getattr Xs #1000006b2b1 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.041365 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.041369 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.041373 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.041377 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.041392 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407477 cr=0x26d39900)
2015-03-31 11:02:23.041412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041429 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041444 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.041478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.041489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.041500 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f1ad0]
2015-03-31 11:02:23.041510 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.041526 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.041537 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.041548 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) auth_unpin by 0x25c25500 on [inode 1000006b2b1 [2,head] {#1000006b2b1 /test_small/small5/blarg10026} auth v178654 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f1ad0] now 0+0
2015-03-31 11:02:23.041834 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407478 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.041852 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407478 cr=0x26d3e180)
2015-03-31 11:02:23.041854 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407478 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.041857 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407478 cr=0x26d3e180) #10000004e37
2015-03-31 11:02:23.041859 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e37 snap head
2015-03-31 11:02:23.041861 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.041862 7fbe462be700 10 mds.0.server ref is [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.041874 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407478 cr=0x26d3e180)
2015-03-31 11:02:23.041877 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041893 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041903 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.041913 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.041919 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.041934 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.041948 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.041958 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.041969 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.041978 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.041987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.041993 7fbe462be700 10 mds.0.cache.ino(10000004e37) auth_pin by 0x25c25500 on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8] now 1+0
2015-03-31 11:02:23.042000 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.042015 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.042030 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.042040 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.042051 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.042060 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.042070 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042077 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042084 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042089 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042104 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407478 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.042119 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407478 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.042130 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.042133 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.042138 7fbe462be700 10 mds.0.cache.ino(10000004e37) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.042140 7fbe462be700 10 mds.0.cache.ino(10000004e37) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.042154 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407478 cr=0x26d3e180)
2015-03-31 11:02:23.042174 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.042191 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.042206 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.042217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.042227 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.042237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.042246 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042254 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042261 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042267 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.042273 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.042288 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.042299 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.042308 7fbe462be700 10 mds.0.cache.ino(10000004e37) auth_unpin by 0x25c25500 on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c39d8] now 0+0
2015-03-31 11:02:23.042587 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407479 lookup #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.042604 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407479 cr=0x9cc4880)
2015-03-31 11:02:23.042606 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407479 lookup #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.042609 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407479 cr=0x9cc4880) #1000006026a/blarg10027
2015-03-31 11:02:23.042611 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.042613 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10027 [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock) v=177638 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ece0]
2015-03-31 11:02:23.042622 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.042623 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407479 lookup #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.042633 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.042644 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407479 cr=0x9cc4880)
2015-03-31 11:02:23.043129 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407480 lookup #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.043151 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407480 cr=0x43d2800)
2015-03-31 11:02:23.043154 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407480 lookup #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.043157 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407480 cr=0x43d2800) #1000006026a/blarg10027
2015-03-31 11:02:23.043159 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.043162 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10027 [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock) v=177638 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ece0]
2015-03-31 11:02:23.043170 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.043172 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407480 lookup #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.043184 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.043198 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407480 cr=0x43d2800)
2015-03-31 11:02:23.043600 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407481 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.043623 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407481 cr=0x60afa80)
2015-03-31 11:02:23.043625 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407481 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.043628 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407481 cr=0x60afa80) #10000004e37
2015-03-31 11:02:23.043630 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e37 snap head
2015-03-31 11:02:23.043632 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.043633 7fbe462be700 10 mds.0.server ref is [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.043646 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407481 cr=0x60afa80)
2015-03-31 11:02:23.043649 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.043667 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.043679 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.043689 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.043695 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.043709 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.043724 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.043734 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.043745 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.043754 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.043764 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.043770 7fbe462be700 10 mds.0.cache.ino(10000004e37) auth_pin by 0x25c25500 on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8] now 1+0
2015-03-31 11:02:23.043778 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.043799 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.043815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.043827 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.043848 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.043857 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.043867 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.043874 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.043881 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.043886 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.043901 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407481 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.043906 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407481 getattr Xs #10000004e37 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.043918 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.043921 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.043925 7fbe462be700 10 mds.0.cache.ino(10000004e37) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.043927 7fbe462be700 10 mds.0.cache.ino(10000004e37) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.043943 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407481 cr=0x60afa80)
2015-03-31 11:02:23.043963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.043981 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.043996 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044008 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044019 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.044029 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.044039 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.044046 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.044054 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.044059 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c39d8]
2015-03-31 11:02:23.044066 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.044081 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.044092 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.044102 7fbe462be700 10 mds.0.cache.ino(10000004e37) auth_unpin by 0x25c25500 on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c39d8] now 0+0
2015-03-31 11:02:23.044316 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407482 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.044334 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407482 cr=0x60aa300)
2015-03-31 11:02:23.044336 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407482 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.044340 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407482 cr=0x60aa300) #1000006026a
2015-03-31 11:02:23.044342 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.044343 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.044344 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044360 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407482 cr=0x60aa300)
2015-03-31 11:02:23.044363 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.044378 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044387 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044398 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.044412 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.044427 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044436 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.044447 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044458 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.044469 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.044484 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.044499 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044510 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044521 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044532 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044543 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044553 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31324} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044572 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407482 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.044576 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407482 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.044598 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.044601 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.044604 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31325
2015-03-31 11:02:23.044606 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31325 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.044620 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407482 cr=0x60aa300)
2015-03-31 11:02:23.044640 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.044656 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.044671 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044682 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.044693 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044704 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044715 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044725 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.044735 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.044750 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.044760 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.045153 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407483 create #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.045173 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407483 cr=0x60ada00)
2015-03-31 11:02:23.045175 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407483 create #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.045178 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10027
2015-03-31 11:02:23.045180 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407483 cr=0x60ada00) #1000006026a/blarg10027
2015-03-31 11:02:23.045182 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10027
2015-03-31 11:02:23.045184 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.045185 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.045187 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178655 v=178651 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.045198 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178655 v=178651 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.045206 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10027 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178655 v=178651 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.045218 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407483 cr=0x60ada00)
2015-03-31 11:02:23.045223 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.045243 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045255 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045267 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock) v=177638 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045274 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.045289 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.045304 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045314 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.045325 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=2+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045336 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.045346 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock) v=177638 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045352 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10027) auth_pin by 0x25c25500 on [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock) v=177638 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0] now 1+0
2015-03-31 11:02:23.045359 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock) v=177638 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045364 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177638 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045370 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177638 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045375 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177638 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045381 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177638 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045387 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10027) auth_pin by 0x676ee38 on [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177638 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0] now 2+0
2015-03-31 11:02:23.045403 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x25c25500) [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) v=177638 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045409 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.045425 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.045440 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.045454 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.045469 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045480 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045490 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045500 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045511 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045522 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045532 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045543 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045554 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045564 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045575 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045586 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045596 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045607 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045626 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b2 ([1000006b2b3~370], 880 left)
2015-03-31 11:02:23.045629 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.045631 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b2 [2,head] #1000006b2b2 auth v1 s=0 n() (iversion lock) 0x3f3e3d90]
2015-03-31 11:02:23.045636 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178656
2015-03-31 11:02:23.045637 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10027)  pre_dirty [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) pv=178656 v=177638 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045646 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3e3d90]
2015-03-31 11:02:23.045653 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x25c25500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178656 v=178651 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:23.045663 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x265ae5c0
2015-03-31 11:02:23.045665 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178657
2015-03-31 11:02:23.045667 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178651 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.045674 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178651 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.045681 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3e3d90]
2015-03-31 11:02:23.045688 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.045690 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295226 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045705 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295228
2015-03-31 11:02:23.045706 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295228 v=3295222 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.045710 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295228 (current v 3295222)
2015-03-31 11:02:23.045711 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178651 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=33+1571,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.045720 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.045722 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x25c25500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295228 v=3295223 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:23.045729 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x4a89810
2015-03-31 11:02:23.045731 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295229
2015-03-31 11:02:23.045732 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045743 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045754 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045766 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.045767 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.288533 < 1, stopping
2015-03-31 11:02:23.045772 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.045788 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.045793 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295228 v=3295222 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.045798 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31325} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.045812 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3e3d90]
2015-03-31 11:02:23.045819 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.045822 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045829 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.045830 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045840 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045847 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045855 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045862 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045870 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045877 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045884 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045891 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045898 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045905 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045913 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045919 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045924 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045931 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e3d90]
2015-03-31 11:02:23.045942 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.045943 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.045946 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3e3d90 tracedn 0x676ece0
2015-03-31 11:02:23.045948 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x25c25500) [dentry #1/test_small/small5/blarg10027 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) pv=178656 v=177638 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ece0]
2015-03-31 11:02:23.045956 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407483 create #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.045965 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.045969 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31326
2015-03-31 11:02:23.045971 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31326 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.045977 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.045981 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.045984 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) including xattrs version 0
2015-03-31 11:02:23.046023 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046042 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046059 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046066 7fbe406af700  5 mds.0.log _submit_thread 5419555854~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.046079 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046094 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046105 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046117 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046127 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046138 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046149 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046171 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046182 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046192 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046381 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407484 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.046402 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407484 cr=0x60ab480)
2015-03-31 11:02:23.046405 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407484 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.046409 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407484 cr=0x60ab480) #1000006b2b2
2015-03-31 11:02:23.046410 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b2 snap head
2015-03-31 11:02:23.046412 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.046413 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3e3d90]
2015-03-31 11:02:23.046427 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407484 cr=0x60ab480)
2015-03-31 11:02:23.046430 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046446 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046457 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046468 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3e3d90]
2015-03-31 11:02:23.046478 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046492 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.046506 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046516 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.046527 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046537 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.046548 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3e3d90]
2015-03-31 11:02:23.046557 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_pin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3e3d90] now 1+0
2015-03-31 11:02:23.046568 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046583 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046597 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046608 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046619 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046629 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046640 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.046650 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.046676 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407484 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.046680 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407484 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.046690 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.046695 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.046698 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.046701 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.046715 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407484 cr=0x60ab480)
2015-03-31 11:02:23.046735 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046752 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.046767 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046779 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.046794 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046805 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.046816 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.046828 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.046838 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.046853 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.046864 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.046874 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_unpin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90] now 0+0
2015-03-31 11:02:23.047104 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407485 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.047123 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407485 cr=0x26459b80)
2015-03-31 11:02:23.047125 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407485 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.047128 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407485 cr=0x26459b80) #1000006b2b2
2015-03-31 11:02:23.047131 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b2 snap head
2015-03-31 11:02:23.047132 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.047133 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.047146 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407485 cr=0x26459b80)
2015-03-31 11:02:23.047149 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.047165 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.047175 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.047186 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.047196 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.047210 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.047225 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.047235 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.047246 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.047256 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.047267 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.047277 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_pin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90] now 1+0
2015-03-31 11:02:23.047288 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.047303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.047318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.047329 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.047339 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.047350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.047371 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.047381 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.047397 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407485 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.047401 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407485 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.047412 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.047417 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.047421 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.047425 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.047439 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407485 cr=0x26459b80)
2015-03-31 11:02:23.047459 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.047476 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.047490 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.047502 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.047513 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.047524 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.047534 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.047545 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.047555 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.047571 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.047581 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.047592 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_unpin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90] now 0+0
2015-03-31 11:02:23.052116 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e37 follows 0 op update
2015-03-31 11:02:23.052120 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052131 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.052133 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.052152 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.052153 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052160 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052169 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.052170 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052182 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052191 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052198 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.052199 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052208 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052215 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052217 7fbe406af700  5 mds.0.log _submit_thread 5419557494~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.052222 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052227 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052233 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052239 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052244 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.052254 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.092037 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407486 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.092060 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407486 cr=0xb267080)
2015-03-31 11:02:23.092064 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407486 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.092068 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407486 cr=0xb267080) #1000006b2b2
2015-03-31 11:02:23.092070 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b2 snap head
2015-03-31 11:02:23.092071 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.092073 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.092090 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407486 cr=0xb267080)
2015-03-31 11:02:23.092093 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.092111 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.092123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.092135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.092146 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.092161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.092177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.092187 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.092198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.092209 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.092220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.092230 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_pin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90] now 1+0
2015-03-31 11:02:23.092241 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.092257 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.092271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.092282 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.092293 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.092304 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.092315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.092326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.092344 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407486 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.092349 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407486 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.092361 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.092364 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.092370 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.092372 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.092388 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407486 cr=0xb267080)
2015-03-31 11:02:23.092397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.092414 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.092430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.092442 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.092453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.092464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.092475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.092486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.092496 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.092512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.092523 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.092534 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_unpin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90] now 0+0
2015-03-31 11:02:23.093791 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e37 follows 0 op update
2015-03-31 11:02:23.093794 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093806 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.093808 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.093828 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.093829 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093836 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093844 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.093847 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093852 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093860 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093866 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.093867 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093875 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093883 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093888 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093893 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.093895 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.093896 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e37 [2,head] /test_small/small1/blarg10027 auth v136872 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c39d8]
2015-03-31 11:02:23.093903 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.120193 7fbe42eb4700 10 MDSInternalContextBase::complete: N3MDS10C_MDS_TickE
2015-03-31 11:02:23.120299 7fbe42eb4700  7 mds.0.cache trim max=10000000  cur=213230
2015-03-31 11:02:23.120312 7fbe42eb4700 10 mds.0.cache trim_client_leases
2015-03-31 11:02:23.120319 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10327 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178304 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d09f40]
2015-03-31 11:02:23.120339 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10328 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178306 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0a120]
2015-03-31 11:02:23.120351 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10329 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178308 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0a300]
2015-03-31 11:02:23.120359 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1033 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178310 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0a4e0]
2015-03-31 11:02:23.120369 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10330 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178312 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0a6c0]
2015-03-31 11:02:23.120378 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10331 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178314 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0a8a0]
2015-03-31 11:02:23.120387 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10332 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178316 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0aa80]
2015-03-31 11:02:23.120397 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10333 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178318 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0ac60]
2015-03-31 11:02:23.120405 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10334 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178320 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0ae40]
2015-03-31 11:02:23.120419 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10335 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178322 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0b020]
2015-03-31 11:02:23.120428 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10336 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178324 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0b200]
2015-03-31 11:02:23.120438 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10337 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178326 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0b3e0]
2015-03-31 11:02:23.120453 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10338 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178328 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0b5c0]
2015-03-31 11:02:23.120460 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10339 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178330 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0b7a0]
2015-03-31 11:02:23.120469 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1034 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178332 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0b980]
2015-03-31 11:02:23.120478 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10340 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178334 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0bb60]
2015-03-31 11:02:23.120486 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10341 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178336 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0bd40]
2015-03-31 11:02:23.120495 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10342 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178338 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0bf20]
2015-03-31 11:02:23.120503 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10343 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178340 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0c100]
2015-03-31 11:02:23.120512 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10344 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178342 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0c2e0]
2015-03-31 11:02:23.120522 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10345 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178344 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0c4c0]
2015-03-31 11:02:23.120529 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10346 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178346 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0c6a0]
2015-03-31 11:02:23.120539 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10347 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178348 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0c880]
2015-03-31 11:02:23.120547 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10348 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178350 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0ca60]
2015-03-31 11:02:23.120556 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10349 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178352 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0cc40]
2015-03-31 11:02:23.120563 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1035 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178354 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0ce20]
2015-03-31 11:02:23.120572 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10350 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178356 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0d000]
2015-03-31 11:02:23.120580 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10351 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178358 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0d1e0]
2015-03-31 11:02:23.120589 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10352 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178360 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0d3c0]
2015-03-31 11:02:23.120596 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10353 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178362 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0d5a0]
2015-03-31 11:02:23.120605 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10354 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178364 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0d780]
2015-03-31 11:02:23.120612 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10355 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178366 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0d960]
2015-03-31 11:02:23.120621 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10356 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178368 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0db40]
2015-03-31 11:02:23.120629 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10357 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178370 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0dd20]
2015-03-31 11:02:23.120637 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10358 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178372 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0df00]
2015-03-31 11:02:23.120645 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10359 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178374 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0e0e0]
2015-03-31 11:02:23.120654 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1036 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178376 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0e2c0]
2015-03-31 11:02:23.120665 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10360 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178378 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0e4a0]
2015-03-31 11:02:23.120673 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10361 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178380 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0e680]
2015-03-31 11:02:23.120682 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10362 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178382 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0e860]
2015-03-31 11:02:23.120697 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10363 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178384 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0ea40]
2015-03-31 11:02:23.120706 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10364 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178386 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0ec20]
2015-03-31 11:02:23.120715 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10365 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178388 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0ee00]
2015-03-31 11:02:23.120723 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10366 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178390 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0efe0]
2015-03-31 11:02:23.120738 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10367 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178392 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0f1c0]
2015-03-31 11:02:23.120748 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10368 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178394 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0f3a0]
2015-03-31 11:02:23.120756 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10369 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178396 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0f580]
2015-03-31 11:02:23.120765 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1037 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178398 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0f760]
2015-03-31 11:02:23.120773 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10370 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178400 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0f940]
2015-03-31 11:02:23.120781 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10371 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178402 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0fb20]
2015-03-31 11:02:23.120801 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10372 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178404 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0fd00]
2015-03-31 11:02:23.120809 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10373 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178406 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d0fee0]
2015-03-31 11:02:23.120818 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10374 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178408 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d100c0]
2015-03-31 11:02:23.120828 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10375 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178410 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d102a0]
2015-03-31 11:02:23.120837 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10376 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178412 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d10480]
2015-03-31 11:02:23.120844 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10377 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178414 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d10660]
2015-03-31 11:02:23.120853 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10378 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178416 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d10840]
2015-03-31 11:02:23.120861 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10379 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178418 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d10a20]
2015-03-31 11:02:23.120870 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1038 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178420 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d10c00]
2015-03-31 11:02:23.120878 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10380 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178422 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d10de0]
2015-03-31 11:02:23.120887 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10381 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178424 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d10fc0]
2015-03-31 11:02:23.120896 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10382 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178426 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d111a0]
2015-03-31 11:02:23.120906 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10383 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178428 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d11380]
2015-03-31 11:02:23.120915 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10384 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178430 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d11560]
2015-03-31 11:02:23.120924 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10385 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178432 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d11740]
2015-03-31 11:02:23.120932 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10386 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178434 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d11920]
2015-03-31 11:02:23.120941 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10387 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178436 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d11b00]
2015-03-31 11:02:23.120967 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10388 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178438 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d11ce0]
2015-03-31 11:02:23.120976 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10389 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178440 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d11ec0]
2015-03-31 11:02:23.120985 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1039 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178442 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d120a0]
2015-03-31 11:02:23.120993 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10390 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178444 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12280]
2015-03-31 11:02:23.121002 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10391 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178446 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12460]
2015-03-31 11:02:23.121011 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10392 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178448 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12640]
2015-03-31 11:02:23.121019 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10393 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178450 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12820]
2015-03-31 11:02:23.121027 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10394 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178452 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12a00]
2015-03-31 11:02:23.121037 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10395 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178454 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12be0]
2015-03-31 11:02:23.121047 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10396 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178456 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12dc0]
2015-03-31 11:02:23.121059 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10397 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178458 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d12fa0]
2015-03-31 11:02:23.121068 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10398 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178460 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13180]
2015-03-31 11:02:23.121078 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10399 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178462 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13360]
2015-03-31 11:02:23.121087 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg104 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178464 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13540]
2015-03-31 11:02:23.121096 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1040 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178466 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13720]
2015-03-31 11:02:23.121105 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10400 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178468 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13900]
2015-03-31 11:02:23.121113 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10401 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178470 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13ae0]
2015-03-31 11:02:23.121122 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10402 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178472 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13cc0]
2015-03-31 11:02:23.121130 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10403 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178474 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d13ea0]
2015-03-31 11:02:23.121139 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10404 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178476 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14080]
2015-03-31 11:02:23.121148 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10405 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178478 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14260]
2015-03-31 11:02:23.121158 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10406 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178480 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14440]
2015-03-31 11:02:23.121165 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10407 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178482 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14620]
2015-03-31 11:02:23.121174 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10408 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178484 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14800]
2015-03-31 11:02:23.121182 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10409 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178486 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d149e0]
2015-03-31 11:02:23.121218 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1041 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178488 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14bc0]
2015-03-31 11:02:23.121227 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10410 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178490 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14da0]
2015-03-31 11:02:23.121237 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10411 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178492 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d14f80]
2015-03-31 11:02:23.121245 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10412 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178494 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d15160]
2015-03-31 11:02:23.121254 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10413 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178496 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d15340]
2015-03-31 11:02:23.121263 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10414 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178498 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d15520]
2015-03-31 11:02:23.121271 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10415 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178500 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d15700]
2015-03-31 11:02:23.121280 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10416 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178502 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1f0c0]
2015-03-31 11:02:23.121291 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10417 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178504 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1f2a0]
2015-03-31 11:02:23.121302 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10418 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178506 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1f480]
2015-03-31 11:02:23.121311 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10419 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178508 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1f660]
2015-03-31 11:02:23.121318 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1042 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178510 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1f840]
2015-03-31 11:02:23.121327 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10420 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178512 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1fa20]
2015-03-31 11:02:23.121335 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10421 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178514 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1fc00]
2015-03-31 11:02:23.121344 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10422 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178516 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1fde0]
2015-03-31 11:02:23.121352 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10423 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178518 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d1ffc0]
2015-03-31 11:02:23.121361 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10424 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178520 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d201a0]
2015-03-31 11:02:23.121371 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10425 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178522 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d20380]
2015-03-31 11:02:23.121380 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10426 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178524 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d20560]
2015-03-31 11:02:23.121387 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10427 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178526 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d20740]
2015-03-31 11:02:23.121395 7fbe42eb4700 10 mds.0.cache trim_client_leases pool 1 trimmed 112 leases, 65 left
2015-03-31 11:02:23.123316 7fbe42eb4700  2 mds.0.cache check_memory_usage total 1457024, rss 1116172, heap 43920, malloc 850287 mmap 0, baseline 39824, buffers 0, max 1048576, 110052 / 210065 inodes have caps, 110069 caps, 0.523976 caps per inode
2015-03-31 11:02:23.123336 7fbe42eb4700 10 mds.0.log trim 30 / 30 segments, 25628 / -1 events, 0 (0) expiring, 0 (0) expired
2015-03-31 11:02:23.123342 7fbe42eb4700 10 mds.0.log _trim_expired_segments waiting for 2072696/5380790067 to expire
2015-03-31 11:02:23.123389 7fbe42eb4700 10 mds.0.locker scatter_tick
2015-03-31 11:02:23.123396 7fbe42eb4700 10 mds.0.server find_idle_sessions.  laggy until 0.000000
2015-03-31 11:02:23.123402 7fbe42eb4700 10 mds.0.cache find_stale_fragment_freeze
2015-03-31 11:02:23.123405 7fbe42eb4700 10 mds.0.snap check_osd_map - version unchanged
2015-03-31 11:02:23.133031 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407487 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.133056 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407487 cr=0xb264880)
2015-03-31 11:02:23.133058 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407487 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.133062 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407487 cr=0xb264880) #1000006b2b2
2015-03-31 11:02:23.133063 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b2 snap head
2015-03-31 11:02:23.133065 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.133066 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.133083 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407487 cr=0xb264880)
2015-03-31 11:02:23.133087 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133105 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.133128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.133139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133153 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.133168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133177 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.133188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.133199 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.133210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.133220 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_pin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90] now 1+0
2015-03-31 11:02:23.133230 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133245 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133269 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133291 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133301 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.133310 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.133320 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.133329 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.133344 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407487 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.133349 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407487 getattr Xs #1000006b2b2 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.133359 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.133363 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.133368 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.133370 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.133384 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407487 cr=0xb264880)
2015-03-31 11:02:23.133403 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133419 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133434 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.133466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=4+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.133487 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.133498 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e3d90]
2015-03-31 11:02:23.133508 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.133523 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.133534 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.133544 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) auth_unpin by 0x2a625500 on [inode 1000006b2b2 [2,head] {#1000006b2b2 /test_small/small5/blarg10027} auth v178656 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e3d90] now 0+0
2015-03-31 11:02:23.133846 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407488 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.133863 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407488 cr=0x5e8c380)
2015-03-31 11:02:23.133866 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407488 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.133869 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407488 cr=0x5e8c380) #10000004e3b
2015-03-31 11:02:23.133871 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3b snap head
2015-03-31 11:02:23.133873 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.133874 7fbe462be700 10 mds.0.server ref is [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.133884 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407488 cr=0x5e8c380)
2015-03-31 11:02:23.133887 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133902 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133913 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.133922 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.133929 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.133943 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.133956 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.133966 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.133976 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.133983 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a625500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.133993 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.133998 7fbe462be700 10 mds.0.cache.ino(10000004e3b) auth_pin by 0x2a625500 on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0] now 1+0
2015-03-31 11:02:23.134005 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.134020 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.134034 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.134045 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.134055 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.134064 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.134074 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134079 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134084 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134091 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134126 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407488 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.134130 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407488 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.134140 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.134143 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.134148 7fbe462be700 10 mds.0.cache.ino(10000004e3b) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.134150 7fbe462be700 10 mds.0.cache.ino(10000004e3b) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.134163 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407488 cr=0x5e8c380)
2015-03-31 11:02:23.134182 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.134198 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.134212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.134222 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.134232 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.134241 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.134250 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134268 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134281 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.134286 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.134301 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.134312 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a625500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.134321 7fbe462be700 10 mds.0.cache.ino(10000004e3b) auth_unpin by 0x2a625500 on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c30a0] now 0+0
2015-03-31 11:02:23.134599 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407489 lookup #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.134616 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407489 cr=0x25f4ee00)
2015-03-31 11:02:23.134618 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407489 lookup #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.134621 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407489 cr=0x25f4ee00) #1000006026a/blarg10028
2015-03-31 11:02:23.134623 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.134625 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10028 [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock) v=177640 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eec0]
2015-03-31 11:02:23.134633 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.134634 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407489 lookup #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.134643 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.134655 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407489 cr=0x25f4ee00)
2015-03-31 11:02:23.135124 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407490 lookup #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.135145 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407490 cr=0x26903700)
2015-03-31 11:02:23.135147 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407490 lookup #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.135150 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407490 cr=0x26903700) #1000006026a/blarg10028
2015-03-31 11:02:23.135152 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.135155 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10028 [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock) v=177640 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eec0]
2015-03-31 11:02:23.135163 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.135164 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407490 lookup #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.135176 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.135188 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407490 cr=0x26903700)
2015-03-31 11:02:23.135608 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407491 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.135630 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407491 cr=0x5410f00)
2015-03-31 11:02:23.135632 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407491 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.135635 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407491 cr=0x5410f00) #10000004e3b
2015-03-31 11:02:23.135637 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3b snap head
2015-03-31 11:02:23.135639 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.135640 7fbe462be700 10 mds.0.server ref is [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.135663 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407491 cr=0x5410f00)
2015-03-31 11:02:23.135666 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.135684 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.135696 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.135706 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.135713 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.135728 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.135743 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.135753 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.135765 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.135774 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a625500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.135791 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.135797 7fbe462be700 10 mds.0.cache.ino(10000004e3b) auth_pin by 0x2a625500 on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0] now 1+0
2015-03-31 11:02:23.135808 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.135804 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.135819 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.135834 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.135845 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.135856 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.135866 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.135876 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.135883 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.135890 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.135897 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.135910 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407491 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.135915 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407491 getattr Xs #10000004e3b 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.135927 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.135932 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.135936 7fbe462be700 10 mds.0.cache.ino(10000004e3b) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.135940 7fbe462be700 10 mds.0.cache.ino(10000004e3b) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.135956 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407491 cr=0x5410f00)
2015-03-31 11:02:23.135965 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.135983 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.135998 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136010 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136021 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.136030 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.136040 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.136046 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.136053 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.136060 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c30a0]
2015-03-31 11:02:23.136066 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.136091 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.136102 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a625500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.136111 7fbe462be700 10 mds.0.cache.ino(10000004e3b) auth_unpin by 0x2a625500 on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c30a0] now 0+0
2015-03-31 11:02:23.136160 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.136177 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.136179 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) mark_dirty [inode 1000006b2b0 [2,head] /test_small/small5/blarg10025 auth v178651 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:23.136194 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10025)  mark_dirty [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178652 v=177634 ap=2+0 inode=0x3f3c54f8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920]
2015-03-31 11:02:23.136204 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178652 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 33=33+0) hs=34+1570,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178652
2015-03-31 11:02:23.136214 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) mark_dirty_parent
2015-03-31 11:02:23.136216 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295222 pv3295228 ap=3+1 f(v0 m2015-03-31 11:02:59.000000 33=33+0) n(v1 rc2015-03-31 11:02:59.000000 34=33+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136231 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295228 v=3295222 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.136235 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295229 v=3295224 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295224
2015-03-31 11:02:23.136245 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178653 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 34=34+0) hs=34+1570,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178653
2015-03-31 11:02:23.136253 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295229 v=3295225 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382337=382330+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295225
2015-03-31 11:02:23.136263 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b0 [2,head] /test_small/small5/blarg10025 auth v178652 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3c54f8]
2015-03-31 11:02:23.136273 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.136276 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27507 client_caps(grant ino 1000006b2b0 1851493 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.136308 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178652 ap=2+0 inode=0x3f3c54f8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920]
2015-03-31 11:02:23.136329 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407463 create #1000006026a/blarg10025 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.136341 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b0
2015-03-31 11:02:23.136345 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178652 ap=2+0 inode=0x3f3c54f8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920]
2015-03-31 11:02:23.136354 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178652 ap=2+0 inode=0x3f3c54f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920]
2015-03-31 11:02:23.136360 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178652 ap=2+0 inode=0x3f3c54f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920]
2015-03-31 11:02:23.136365 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10025) auth_unpin by 0x676ea78 on [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178652 ap=1+0 inode=0x3f3c54f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920] now 1+0
2015-03-31 11:02:23.136372 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178652 ap=1+0 inode=0x3f3c54f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920]
2015-03-31 11:02:23.136377 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136392 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136406 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136428 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=3) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136449 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178652 ap=1+0 inode=0x3f3c54f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676e920]
2015-03-31 11:02:23.136465 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407463 cr=0x4a0a080)
2015-03-31 11:02:23.136483 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.136501 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.136512 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367d000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295229 v=3295225 cv=3287205/3287205 ap=2+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382337=382330+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 4
2015-03-31 11:02:23.136523 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367d000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178653 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 34=34+0) hs=34+1570,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:23.136531 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.136543 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10025) auth_unpin by 0x2367d000 on [dentry #1/test_small/small5/blarg10025 [2,head] auth (dn sync l=1) (dversion lock) v=178652 inode=0x3f3c54f8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676e920] now 0+0
2015-03-31 11:02:23.136568 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.136572 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407492 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.136596 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407492 cr=0x45a5c80)
2015-03-31 11:02:23.136599 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407492 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.136603 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407492 cr=0x45a5c80) #1000006026a
2015-03-31 11:02:23.136604 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.136606 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.136607 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136626 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407492 cr=0x45a5c80)
2015-03-31 11:02:23.136629 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.136646 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136658 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136669 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.136684 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.136699 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136709 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.136721 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136731 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.136742 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.136767 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.136785 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136796 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136807 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136828 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136838 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136859 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31326} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136875 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407492 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.136879 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407492 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.136889 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.136893 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.136896 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31327
2015-03-31 11:02:23.136898 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31327 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.136912 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407492 cr=0x45a5c80)
2015-03-31 11:02:23.136931 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.136947 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.136961 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136972 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.136982 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.136992 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137014 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137023 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137033 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.137047 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.137057 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.137110 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.137127 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.137129 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) mark_dirty [inode 1000006b2b1 [2,head] /test_small/small5/blarg10026 auth v178653 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.137145 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10026)  mark_dirty [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178654 v=177636 ap=2+0 inode=0x3f3f1ad0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00]
2015-03-31 11:02:23.137154 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178654 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 34=34+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178654
2015-03-31 11:02:23.137165 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) mark_dirty_parent
2015-03-31 11:02:23.137167 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295224 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 34=34+0) n(v1 rc2015-03-31 11:03:00.000000 35=34+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137182 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295228 v=3295224 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.137186 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295229 v=3295226 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382337=382330+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295226
2015-03-31 11:02:23.137197 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178655 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178655
2015-03-31 11:02:23.137204 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295229 v=3295227 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382338=382331+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295227
2015-03-31 11:02:23.137213 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b1 [2,head] /test_small/small5/blarg10026 auth v178654 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3f1ad0]
2015-03-31 11:02:23.137224 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.137226 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27508 client_caps(grant ino 1000006b2b1 1851494 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.137258 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178654 ap=2+0 inode=0x3f3f1ad0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00]
2015-03-31 11:02:23.137284 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407473 create #1000006026a/blarg10026 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.137296 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b1
2015-03-31 11:02:23.137300 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178654 ap=2+0 inode=0x3f3f1ad0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00]
2015-03-31 11:02:23.137309 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178654 ap=2+0 inode=0x3f3f1ad0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00]
2015-03-31 11:02:23.137316 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178654 ap=2+0 inode=0x3f3f1ad0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00]
2015-03-31 11:02:23.137321 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10026) auth_unpin by 0x676ec58 on [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178654 ap=1+0 inode=0x3f3f1ad0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00] now 1+0
2015-03-31 11:02:23.137328 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178654 ap=1+0 inode=0x3f3f1ad0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00]
2015-03-31 11:02:23.137335 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.137350 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137372 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137383 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137394 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178654 ap=1+0 inode=0x3f3f1ad0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eb00]
2015-03-31 11:02:23.137421 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407473 cr=0xaeed500)
2015-03-31 11:02:23.137429 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.137446 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.137458 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242c9400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295229 v=3295227 cv=3287205/3287205 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382338=382331+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 3
2015-03-31 11:02:23.137468 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242c9400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178655 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:23.137476 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.137488 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10026) auth_unpin by 0x242c9400 on [dentry #1/test_small/small5/blarg10026 [2,head] auth (dn sync l=1) (dversion lock) v=178654 inode=0x3f3f1ad0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676eb00] now 0+0
2015-03-31 11:02:23.137513 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.137516 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407493 create #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.137540 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407493 cr=0x23fbcb00)
2015-03-31 11:02:23.137542 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407493 create #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.137545 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10028
2015-03-31 11:02:23.137547 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407493 cr=0x23fbcb00) #1000006026a/blarg10028
2015-03-31 11:02:23.137549 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10028
2015-03-31 11:02:23.137550 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.137552 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.137553 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178655 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.137564 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178655 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.137572 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10028 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178657 v=178655 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.137584 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407493 cr=0x23fbcb00)
2015-03-31 11:02:23.137589 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.137609 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.137622 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137634 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock) v=177640 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137641 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.137656 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.137671 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.137681 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.137693 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137703 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.137724 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock) v=177640 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137729 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10028) auth_pin by 0x2a625500 on [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock) v=177640 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0] now 1+0
2015-03-31 11:02:23.137735 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock) v=177640 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137742 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177640 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137748 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177640 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137752 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177640 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137768 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177640 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137773 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10028) auth_pin by 0x676f018 on [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177640 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0] now 2+0
2015-03-31 11:02:23.137779 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2a625500) [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dn xlock x=1 by 0x2a625500) (dversion lock w=1 last_client=708310) v=177640 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.137800 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.137815 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.137828 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.137840 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.137853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.137863 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.137872 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.137881 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.137891 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137900 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137910 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137921 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137930 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137939 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137949 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137958 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137968 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137977 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.137996 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b3 ([1000006b2b4~36f], 879 left)
2015-03-31 11:02:23.137999 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.138000 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b3 [2,head] #1000006b2b3 auth v1 s=0 n() (iversion lock) 0x3f3a1030]
2015-03-31 11:02:23.138005 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178658
2015-03-31 11:02:23.138006 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10028)  pre_dirty [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dn xlock x=1 by 0x2a625500) (dversion lock w=1 last_client=708310) pv=178658 v=177640 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.138014 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a1030]
2015-03-31 11:02:23.138021 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2a625500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178658 v=178655 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:23.138030 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3c332e0
2015-03-31 11:02:23.138032 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178659
2015-03-31 11:02:23.138033 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178655 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.138039 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178655 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.138047 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a1030]
2015-03-31 11:02:23.138053 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.138055 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295228 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138068 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295230
2015-03-31 11:02:23.138069 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295230 v=3295226 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.138073 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295230 (current v 3295226)
2015-03-31 11:02:23.138075 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178655 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=35+1569,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.138083 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.138084 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2a625500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295230 v=3295227 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382338=382331+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:23.138093 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d0fd0
2015-03-31 11:02:23.138094 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295231
2015-03-31 11:02:23.138095 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138106 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138116 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138127 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.138129 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.380903 < 1, stopping
2015-03-31 11:02:23.138133 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138143 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.138147 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295230 v=3295226 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.138152 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31327} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138166 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3a1030]
2015-03-31 11:02:23.138172 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.138175 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138183 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.138185 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138193 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138199 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138205 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138212 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138219 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138225 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138232 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138238 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138244 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138251 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138258 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138264 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138270 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138277 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a1030]
2015-03-31 11:02:23.138287 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.138288 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.138290 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3a1030 tracedn 0x676eec0
2015-03-31 11:02:23.138292 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2a625500) [dentry #1/test_small/small5/blarg10028 [2,head] auth NULL (dn xlock x=1 by 0x2a625500) (dversion lock w=1 last_client=708310) pv=178658 v=177640 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676eec0]
2015-03-31 11:02:23.138299 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407493 create #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.138307 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.138310 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31328
2015-03-31 11:02:23.138312 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31328 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.138318 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.138321 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.138324 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) including xattrs version 0
2015-03-31 11:02:23.138361 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.138389 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.138404 7fbe406af700  5 mds.0.log _submit_thread 5419558353~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.138405 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.138417 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.138431 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138464 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138474 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138484 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138497 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138508 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138518 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138529 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138539 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138574 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.138591 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.138593 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) mark_dirty [inode 1000006b2b2 [2,head] /test_small/small5/blarg10027 auth v178655 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.138609 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10027)  mark_dirty [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178656 v=177638 ap=2+0 inode=0x3f3e3d90 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0]
2015-03-31 11:02:23.138618 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178656 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 35=35+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178656
2015-03-31 11:02:23.138629 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) mark_dirty_parent
2015-03-31 11:02:23.138631 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295226 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 35=35+0) n(v1 rc2015-03-31 11:03:00.000000 36=35+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138646 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295230 v=3295226 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.138650 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295231 v=3295228 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382338=382331+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295228
2015-03-31 11:02:23.138661 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178657
2015-03-31 11:02:23.138669 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295231 v=3295229 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382339=382332+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295229
2015-03-31 11:02:23.138679 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b2 [2,head] /test_small/small5/blarg10027 auth v178656 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e3d90]
2015-03-31 11:02:23.138700 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.138702 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27509 client_caps(grant ino 1000006b2b2 1851495 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.138733 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178656 ap=2+0 inode=0x3f3e3d90 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0]
2015-03-31 11:02:23.138743 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407483 create #1000006026a/blarg10027 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.138755 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b2
2015-03-31 11:02:23.138759 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178656 ap=2+0 inode=0x3f3e3d90 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0]
2015-03-31 11:02:23.138768 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178656 ap=2+0 inode=0x3f3e3d90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0]
2015-03-31 11:02:23.138775 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178656 ap=2+0 inode=0x3f3e3d90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0]
2015-03-31 11:02:23.138781 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10027) auth_unpin by 0x676ee38 on [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178656 ap=1+0 inode=0x3f3e3d90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0] now 1+0
2015-03-31 11:02:23.138798 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178656 ap=1+0 inode=0x3f3e3d90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0]
2015-03-31 11:02:23.138804 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.138820 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138832 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138844 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.138855 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178656 ap=1+0 inode=0x3f3e3d90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ece0]
2015-03-31 11:02:23.138873 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407483 cr=0x60ada00)
2015-03-31 11:02:23.138881 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.138898 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.138909 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x25c25500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295231 v=3295229 cv=3287205/3287205 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382339=382332+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 3
2015-03-31 11:02:23.138920 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x25c25500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178657 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:23.138928 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.138940 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10027) auth_unpin by 0x25c25500 on [dentry #1/test_small/small5/blarg10027 [2,head] auth (dn sync l=1) (dversion lock) v=178656 inode=0x3f3e3d90 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676ece0] now 0+0
2015-03-31 11:02:23.138967 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407494 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.138988 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407494 cr=0x51da300)
2015-03-31 11:02:23.138990 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407494 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.138993 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407494 cr=0x51da300) #1000006b2b3
2015-03-31 11:02:23.138995 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b3 snap head
2015-03-31 11:02:23.138996 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.138997 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3a1030]
2015-03-31 11:02:23.139010 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407494 cr=0x51da300)
2015-03-31 11:02:23.139013 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139029 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139040 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139051 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a1030]
2015-03-31 11:02:23.139060 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139075 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.139089 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139099 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.139110 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139120 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.139131 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a1030]
2015-03-31 11:02:23.139141 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_pin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a1030] now 1+0
2015-03-31 11:02:23.139151 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139176 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139190 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139200 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139210 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139230 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139252 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.139261 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.139275 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407494 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.139279 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407494 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.139289 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.139292 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.139296 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.139299 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.139312 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407494 cr=0x51da300)
2015-03-31 11:02:23.139331 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139347 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139360 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139371 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139391 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139401 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.139422 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.139432 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.139447 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.139457 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.139468 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_unpin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030] now 0+0
2015-03-31 11:02:23.139687 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407495 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.139704 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407495 cr=0x9f78280)
2015-03-31 11:02:23.139706 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407495 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.139709 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407495 cr=0x9f78280) #1000006b2b3
2015-03-31 11:02:23.139711 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b3 snap head
2015-03-31 11:02:23.139713 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.139714 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.139726 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407495 cr=0x9f78280)
2015-03-31 11:02:23.139729 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139744 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139754 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139765 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.139774 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139793 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.139807 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139817 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.139828 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139837 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.139848 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.139857 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_pin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030] now 1+0
2015-03-31 11:02:23.139867 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139882 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.139896 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.139917 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139927 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.139948 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.139969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.139983 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407495 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.139988 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407495 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.139998 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.140001 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.140005 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.140008 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.140020 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407495 cr=0x9f78280)
2015-03-31 11:02:23.140039 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.140055 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.140069 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.140080 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.140090 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.140100 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.140121 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.140131 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.140141 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.140155 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.140166 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.140177 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_unpin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030] now 0+0
2015-03-31 11:02:23.143739 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3b follows 0 op update
2015-03-31 11:02:23.143743 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143754 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.143756 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.143773 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.143774 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143781 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143793 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.143795 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143806 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143826 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143832 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.143834 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143842 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143846 7fbe406af700  5 mds.0.log _submit_thread 5419559993~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.143849 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143854 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143859 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143866 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143871 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143878 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.143888 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.183041 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407496 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.183063 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407496 cr=0x26d3c600)
2015-03-31 11:02:23.183067 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407496 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.183071 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407496 cr=0x26d3c600) #1000006b2b3
2015-03-31 11:02:23.183073 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b3 snap head
2015-03-31 11:02:23.183075 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.183076 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.183093 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407496 cr=0x26d3c600)
2015-03-31 11:02:23.183096 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.183113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.183125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.183137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.183147 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.183161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.183175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.183185 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.183196 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.183207 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.183217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.183227 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_pin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030] now 1+0
2015-03-31 11:02:23.183237 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.183252 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.183266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.183287 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.183308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.183317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.183327 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.183336 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.183351 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407496 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.183355 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407496 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.183366 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.183370 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.183373 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.183377 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.183391 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407496 cr=0x26d3c600)
2015-03-31 11:02:23.183410 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.183426 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.183441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.183451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.183462 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.183472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.183493 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.183504 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.183513 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.183528 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.183539 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.183549 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_unpin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030] now 0+0
2015-03-31 11:02:23.184799 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3b follows 0 op update
2015-03-31 11:02:23.184802 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184814 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.184816 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.184834 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.184835 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184842 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184850 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.184852 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184857 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184865 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184871 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.184872 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184879 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184885 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184891 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184897 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.184898 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.184900 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e3b [2,head] /test_small/small1/blarg10028 auth v136874 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c30a0]
2015-03-31 11:02:23.184907 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.218025 7fbe426b3700 10 mds.beacon.cephnautilus01 _send up:active seq 17074
2015-03-31 11:02:23.218340 7fbe462be700 10 mds.beacon.cephnautilus01 handle_mds_beacon up:active seq 17074 rtt 0.000300
2015-03-31 11:02:23.224028 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407497 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.224050 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407497 cr=0xa255780)
2015-03-31 11:02:23.224054 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407497 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.224058 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407497 cr=0xa255780) #1000006b2b3
2015-03-31 11:02:23.224059 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b3 snap head
2015-03-31 11:02:23.224061 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.224062 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.224079 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407497 cr=0xa255780)
2015-03-31 11:02:23.224082 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224100 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224111 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.224123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.224133 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224148 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.224162 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224172 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.224183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.224194 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.224204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.224214 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_pin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030] now 1+0
2015-03-31 11:02:23.224224 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224240 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224264 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224286 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224295 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.224305 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.224315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.224324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.224340 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407497 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.224343 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407497 getattr Xs #1000006b2b3 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.224354 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.224358 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.224362 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.224365 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.224378 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407497 cr=0xa255780)
2015-03-31 11:02:23.224398 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224414 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224428 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224439 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224449 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.224459 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.224480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.224491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a1030]
2015-03-31 11:02:23.224501 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.224516 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.224527 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.224537 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) auth_unpin by 0x2367c600 on [inode 1000006b2b3 [2,head] {#1000006b2b3 /test_small/small5/blarg10028} auth v178658 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a1030] now 0+0
2015-03-31 11:02:23.224839 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407498 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.224857 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407498 cr=0xa250f00)
2015-03-31 11:02:23.224859 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407498 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.224862 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407498 cr=0xa250f00) #10000004e54
2015-03-31 11:02:23.224864 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e54 snap head
2015-03-31 11:02:23.224866 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.224867 7fbe462be700 10 mds.0.server ref is [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.224878 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407498 cr=0xa250f00)
2015-03-31 11:02:23.224881 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224897 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224907 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.224916 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.224922 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.224935 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.224949 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.224958 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.224969 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.224977 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.224987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.224992 7fbe462be700 10 mds.0.cache.ino(10000004e54) auth_pin by 0x2367c600 on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768] now 1+0
2015-03-31 11:02:23.224999 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.225014 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.225028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.225038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.225048 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.225057 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.225066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225074 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225080 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225096 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225121 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407498 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.225126 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407498 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.225136 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.225139 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.225143 7fbe462be700 10 mds.0.cache.ino(10000004e54) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.225145 7fbe462be700 10 mds.0.cache.ino(10000004e54) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.225158 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407498 cr=0xa250f00)
2015-03-31 11:02:23.225177 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.225193 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.225207 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.225217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.225228 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.225236 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.225257 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225264 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225271 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225277 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.225283 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.225298 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.225309 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.225318 7fbe462be700 10 mds.0.cache.ino(10000004e54) auth_unpin by 0x2367c600 on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c2768] now 0+0
2015-03-31 11:02:23.225593 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407499 lookup #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.225610 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407499 cr=0xa251e00)
2015-03-31 11:02:23.225613 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407499 lookup #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.225617 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407499 cr=0xa251e00) #1000006026a/blarg10029
2015-03-31 11:02:23.225619 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.225621 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10029 [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock) v=177642 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.225629 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.225630 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407499 lookup #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.225639 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.225650 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407499 cr=0xa251e00)
2015-03-31 11:02:23.226114 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407500 lookup #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.226133 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407500 cr=0x940f080)
2015-03-31 11:02:23.226137 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407500 lookup #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.226140 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407500 cr=0x940f080) #1000006026a/blarg10029
2015-03-31 11:02:23.226142 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.226145 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10029 [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock) v=177642 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.226153 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.226155 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407500 lookup #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.226167 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.226179 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407500 cr=0x940f080)
2015-03-31 11:02:23.226610 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407501 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.226631 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407501 cr=0xa928f00)
2015-03-31 11:02:23.226635 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407501 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.226639 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407501 cr=0xa928f00) #10000004e54
2015-03-31 11:02:23.226641 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e54 snap head
2015-03-31 11:02:23.226642 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.226643 7fbe462be700 10 mds.0.server ref is [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.226655 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407501 cr=0xa928f00)
2015-03-31 11:02:23.226658 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.226676 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.226687 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.226697 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.226703 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.226718 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.226732 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.226742 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.226753 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.226762 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.226771 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.226777 7fbe462be700 10 mds.0.cache.ino(10000004e54) auth_pin by 0x2367c600 on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768] now 1+0
2015-03-31 11:02:23.226790 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.226805 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.226829 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.226840 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.226861 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.226870 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.226878 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.226885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.226890 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.226896 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.226909 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407501 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.226913 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407501 getattr Xs #10000004e54 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.226924 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.226927 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.226931 7fbe462be700 10 mds.0.cache.ino(10000004e54) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.226934 7fbe462be700 10 mds.0.cache.ino(10000004e54) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.226948 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407501 cr=0xa928f00)
2015-03-31 11:02:23.226967 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.226983 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.226997 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227008 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227018 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.227027 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.227047 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.227054 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.227060 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.227067 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c2768]
2015-03-31 11:02:23.227072 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.227087 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.227097 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.227106 7fbe462be700 10 mds.0.cache.ino(10000004e54) auth_unpin by 0x2367c600 on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c2768] now 0+0
2015-03-31 11:02:23.227376 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407502 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.227394 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407502 cr=0x2645ad00)
2015-03-31 11:02:23.227397 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407502 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.227400 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407502 cr=0x2645ad00) #1000006026a
2015-03-31 11:02:23.227402 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.227403 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.227404 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227419 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407502 cr=0x2645ad00)
2015-03-31 11:02:23.227421 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.227436 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227446 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227456 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.227469 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.227483 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227492 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.227503 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227513 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.227524 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.227538 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.227551 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227562 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227572 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227582 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227593 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227603 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31328} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227621 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407502 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.227635 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407502 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.227657 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.227660 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.227663 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31329
2015-03-31 11:02:23.227665 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31329 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.227678 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407502 cr=0x2645ad00)
2015-03-31 11:02:23.227696 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.227712 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.227726 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227736 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.227746 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227757 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227779 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227791 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.227800 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.227814 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.227825 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.228214 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407503 create #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.228235 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407503 cr=0x9ae2800)
2015-03-31 11:02:23.228237 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407503 create #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.228240 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10029
2015-03-31 11:02:23.228241 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407503 cr=0x9ae2800) #1000006026a/blarg10029
2015-03-31 11:02:23.228244 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10029
2015-03-31 11:02:23.228245 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.228246 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.228248 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178657 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.228258 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178657 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.228265 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10029 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178659 v=178657 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.228276 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407503 cr=0x9ae2800)
2015-03-31 11:02:23.228282 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.228301 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228312 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228324 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock) v=177642 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228331 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.228345 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.228360 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228370 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.228382 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228392 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.228403 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock) v=177642 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228408 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10029) auth_pin by 0x2367c600 on [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock) v=177642 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0] now 1+0
2015-03-31 11:02:23.228415 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock) v=177642 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228420 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177642 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228436 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177642 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228441 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177642 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228446 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177642 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228464 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10029) auth_pin by 0x676f1f8 on [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177642 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0] now 2+0
2015-03-31 11:02:23.228469 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367c600) [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dn xlock x=1 by 0x2367c600) (dversion lock w=1 last_client=708310) v=177642 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228475 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.228490 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.228503 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.228516 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.228529 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228539 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228549 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228558 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228568 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228578 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228588 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228598 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228607 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228617 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228627 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228636 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228646 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228655 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228674 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b4 ([1000006b2b5~36e], 878 left)
2015-03-31 11:02:23.228677 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.228678 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b4 [2,head] #1000006b2b4 auth v1 s=0 n() (iversion lock) 0x3f41e0a8]
2015-03-31 11:02:23.228682 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178660
2015-03-31 11:02:23.228683 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10029)  pre_dirty [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dn xlock x=1 by 0x2367c600) (dversion lock w=1 last_client=708310) pv=178660 v=177642 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228691 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f41e0a8]
2015-03-31 11:02:23.228698 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367c600 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178660 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:23.228707 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9682ec0
2015-03-31 11:02:23.228708 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178661
2015-03-31 11:02:23.228709 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178661 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.228715 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178661 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.228722 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f41e0a8]
2015-03-31 11:02:23.228728 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.228730 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295230 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228743 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295232
2015-03-31 11:02:23.228744 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295232 v=3295228 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.228748 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295232 (current v 3295228)
2015-03-31 11:02:23.228749 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178661 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.228755 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.228757 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367c600 on [dir 10000000000 /test_small/ [2,head] auth pv=3295232 v=3295229 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382339=382332+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:23.228766 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc6a1b0
2015-03-31 11:02:23.228768 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295233
2015-03-31 11:02:23.228769 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228781 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228795 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228806 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.228808 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.471581 < 1, stopping
2015-03-31 11:02:23.228812 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.228822 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.228826 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295232 v=3295228 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.228830 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31329} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.228843 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f41e0a8]
2015-03-31 11:02:23.228850 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.228853 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228860 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.228862 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228870 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228876 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228883 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228889 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228896 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228903 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228909 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228916 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228921 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228926 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228933 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228939 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228945 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228952 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f41e0a8]
2015-03-31 11:02:23.228962 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.228963 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.228966 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f41e0a8 tracedn 0x676f0a0
2015-03-31 11:02:23.228968 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367c600) [dentry #1/test_small/small5/blarg10029 [2,head] auth NULL (dn xlock x=1 by 0x2367c600) (dversion lock w=1 last_client=708310) pv=178660 v=177642 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f0a0]
2015-03-31 11:02:23.228975 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407503 create #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.228983 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.228987 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31330
2015-03-31 11:02:23.228989 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31330 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.228994 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.228997 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.229000 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) including xattrs version 0
2015-03-31 11:02:23.229036 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229065 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229080 7fbe406af700  5 mds.0.log _submit_thread 5419560852~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.229080 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229093 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229107 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229141 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229151 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229162 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229174 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229185 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229196 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229207 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229217 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229468 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407504 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.229487 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407504 cr=0x9ae6400)
2015-03-31 11:02:23.229489 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407504 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.229493 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407504 cr=0x9ae6400) #1000006b2b4
2015-03-31 11:02:23.229494 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b4 snap head
2015-03-31 11:02:23.229496 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.229497 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f41e0a8]
2015-03-31 11:02:23.229510 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407504 cr=0x9ae6400)
2015-03-31 11:02:23.229513 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229527 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229538 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229548 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f41e0a8]
2015-03-31 11:02:23.229557 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229571 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.229586 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229595 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.229606 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229616 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.229627 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f41e0a8]
2015-03-31 11:02:23.229636 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_pin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f41e0a8] now 1+0
2015-03-31 11:02:23.229645 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229660 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229674 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229685 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229695 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229706 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229726 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.229747 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.229762 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407504 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.229766 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407504 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.229776 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.229779 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.229786 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.229788 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.229802 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407504 cr=0x9ae6400)
2015-03-31 11:02:23.229821 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229837 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.229852 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229862 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.229872 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229883 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.229904 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.229914 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.229925 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.229939 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.229950 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.229960 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_unpin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8] now 0+0
2015-03-31 11:02:23.230207 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407505 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.230225 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407505 cr=0x9ae1b80)
2015-03-31 11:02:23.230228 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407505 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.230231 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407505 cr=0x9ae1b80) #1000006b2b4
2015-03-31 11:02:23.230233 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b4 snap head
2015-03-31 11:02:23.230234 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.230235 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.230247 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407505 cr=0x9ae1b80)
2015-03-31 11:02:23.230249 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.230264 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.230275 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.230286 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.230295 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.230309 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.230323 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.230333 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.230344 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.230353 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.230364 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.230374 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_pin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8] now 1+0
2015-03-31 11:02:23.230383 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.230398 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.230412 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.230423 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.230433 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.230444 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.230464 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.230486 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.230500 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407505 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.230504 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407505 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.230514 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.230517 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.230520 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.230524 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.230537 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407505 cr=0x9ae1b80)
2015-03-31 11:02:23.230555 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.230571 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.230585 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.230595 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.230604 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.230626 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.230636 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.230647 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.230656 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.230670 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.230681 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.230691 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_unpin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8] now 0+0
2015-03-31 11:02:23.234674 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e54 follows 0 op update
2015-03-31 11:02:23.234678 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234689 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.234691 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.234709 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.234710 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234717 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234725 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.234727 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234737 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234757 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234763 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.234765 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234773 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234777 7fbe406af700  5 mds.0.log _submit_thread 5419562492~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.234780 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234800 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234807 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234814 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234821 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234827 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.234836 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.274022 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407506 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.274044 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407506 cr=0x9ae1400)
2015-03-31 11:02:23.274048 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407506 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.274052 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407506 cr=0x9ae1400) #1000006b2b4
2015-03-31 11:02:23.274054 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b4 snap head
2015-03-31 11:02:23.274056 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.274057 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.274074 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407506 cr=0x9ae1400)
2015-03-31 11:02:23.274077 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.274095 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.274107 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.274118 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.274129 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.274143 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.274158 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.274168 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.274179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.274189 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.274199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.274209 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_pin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8] now 1+0
2015-03-31 11:02:23.274220 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.274235 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.274260 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.274282 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.274291 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.274301 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.274311 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.274320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.274336 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407506 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.274339 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407506 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.274350 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.274353 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.274358 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.274360 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.274374 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407506 cr=0x9ae1400)
2015-03-31 11:02:23.274393 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.274409 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.274424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.274434 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.274445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.274455 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.274476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.274487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.274497 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.274511 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.274521 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.274531 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_unpin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8] now 0+0
2015-03-31 11:02:23.275811 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e54 follows 0 op update
2015-03-31 11:02:23.275814 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275826 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.275828 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.275846 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.275847 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275854 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275862 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.275864 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275869 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275877 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275883 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.275884 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275891 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275898 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275902 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275908 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.275910 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.275911 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e54 [2,head] /test_small/small1/blarg10029 auth v136876 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c2768]
2015-03-31 11:02:23.275918 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.315031 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407507 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.315055 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407507 cr=0x9ae0a00)
2015-03-31 11:02:23.315058 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407507 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.315061 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407507 cr=0x9ae0a00) #1000006b2b4
2015-03-31 11:02:23.315063 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b4 snap head
2015-03-31 11:02:23.315065 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.315066 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.315082 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407507 cr=0x9ae0a00)
2015-03-31 11:02:23.315085 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315103 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315115 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.315126 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.315137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315151 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.315165 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315175 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.315186 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.315196 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.315207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.315216 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_pin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8] now 1+0
2015-03-31 11:02:23.315226 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315242 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315289 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.315307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.315317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.315326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.315341 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407507 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.315346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407507 getattr Xs #1000006b2b4 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.315356 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.315360 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.315364 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.315366 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.315380 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407507 cr=0x9ae0a00)
2015-03-31 11:02:23.315399 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315415 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.315461 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.315482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.315492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f41e0a8]
2015-03-31 11:02:23.315502 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.315517 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.315528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.315539 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) auth_unpin by 0x242cda00 on [inode 1000006b2b4 [2,head] {#1000006b2b4 /test_small/small5/blarg10029} auth v178660 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f41e0a8] now 0+0
2015-03-31 11:02:23.315858 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407508 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.315876 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407508 cr=0x682d000)
2015-03-31 11:02:23.315878 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407508 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.315881 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407508 cr=0x682d000) #100000003ef
2015-03-31 11:02:23.315883 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003ef snap head
2015-03-31 11:02:23.315885 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.315886 7fbe462be700 10 mds.0.server ref is [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.315899 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407508 cr=0x682d000)
2015-03-31 11:02:23.315901 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315917 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315927 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.315937 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.315943 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.315957 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.315971 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.315980 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.315991 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.316000 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cda00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.316009 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.316015 7fbe462be700 10 mds.0.cache.ino(100000003ef) auth_pin by 0x242cda00 on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8] now 1+0
2015-03-31 11:02:23.316022 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.316036 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.316050 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.316060 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.316071 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.316080 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.316089 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316096 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316112 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316130 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316142 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407508 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.316146 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407508 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.316156 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.316160 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.316164 7fbe462be700 10 mds.0.cache.ino(100000003ef) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.316166 7fbe462be700 10 mds.0.cache.ino(100000003ef) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.316179 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407508 cr=0x682d000)
2015-03-31 11:02:23.316198 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.316213 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.316227 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.316238 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.316248 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.316257 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.316277 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316284 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316291 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316296 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.316301 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.316316 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.316326 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cda00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.316335 7fbe462be700 10 mds.0.cache.ino(100000003ef) auth_unpin by 0x242cda00 on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bb8c8] now 0+0
2015-03-31 11:02:23.316712 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407509 lookup #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.316732 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407509 cr=0x23fbb700)
2015-03-31 11:02:23.316735 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407509 lookup #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.316738 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407509 cr=0x23fbb700) #1000006026a/blarg1003
2015-03-31 11:02:23.316740 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.316742 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1003 [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock) v=177644 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f280]
2015-03-31 11:02:23.316751 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.316753 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407509 lookup #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.316764 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.316776 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407509 cr=0x23fbb700)
2015-03-31 11:02:23.317250 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407510 lookup #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.317268 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407510 cr=0x60a8500)
2015-03-31 11:02:23.317271 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407510 lookup #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.317274 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407510 cr=0x60a8500) #1000006026a/blarg1003
2015-03-31 11:02:23.317276 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.317279 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1003 [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock) v=177644 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f280]
2015-03-31 11:02:23.317287 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.317288 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407510 lookup #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.317300 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.317312 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407510 cr=0x60a8500)
2015-03-31 11:02:23.317776 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407511 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.317803 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407511 cr=0xaeeda00)
2015-03-31 11:02:23.317806 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407511 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.317809 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407511 cr=0xaeeda00) #100000003ef
2015-03-31 11:02:23.317811 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003ef snap head
2015-03-31 11:02:23.317813 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.317814 7fbe462be700 10 mds.0.server ref is [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.317826 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407511 cr=0xaeeda00)
2015-03-31 11:02:23.317829 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.317846 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.317858 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.317868 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.317874 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.317888 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.317903 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.317912 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.317923 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.317933 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cda00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.317942 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.317949 7fbe462be700 10 mds.0.cache.ino(100000003ef) auth_pin by 0x242cda00 on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8] now 1+0
2015-03-31 11:02:23.317956 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.317970 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.317984 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318005 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318026 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.318035 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.318043 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318049 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318055 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318061 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318074 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407511 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.318078 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407511 getattr Xs #100000003ef 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.318089 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.318092 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.318097 7fbe462be700 10 mds.0.cache.ino(100000003ef) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.318099 7fbe462be700 10 mds.0.cache.ino(100000003ef) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.318113 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407511 cr=0xaeeda00)
2015-03-31 11:02:23.318132 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.318148 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.318162 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318173 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318183 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.318191 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.318200 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318218 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318225 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318231 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bb8c8]
2015-03-31 11:02:23.318237 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.318251 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.318262 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cda00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.318271 7fbe462be700 10 mds.0.cache.ino(100000003ef) auth_unpin by 0x242cda00 on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9bb8c8] now 0+0
2015-03-31 11:02:23.318649 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407512 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.318670 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407512 cr=0x9cc5c80)
2015-03-31 11:02:23.318673 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407512 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.318676 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407512 cr=0x9cc5c80) #1000006026a
2015-03-31 11:02:23.318678 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.318679 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.318680 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.318699 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407512 cr=0x9cc5c80)
2015-03-31 11:02:23.318702 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.318718 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318729 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.318740 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.318753 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.318768 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318777 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.318793 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.318803 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.318814 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.318829 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.318844 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318854 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.318874 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.318896 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.318905 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.318915 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31330} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.318932 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407512 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.318936 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407512 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.318946 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.318949 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.318954 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31331
2015-03-31 11:02:23.318956 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31331 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.318969 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407512 cr=0x9cc5c80)
2015-03-31 11:02:23.318989 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319004 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319018 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319029 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319040 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319051 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319072 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319082 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319092 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.319106 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.319116 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.319506 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407513 create #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.319526 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407513 cr=0x9835a00)
2015-03-31 11:02:23.319528 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407513 create #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.319531 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1003
2015-03-31 11:02:23.319533 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407513 cr=0x9835a00) #1000006026a/blarg1003
2015-03-31 11:02:23.319535 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1003
2015-03-31 11:02:23.319536 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.319538 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.319539 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178661 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.319549 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178661 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.319557 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1003 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178661 v=178657 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.319568 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407513 cr=0x9835a00)
2015-03-31 11:02:23.319574 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319593 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319605 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319616 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock) v=177644 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f280]
2015-03-31 11:02:23.319623 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319638 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.319652 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319662 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.319673 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319683 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.319694 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock) v=177644 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f280]
2015-03-31 11:02:23.319699 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1003) auth_pin by 0x242cda00 on [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock) v=177644 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280] now 1+0
2015-03-31 11:02:23.319706 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock) v=177644 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.319711 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177644 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.319726 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177644 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.319732 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177644 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.319736 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177644 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.319753 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1003) auth_pin by 0x676f3d8 on [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177644 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280] now 2+0
2015-03-31 11:02:23.319758 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cda00) [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dn xlock x=1 by 0x242cda00) (dversion lock w=1 last_client=708310) v=177644 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.319764 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319778 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319797 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319810 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.319823 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319833 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319842 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319852 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.319861 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319871 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319881 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319891 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319900 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319910 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319919 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319929 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319939 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319948 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.319968 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b5 ([1000006b2b6~36d], 877 left)
2015-03-31 11:02:23.319970 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.319972 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b5 [2,head] #1000006b2b5 auth v1 s=0 n() (iversion lock) 0x3f38cd88]
2015-03-31 11:02:23.319976 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178662
2015-03-31 11:02:23.319977 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1003)  pre_dirty [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dn xlock x=1 by 0x242cda00) (dversion lock w=1 last_client=708310) pv=178662 v=177644 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.319986 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f38cd88]
2015-03-31 11:02:23.319993 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cda00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178662 v=178657 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:23.320003 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x4e38fd0
2015-03-31 11:02:23.320004 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178663
2015-03-31 11:02:23.320005 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178657 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.320011 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178657 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.320019 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f38cd88]
2015-03-31 11:02:23.320025 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.320028 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295232 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320042 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295234
2015-03-31 11:02:23.320043 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295234 v=3295228 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.320047 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295234 (current v 3295228)
2015-03-31 11:02:23.320048 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178657 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=36+1568,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.320056 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.320058 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cda00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295234 v=3295229 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382339=382332+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:23.320068 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d4780
2015-03-31 11:02:23.320069 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295235
2015-03-31 11:02:23.320070 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320081 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320091 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320102 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.320103 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.562874 < 1, stopping
2015-03-31 11:02:23.320107 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320118 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.320121 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295234 v=3295228 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.320127 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31331} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320140 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f38cd88]
2015-03-31 11:02:23.320146 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.320149 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320157 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.320158 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320166 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320172 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320179 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320185 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320192 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320199 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320205 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320212 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320218 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320224 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320231 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320238 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320244 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320251 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f38cd88]
2015-03-31 11:02:23.320260 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.320261 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.320264 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f38cd88 tracedn 0x676f280
2015-03-31 11:02:23.320266 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cda00) [dentry #1/test_small/small5/blarg1003 [2,head] auth NULL (dn xlock x=1 by 0x242cda00) (dversion lock w=1 last_client=708310) pv=178662 v=177644 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f280]
2015-03-31 11:02:23.320272 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407513 create #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.320281 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.320284 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31332
2015-03-31 11:02:23.320286 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31332 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.320291 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.320295 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.320297 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) including xattrs version 0
2015-03-31 11:02:23.320335 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.320363 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.320378 7fbe406af700  5 mds.0.log _submit_thread 5419563351~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.320378 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.320391 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.320404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320426 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320437 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320447 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320458 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320470 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320481 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320503 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320513 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320825 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407514 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.320844 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407514 cr=0x25f4cd80)
2015-03-31 11:02:23.320846 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407514 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.320849 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407514 cr=0x25f4cd80) #1000006b2b5
2015-03-31 11:02:23.320851 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b5 snap head
2015-03-31 11:02:23.320852 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.320854 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f38cd88]
2015-03-31 11:02:23.320867 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407514 cr=0x25f4cd80)
2015-03-31 11:02:23.320870 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.320885 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320895 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320906 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f38cd88]
2015-03-31 11:02:23.320916 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.320930 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.320944 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.320954 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.320965 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.320975 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.320986 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f38cd88]
2015-03-31 11:02:23.320995 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_pin by 0x2b0c0f00 on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f38cd88] now 1+0
2015-03-31 11:02:23.321006 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321021 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321045 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321055 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321066 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321087 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.321108 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.321124 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407514 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.321128 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407514 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.321138 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.321141 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.321145 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.321148 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.321160 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407514 cr=0x25f4cd80)
2015-03-31 11:02:23.321179 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321195 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321209 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321220 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321230 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321241 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321262 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.321273 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.321282 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.321297 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.321307 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.321318 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_unpin by 0x2b0c0f00 on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38cd88] now 0+0
2015-03-31 11:02:23.321564 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407515 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.321582 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407515 cr=0x968df00)
2015-03-31 11:02:23.321584 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407515 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.321587 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407515 cr=0x968df00) #1000006b2b5
2015-03-31 11:02:23.321589 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b5 snap head
2015-03-31 11:02:23.321590 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.321591 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.321604 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407515 cr=0x968df00)
2015-03-31 11:02:23.321607 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321621 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321632 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321642 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.321651 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321665 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.321679 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321689 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.321699 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321709 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.321720 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.321729 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_pin by 0x2b0c0f00 on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38cd88] now 1+0
2015-03-31 11:02:23.321738 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321767 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321777 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321792 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321802 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321823 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.321845 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.321859 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407515 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.321863 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407515 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.321873 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.321876 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.321880 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.321883 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.321896 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407515 cr=0x968df00)
2015-03-31 11:02:23.321915 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.321944 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321954 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.321964 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.321996 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.322007 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.322016 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.322030 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.322041 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.322051 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_unpin by 0x2b0c0f00 on [inode 1000006b2b5 [2,head] {#1000006b2b5 /test_small/small5/blarg1003} auth v178662 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f38cd88] now 0+0
2015-03-31 11:02:23.323116 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407516 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.323137 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407516 cr=0x2c736180)
2015-03-31 11:02:23.323140 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407516 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.323143 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407516 cr=0x2c736180) #1000006026a
2015-03-31 11:02:23.323145 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.323146 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.323148 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323166 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407516 cr=0x2c736180)
2015-03-31 11:02:23.323169 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323185 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323196 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323221 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.323235 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323245 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.323256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323266 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.323278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323307 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323316 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323336 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323359 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323368 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323378 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31332} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323394 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407516 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.323398 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407516 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.323409 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.323413 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.323417 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31333
2015-03-31 11:02:23.323419 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31333 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.323433 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407516 cr=0x2c736180)
2015-03-31 11:02:23.323452 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323514 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323525 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323535 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323546 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323556 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.323570 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.323581 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.323821 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407517 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.323842 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407517 cr=0x9cc6400)
2015-03-31 11:02:23.323844 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407517 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.323847 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407517 cr=0x9cc6400) #1000006026a
2015-03-31 11:02:23.323849 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.323851 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.323852 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323867 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407517 cr=0x9cc6400)
2015-03-31 11:02:23.323870 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323894 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323905 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323919 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.323933 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.323942 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.323953 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.323963 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.323974 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.323988 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.324002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.324012 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.324023 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.324033 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.324043 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.324054 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.324065 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.324099 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.324109 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x297d15f0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:23.324111 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.338646 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.338652 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.338661 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.338663 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) mark_dirty [inode 1000006b2b3 [2,head] /test_small/small5/blarg10028 auth v178657 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.338678 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10028)  mark_dirty [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178658 v=177640 ap=2+0 inode=0x3f3a1030 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0]
2015-03-31 11:02:23.338687 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178658 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 36=36+0) hs=37+1567,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178658
2015-03-31 11:02:23.338698 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) mark_dirty_parent
2015-03-31 11:02:23.338700 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295228 pv3295234 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 36=36+0) n(v1 rc2015-03-31 11:03:00.000000 37=36+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.338715 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295234 v=3295228 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.338719 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295230 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382339=382332+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295230
2015-03-31 11:02:23.338730 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178659 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 37=37+0) hs=37+1567,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178659
2015-03-31 11:02:23.338738 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295231 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382340=382333+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295231
2015-03-31 11:02:23.338747 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b3 [2,head] /test_small/small5/blarg10028 auth v178658 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a1030]
2015-03-31 11:02:23.338758 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.338760 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27510 client_caps(grant ino 1000006b2b3 1851496 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.338781 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178658 ap=2+0 inode=0x3f3a1030 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0]
2015-03-31 11:02:23.338798 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407493 create #1000006026a/blarg10028 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.338810 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b3
2015-03-31 11:02:23.338813 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178658 ap=2+0 inode=0x3f3a1030 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0]
2015-03-31 11:02:23.338823 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178658 ap=2+0 inode=0x3f3a1030 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0]
2015-03-31 11:02:23.338829 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178658 ap=2+0 inode=0x3f3a1030 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0]
2015-03-31 11:02:23.338834 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10028) auth_unpin by 0x676f018 on [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178658 ap=1+0 inode=0x3f3a1030 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0] now 1+0
2015-03-31 11:02:23.338842 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178658 ap=1+0 inode=0x3f3a1030 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0]
2015-03-31 11:02:23.338847 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.338872 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295230 pv3295234 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 38=37+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.338896 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295230 pv3295234 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 38=37+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.338919 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295230 pv3295234 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 38=37+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.338929 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178658 ap=1+0 inode=0x3f3a1030 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676eec0]
2015-03-31 11:02:23.338944 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407493 cr=0x23fbcb00)
2015-03-31 11:02:23.338952 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.338969 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.338980 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2a625500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295231 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382340=382333+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:23.338990 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2a625500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178659 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 37=37+0) hs=37+1567,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:23.338998 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295230 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 38=37+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.339010 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10028) auth_unpin by 0x2a625500 on [dentry #1/test_small/small5/blarg10028 [2,head] auth (dn sync l=1) (dversion lock) v=178658 inode=0x3f3a1030 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676eec0] now 0+0
2015-03-31 11:02:23.339046 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.339048 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.339052 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.339054 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) mark_dirty [inode 1000006b2b4 [2,head] /test_small/small5/blarg10029 auth v178659 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.339065 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10029)  mark_dirty [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178660 v=177642 ap=2+0 inode=0x3f41e0a8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0]
2015-03-31 11:02:23.339073 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178660 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 37=37+0) hs=38+1566,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178660
2015-03-31 11:02:23.339082 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) mark_dirty_parent
2015-03-31 11:02:23.339083 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295230 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 37=37+0) n(v1 rc2015-03-31 11:03:00.000000 38=37+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339096 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295234 v=3295230 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.339100 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295232 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382340=382333+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295232
2015-03-31 11:02:23.339110 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178661 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 38=38+0) hs=38+1566,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178661
2015-03-31 11:02:23.339118 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295233 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382341=382334+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295233
2015-03-31 11:02:23.339127 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b4 [2,head] /test_small/small5/blarg10029 auth v178660 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f41e0a8]
2015-03-31 11:02:23.339137 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.339139 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27511 client_caps(grant ino 1000006b2b4 1851497 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.339158 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178660 ap=2+0 inode=0x3f41e0a8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0]
2015-03-31 11:02:23.339166 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407503 create #1000006026a/blarg10029 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.339177 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b4
2015-03-31 11:02:23.339181 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178660 ap=2+0 inode=0x3f41e0a8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0]
2015-03-31 11:02:23.339189 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178660 ap=2+0 inode=0x3f41e0a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0]
2015-03-31 11:02:23.339196 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178660 ap=2+0 inode=0x3f41e0a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0]
2015-03-31 11:02:23.339201 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10029) auth_unpin by 0x676f1f8 on [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178660 ap=1+0 inode=0x3f41e0a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0] now 1+0
2015-03-31 11:02:23.339207 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178660 ap=1+0 inode=0x3f41e0a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0]
2015-03-31 11:02:23.339212 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339226 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295232 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 39=38+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339239 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295232 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 39=38+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339251 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295232 pv3295234 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 39=38+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339262 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178660 ap=1+0 inode=0x3f41e0a8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f0a0]
2015-03-31 11:02:23.339276 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407503 cr=0x9ae2800)
2015-03-31 11:02:23.339284 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367c600 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.339300 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367c600 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.339312 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367c600 on [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295233 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382341=382334+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:23.339322 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367c600 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178661 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 38=38+0) hs=38+1566,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:23.339331 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295232 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 39=38+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.339352 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10029) auth_unpin by 0x2367c600 on [dentry #1/test_small/small5/blarg10029 [2,head] auth (dn sync l=1) (dversion lock) v=178660 inode=0x3f41e0a8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676f0a0] now 0+0
2015-03-31 11:02:23.339374 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.339376 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.339391 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.339393 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) mark_dirty [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178661 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.339404 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1003)  mark_dirty [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178662 v=177644 ap=2+0 inode=0x3f38cd88 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280]
2015-03-31 11:02:23.339410 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178662 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 38=38+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178662
2015-03-31 11:02:23.339419 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) mark_dirty_parent
2015-03-31 11:02:23.339420 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295232 pv3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 38=38+0) n(v1 rc2015-03-31 11:03:00.000000 39=38+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339432 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295234 v=3295232 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.339436 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295234 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382341=382334+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295234
2015-03-31 11:02:23.339446 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178663 v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178663
2015-03-31 11:02:23.339453 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295235 v=3295235 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295235
2015-03-31 11:02:23.339462 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.339472 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.339474 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27512 client_caps(grant ino 1000006b2b5 1851498 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.339492 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178662 ap=2+0 inode=0x3f38cd88 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280]
2015-03-31 11:02:23.339500 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407513 create #1000006026a/blarg1003 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.339510 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b5
2015-03-31 11:02:23.339512 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178662 ap=2+0 inode=0x3f38cd88 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280]
2015-03-31 11:02:23.339520 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178662 ap=2+0 inode=0x3f38cd88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280]
2015-03-31 11:02:23.339526 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178662 ap=2+0 inode=0x3f38cd88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280]
2015-03-31 11:02:23.339532 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1003) auth_unpin by 0x676f3d8 on [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178662 ap=1+0 inode=0x3f38cd88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280] now 1+0
2015-03-31 11:02:23.339538 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178662 ap=1+0 inode=0x3f38cd88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280]
2015-03-31 11:02:23.339543 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339558 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339570 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339582 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339594 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339605 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:23.339608 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.339619 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.339630 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:23.339632 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407517 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.339636 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407517 cr=0x9cc6400) #1000006026a
2015-03-31 11:02:23.339638 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.339639 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.339640 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339651 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407517 cr=0x9cc6400)
2015-03-31 11:02:23.339655 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.339680 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339690 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339700 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.339714 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339724 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339734 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.339748 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339758 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339768 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339793 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339803 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339813 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339823 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339831 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339841 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339851 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31333} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339869 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407517 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.339873 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407517 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.339884 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.339887 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.339891 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31334
2015-03-31 11:02:23.339893 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31334 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.339918 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407517 cr=0x9cc6400)
2015-03-31 11:02:23.339937 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.339953 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.339967 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339977 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.339987 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.339998 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340008 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340029 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340040 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340050 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340061 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340071 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340081 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340090 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340099 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0f00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.340113 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0f00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.340124 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.340150 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340162 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340172 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340181 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178662 ap=1+0 inode=0x3f38cd88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f280]
2015-03-31 11:02:23.340190 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340211 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407513 cr=0x9835a00)
2015-03-31 11:02:23.340219 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cda00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.340233 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cda00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.340244 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cda00 on [dir 10000000000 /test_small/ [2,head] auth v=3295235 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:23.340255 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cda00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178663 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:23.340263 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cda00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=0+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:23.340273 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1003) auth_unpin by 0x242cda00 on [dentry #1/test_small/small5/blarg1003 [2,head] auth (dn sync l=1) (dversion lock) v=178662 inode=0x3f38cd88 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676f280] now 0+0
2015-03-31 11:02:23.340321 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003ef follows 0 op update
2015-03-31 11:02:23.340330 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340344 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.340346 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.340367 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.340368 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340374 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340382 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.340384 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340396 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340405 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340412 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.340413 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340422 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340428 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340431 7fbe406af700  5 mds.0.log _submit_thread 5419564990~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.340433 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340448 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340456 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340461 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340467 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.340476 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.340495 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407518 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.340516 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407518 cr=0x9cc5500)
2015-03-31 11:02:23.340518 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407518 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.340522 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407518 cr=0x9cc5500) #1000006b2b5
2015-03-31 11:02:23.340524 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b5 snap head
2015-03-31 11:02:23.340525 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.340526 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.340540 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407518 cr=0x9cc5500)
2015-03-31 11:02:23.340543 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.340560 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.340571 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.340581 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.340590 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.340605 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.340630 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.340650 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.340661 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.340670 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.340680 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.340688 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_pin by 0x2367cb00 on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88] now 1+0
2015-03-31 11:02:23.340698 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.340712 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.340737 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.340746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.340756 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340765 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340774 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.340794 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.340812 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407518 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.340815 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407518 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.340826 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.340830 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.340834 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.340837 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.340851 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407518 cr=0x9cc5500)
2015-03-31 11:02:23.340870 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.340886 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.340901 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.340911 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.340920 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.340951 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.340960 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.340970 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.340985 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.340996 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=0+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:23.341006 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_unpin by 0x2367cb00 on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88] now 0+0
2015-03-31 11:02:23.341044 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407519 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.341061 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407519 cr=0x930fd00)
2015-03-31 11:02:23.341063 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407519 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.341066 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407519 cr=0x930fd00) #1000006026a
2015-03-31 11:02:23.341067 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.341069 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.341070 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.341082 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407519 cr=0x930fd00)
2015-03-31 11:02:23.341085 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.341099 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.341109 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.341119 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.341133 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.341147 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.341157 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.341167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.341177 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.341197 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.341211 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.341224 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.341234 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.341244 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341263 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341273 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31334} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341290 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407519 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.341294 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407519 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.341304 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.341307 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.341312 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31335
2015-03-31 11:02:23.341314 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31335 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.341327 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407519 cr=0x930fd00)
2015-03-31 11:02:23.341349 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.341375 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.341389 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.341399 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.341408 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341418 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341449 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.341458 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.341472 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.341482 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.381040 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407520 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381062 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407520 cr=0x8f08f00)
2015-03-31 11:02:23.381066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407520 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381069 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407520 cr=0x8f08f00) #1000006026a
2015-03-31 11:02:23.381071 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.381073 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.381074 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.381090 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407520 cr=0x8f08f00)
2015-03-31 11:02:23.381093 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.381110 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.381121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.381131 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.381145 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.381159 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.381169 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.381180 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.381190 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.381201 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.381215 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.381229 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.381240 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.381250 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381260 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381270 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381280 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31335} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381297 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407520 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381301 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407520 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381322 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.381337 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.381342 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31336
2015-03-31 11:02:23.381344 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31336 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.381357 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407520 cr=0x8f08f00)
2015-03-31 11:02:23.381376 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.381392 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.381406 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.381417 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.381427 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381437 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381476 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.381490 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.381500 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.381541 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003ef follows 0 op update
2015-03-31 11:02:23.381544 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381553 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.381555 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.381570 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.381571 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381578 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381585 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.381587 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381593 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381601 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381605 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.381606 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381614 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381620 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381626 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381631 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.381633 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.381634 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003ef [2,head] /test_small/small1/blarg1003 auth v59068 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bb8c8]
2015-03-31 11:02:23.381641 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.381653 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407521 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381672 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407521 cr=0xaee8a00)
2015-03-31 11:02:23.381674 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407521 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381677 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407521 cr=0xaee8a00) #1000006b2b5
2015-03-31 11:02:23.381679 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b5 snap head
2015-03-31 11:02:23.381680 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.381681 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.381702 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407521 cr=0xaee8a00)
2015-03-31 11:02:23.381705 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.381719 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.381741 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.381750 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.381758 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.381772 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.381791 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.381800 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.381809 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.381818 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.381828 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88]
2015-03-31 11:02:23.381836 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_pin by 0x2367cb00 on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88] now 1+0
2015-03-31 11:02:23.381845 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.381858 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.381871 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.381881 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.381890 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381899 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.381908 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.381917 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.381931 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407521 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381935 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407521 getattr Xs #1000006b2b5 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.381945 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.381948 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.381952 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:23.381955 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.381968 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407521 cr=0xaee8a00)
2015-03-31 11:02:23.381987 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.382003 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.382017 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.382027 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.382037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.382046 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.382056 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.382076 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f38cd88]
2015-03-31 11:02:23.382086 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.382101 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.382112 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=0+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:23.382122 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) auth_unpin by 0x2367cb00 on [inode 1000006b2b5 [2,head] /test_small/small5/blarg1003 auth v178662 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f38cd88] now 0+0
2015-03-31 11:02:23.382395 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407522 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.382413 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407522 cr=0x968fa80)
2015-03-31 11:02:23.382415 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407522 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.382418 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407522 cr=0x968fa80) #10000004e38
2015-03-31 11:02:23.382420 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e38 snap head
2015-03-31 11:02:23.382422 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.382423 7fbe462be700 10 mds.0.server ref is [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.382433 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407522 cr=0x968fa80)
2015-03-31 11:02:23.382436 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.382450 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.382461 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.382470 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.382475 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.382488 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.382502 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.382512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.382523 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.382531 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367cb00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.382541 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.382546 7fbe462be700 10 mds.0.cache.ino(10000004e38) auth_pin by 0x2367cb00 on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8] now 1+0
2015-03-31 11:02:23.382552 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.382566 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.382579 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.382589 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.382599 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.382608 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.382617 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382623 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382630 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382636 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382659 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407522 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.382675 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407522 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.382685 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.382688 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.382692 7fbe462be700 10 mds.0.cache.ino(10000004e38) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.382695 7fbe462be700 10 mds.0.cache.ino(10000004e38) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.382708 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407522 cr=0x968fa80)
2015-03-31 11:02:23.382727 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.382742 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.382756 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.382766 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.382776 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.382788 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.382807 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382814 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382820 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382826 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.382832 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.382846 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.382856 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367cb00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.382865 7fbe462be700 10 mds.0.cache.ino(10000004e38) auth_unpin by 0x2367cb00 on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c14f8] now 0+0
2015-03-31 11:02:23.382998 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407523 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383016 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407523 cr=0x236b8000)
2015-03-31 11:02:23.383019 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407523 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383022 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407523 cr=0x236b8000) #1000006026a
2015-03-31 11:02:23.383024 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.383025 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.383026 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.383038 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407523 cr=0x236b8000)
2015-03-31 11:02:23.383041 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.383055 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.383064 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.383074 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.383087 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.383101 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.383111 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.383122 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.383131 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.383141 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383155 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383169 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383179 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383189 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383199 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383209 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383219 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31336} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383234 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407523 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383239 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407523 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383261 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.383263 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.383267 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31337
2015-03-31 11:02:23.383269 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31337 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.383282 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407523 cr=0x236b8000)
2015-03-31 11:02:23.383301 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383316 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383329 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383340 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383349 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383360 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383368 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383388 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383398 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.383412 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.383423 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.383522 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407524 lookup #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383538 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407524 cr=0xb267a80)
2015-03-31 11:02:23.383541 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407524 lookup #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383543 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407524 cr=0xb267a80) #1000006026a/blarg10030
2015-03-31 11:02:23.383545 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.383548 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10030 [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock) v=177646 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f460]
2015-03-31 11:02:23.383556 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.383558 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407524 lookup #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383567 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.383578 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407524 cr=0xb267a80)
2015-03-31 11:02:23.383629 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407525 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383645 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407525 cr=0x9308c80)
2015-03-31 11:02:23.383647 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407525 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383650 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407525 cr=0x9308c80) #1000006026a
2015-03-31 11:02:23.383651 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.383652 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.383653 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.383667 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407525 cr=0x9308c80)
2015-03-31 11:02:23.383670 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.383684 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.383694 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.383704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.383717 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.383731 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.383741 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.383751 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.383759 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.383769 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383788 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383801 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383811 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383821 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383831 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383841 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383850 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31337} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.383876 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407525 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383880 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407525 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.383890 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.383893 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.383897 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31338
2015-03-31 11:02:23.383899 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31338 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.383912 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407525 cr=0x9308c80)
2015-03-31 11:02:23.383931 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383947 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.383961 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383982 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.383991 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.384001 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.384022 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.384032 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.384041 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.384055 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.384065 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.384137 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407526 lookup #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.384153 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407526 cr=0x52d4100)
2015-03-31 11:02:23.384155 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407526 lookup #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.384158 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407526 cr=0x52d4100) #1000006026a/blarg10030
2015-03-31 11:02:23.384160 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.384162 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10030 [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock) v=177646 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f460]
2015-03-31 11:02:23.384169 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.384170 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407526 lookup #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.384180 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.384190 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407526 cr=0x52d4100)
2015-03-31 11:02:23.424028 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407527 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424049 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407527 cr=0x8f0b980)
2015-03-31 11:02:23.424053 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407527 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424056 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407527 cr=0x8f0b980) #10000004e38
2015-03-31 11:02:23.424058 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e38 snap head
2015-03-31 11:02:23.424060 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.424061 7fbe462be700 10 mds.0.server ref is [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.424075 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407527 cr=0x8f0b980)
2015-03-31 11:02:23.424078 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.424095 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.424107 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.424116 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.424122 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.424136 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.424151 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.424161 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.424172 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.424181 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367cb00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.424190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.424196 7fbe462be700 10 mds.0.cache.ino(10000004e38) auth_pin by 0x2367cb00 on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8] now 1+0
2015-03-31 11:02:23.424203 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424218 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424233 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424244 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424254 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.424263 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.424273 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424297 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424314 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424327 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407527 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424331 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407527 getattr Xs #10000004e38 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424342 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.424345 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.424350 7fbe462be700 10 mds.0.cache.ino(10000004e38) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.424352 7fbe462be700 10 mds.0.cache.ino(10000004e38) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.424366 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407527 cr=0x8f0b980)
2015-03-31 11:02:23.424385 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424400 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424415 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424425 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.424444 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.424453 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424471 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c14f8]
2015-03-31 11:02:23.424491 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.424505 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.424516 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367cb00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.424525 7fbe462be700 10 mds.0.cache.ino(10000004e38) auth_unpin by 0x2367cb00 on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c14f8] now 0+0
2015-03-31 11:02:23.424559 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407528 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424576 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407528 cr=0x9689900)
2015-03-31 11:02:23.424578 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407528 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424581 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407528 cr=0x9689900) #1000006026a
2015-03-31 11:02:23.424583 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.424584 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.424586 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.424598 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407528 cr=0x9689900)
2015-03-31 11:02:23.424601 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.424615 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.424625 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.424635 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.424648 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.424662 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.424671 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.424682 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.424691 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.424712 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424726 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424761 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424771 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424780 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424796 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424806 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424816 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31338} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424843 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407528 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424848 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407528 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.424859 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.424862 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.424866 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31339
2015-03-31 11:02:23.424868 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31339 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.424883 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407528 cr=0x9689900)
2015-03-31 11:02:23.424891 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424907 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.424922 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424933 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.424943 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424953 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424973 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.424982 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.424997 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.425008 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.425044 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407529 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.425062 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407529 cr=0xa929b80)
2015-03-31 11:02:23.425064 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407529 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.425067 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407529 cr=0xa929b80) #1000006026a
2015-03-31 11:02:23.425068 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.425070 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.425072 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.425084 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407529 cr=0xa929b80)
2015-03-31 11:02:23.425086 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.425100 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.425110 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.425119 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.425131 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.425145 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.425155 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.425164 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.425174 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.425184 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.425212 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.425248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.425258 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.425269 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425287 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425308 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31339} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425323 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407529 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.425327 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407529 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.425336 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.425339 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.425343 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31340
2015-03-31 11:02:23.425345 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31340 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425359 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407529 cr=0xa929b80)
2015-03-31 11:02:23.425367 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.425383 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.425397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.425408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.425419 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425429 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425449 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425459 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.425474 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.425485 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.425519 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407530 readdir #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.425535 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407530 cr=0xaeef580)
2015-03-31 11:02:23.425537 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407530 readdir #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.425540 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407530 cr=0xaeef580) #1000006026a
2015-03-31 11:02:23.425541 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.425543 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.425543 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.425556 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407530 cr=0xaeef580)
2015-03-31 11:02:23.425558 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.425572 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.425582 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.425592 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.425605 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.425619 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.425629 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.425640 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.425649 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.425660 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.425701 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.425714 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.425722 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.425731 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425740 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425749 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425758 7fbe462be700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425767 7fbe462be700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425777 7fbe462be700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (idft sync r=1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31340} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.425795 7fbe462be700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:23.425796 7fbe462be700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178663 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:23.425804 7fbe462be700 10 mds.0.server snapid head
2015-03-31 11:02:23.425808 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:23.425811 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425815 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:23.425817 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425820 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:23.425822 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425824 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:23.425826 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425829 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:23.425831 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425833 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:23.425835 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425838 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:23.425839 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425842 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:23.425844 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425846 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:23.425848 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425851 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:23.425852 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425855 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:23.425857 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425859 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:23.425861 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425863 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:23.425865 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425868 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:23.425869 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425872 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:23.425874 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425876 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:23.425878 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425881 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:23.425882 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425885 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:23.425886 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425889 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:23.425890 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425893 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:23.425895 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425897 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:23.425899 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425902 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:23.425904 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425907 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:23.425908 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425911 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:23.425912 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425915 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:23.425916 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425919 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:23.425920 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425923 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:23.425924 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425927 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:23.425928 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425931 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:23.425933 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425935 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:23.425937 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425940 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:23.425941 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425944 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:23.425946 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425948 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:23.425949 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425952 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:23.425954 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425956 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:23.425958 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425960 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:23.425962 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425964 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:23.425966 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425969 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:23.425970 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.425973 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:23.425974 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.426024 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407530 readdir #1000006026a 2015-03-31 11:03:00.000000) v2 readdir num=39 bytes=10649 end=1 complete=1
2015-03-31 11:02:23.426029 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407530 readdir #1000006026a 2015-03-31 11:03:00.000000) v2 readdir num=39 end=1 complete=1
2015-03-31 11:02:23.426032 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407530 readdir #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.426043 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.426047 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.426050 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31341
2015-03-31 11:02:23.426052 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31341 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.426064 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407530 cr=0xaeef580)
2015-03-31 11:02:23.426083 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.426099 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.426113 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.426124 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.426134 7fbe462be700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.426145 7fbe462be700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.426156 7fbe462be700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.426177 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.426189 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.426198 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.426208 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.426222 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.426232 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.465813 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407531 create #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.465834 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407531 cr=0x9836900)
2015-03-31 11:02:23.465839 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.465856 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:23.465858 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.465869 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.465870 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.465881 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.465891 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.465901 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.465910 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.465912 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407531 create #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.465915 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10030
2015-03-31 11:02:23.465916 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407531 cr=0x9836900) #1000006026a/blarg10030
2015-03-31 11:02:23.465918 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10030
2015-03-31 11:02:23.465920 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.465921 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.465922 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178663 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:23.465930 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178663 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:23.465936 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10030 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178663 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:23.465945 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407531 cr=0x9836900)
2015-03-31 11:02:23.465951 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.465966 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.465976 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.465985 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock) v=177646 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f460]
2015-03-31 11:02:23.465992 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.466007 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.466021 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.466031 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.466051 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.466071 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+0 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.466080 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock) v=177646 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f460]
2015-03-31 11:02:23.466085 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10030) auth_pin by 0x2367cb00 on [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock) v=177646 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460] now 1+0
2015-03-31 11:02:23.466091 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock) v=177646 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466095 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177646 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466101 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177646 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466105 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177646 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466110 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177646 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466115 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10030) auth_pin by 0x676f5b8 on [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177646 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460] now 2+0
2015-03-31 11:02:23.466120 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367cb00) [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dn xlock x=1 by 0x2367cb00) (dversion lock w=1 last_client=708310) v=177646 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466125 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466139 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466153 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466165 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466178 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466187 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466197 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466206 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466215 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466224 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466233 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466242 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466252 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466261 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466270 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466279 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466289 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466298 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466307 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466325 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b6 ([1000006b2b7~36c], 876 left)
2015-03-31 11:02:23.466328 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.466330 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b6 [2,head] #1000006b2b6 auth v1 s=0 n() (iversion lock) 0x3f406fe8]
2015-03-31 11:02:23.466334 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178664
2015-03-31 11:02:23.466335 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10030)  pre_dirty [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dn xlock x=1 by 0x2367cb00) (dversion lock w=1 last_client=708310) pv=178664 v=177646 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466342 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f406fe8]
2015-03-31 11:02:23.466349 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367cb00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:23.466358 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc6b860
2015-03-31 11:02:23.466360 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178665
2015-03-31 11:02:23.466361 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178665 v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.466368 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178665 v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.466375 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f406fe8]
2015-03-31 11:02:23.466379 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.466381 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466394 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295236
2015-03-31 11:02:23.466395 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295236 v=3295234 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.466399 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295236 (current v 3295234)
2015-03-31 11:02:23.466401 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178665 v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.466408 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.466410 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367cb00 on [dir 10000000000 /test_small/ [2,head] auth v=3295235 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:23.466419 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3b6c620
2015-03-31 11:02:23.466420 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295237
2015-03-31 11:02:23.466421 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466433 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466443 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466454 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.466455 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.709233 < 1, stopping
2015-03-31 11:02:23.466459 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466469 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.466473 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295236 v=3295234 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.466479 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31341} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466492 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f406fe8]
2015-03-31 11:02:23.466499 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.466502 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466509 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.466511 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466518 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466524 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466531 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466538 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466545 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466551 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466557 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466563 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466569 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466576 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466582 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466589 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466595 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466602 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f406fe8]
2015-03-31 11:02:23.466612 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.466613 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.466615 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f406fe8 tracedn 0x676f460
2015-03-31 11:02:23.466617 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367cb00) [dentry #1/test_small/small5/blarg10030 [2,head] auth NULL (dn xlock x=1 by 0x2367cb00) (dversion lock w=1 last_client=708310) pv=178664 v=177646 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f460]
2015-03-31 11:02:23.466624 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407531 create #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.466632 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.466636 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31342
2015-03-31 11:02:23.466638 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31342 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.466643 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.466645 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.466648 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) including xattrs version 0
2015-03-31 11:02:23.466685 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466713 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466728 7fbe406af700  5 mds.0.log _submit_thread 5419565848~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.466728 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466741 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.466754 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466777 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466792 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466803 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.466814 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466826 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466837 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466847 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466858 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.466867 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467123 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407532 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.467143 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407532 cr=0x3b0eb80)
2015-03-31 11:02:23.467146 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407532 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.467150 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407532 cr=0x3b0eb80) #1000006b2b6
2015-03-31 11:02:23.467152 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b6 snap head
2015-03-31 11:02:23.467153 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.467154 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f406fe8]
2015-03-31 11:02:23.467167 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407532 cr=0x3b0eb80)
2015-03-31 11:02:23.467170 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467185 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.467196 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467207 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f406fe8]
2015-03-31 11:02:23.467216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467230 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.467244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.467254 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.467265 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467276 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.467286 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f406fe8]
2015-03-31 11:02:23.467296 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_pin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f406fe8] now 1+0
2015-03-31 11:02:23.467306 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.467344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.467354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467365 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467385 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.467406 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.467421 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407532 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.467425 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407532 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.467435 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.467439 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.467443 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.467446 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.467459 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407532 cr=0x3b0eb80)
2015-03-31 11:02:23.467478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.467518 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.467528 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467548 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.467570 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.467580 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.467595 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.467605 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.467615 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_unpin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8] now 0+0
2015-03-31 11:02:23.467891 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407533 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.467907 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407533 cr=0x23fbd280)
2015-03-31 11:02:23.467910 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407533 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.467913 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407533 cr=0x23fbd280) #1000006b2b6
2015-03-31 11:02:23.467914 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b6 snap head
2015-03-31 11:02:23.467916 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.467917 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.467929 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407533 cr=0x23fbd280)
2015-03-31 11:02:23.467932 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467947 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.467957 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.467968 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.467977 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.467991 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.468005 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.468015 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.468026 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.468036 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.468047 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.468056 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_pin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8] now 1+0
2015-03-31 11:02:23.468066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.468081 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.468095 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.468105 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.468115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.468126 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.468136 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.468156 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.468183 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407533 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.468187 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407533 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.468197 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.468199 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.468203 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.468206 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.468219 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407533 cr=0x23fbd280)
2015-03-31 11:02:23.468237 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.468253 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.468266 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.468276 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.468286 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.468296 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.468306 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.468327 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.468337 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.468352 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.468362 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.468373 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_unpin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8] now 0+0
2015-03-31 11:02:23.471701 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e38 follows 0 op update
2015-03-31 11:02:23.471705 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471715 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.471717 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.471735 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.471736 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471743 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471751 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.471752 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471764 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471788 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471795 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.471798 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471803 7fbe406af700  5 mds.0.log _submit_thread 5419567488~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.471805 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471821 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471828 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471833 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471841 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471847 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471854 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.471863 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.511030 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407534 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.511054 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407534 cr=0xab84380)
2015-03-31 11:02:23.511058 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407534 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.511062 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407534 cr=0xab84380) #1000006b2b6
2015-03-31 11:02:23.511064 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b6 snap head
2015-03-31 11:02:23.511066 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.511067 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.511084 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407534 cr=0xab84380)
2015-03-31 11:02:23.511087 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.511105 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.511116 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.511128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.511139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.511153 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.511168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.511177 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.511188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.511199 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.511210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.511220 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_pin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8] now 1+0
2015-03-31 11:02:23.511230 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.511245 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.511269 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.511292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.511301 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.511311 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.511321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.511330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.511346 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407534 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.511350 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407534 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.511360 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.511363 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.511367 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.511369 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.511383 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407534 cr=0xab84380)
2015-03-31 11:02:23.511402 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.511418 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.511432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.511443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.511454 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.511464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.511486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.511497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.511507 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.511521 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.511532 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.511543 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_unpin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8] now 0+0
2015-03-31 11:02:23.512814 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e38 follows 0 op update
2015-03-31 11:02:23.512818 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512829 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.512831 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.512849 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.512850 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512857 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512866 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.512868 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512874 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512880 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512886 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.512888 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512894 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512901 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512906 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512912 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.512913 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.512914 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e38 [2,head] /test_small/small1/blarg10030 auth v136878 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c14f8]
2015-03-31 11:02:23.512921 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.552042 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407535 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.552063 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407535 cr=0x237c4b00)
2015-03-31 11:02:23.552068 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407535 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.552071 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407535 cr=0x237c4b00) #1000006b2b6
2015-03-31 11:02:23.552073 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b6 snap head
2015-03-31 11:02:23.552074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.552075 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.552092 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407535 cr=0x237c4b00)
2015-03-31 11:02:23.552095 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.552113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.552124 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.552136 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.552146 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.552161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.552175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.552185 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.552196 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.552206 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.552217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.552226 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_pin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8] now 1+0
2015-03-31 11:02:23.552237 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.552253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.552278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.552300 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.552309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.552319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.552329 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.552338 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.552353 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407535 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.552357 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407535 getattr Xs #1000006b2b6 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.552368 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.552371 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.552376 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.552379 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.552392 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407535 cr=0x237c4b00)
2015-03-31 11:02:23.552411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.552428 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.552442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.552453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.552463 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.552474 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.552496 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.552506 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f406fe8]
2015-03-31 11:02:23.552517 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.552531 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.552542 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.552553 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) auth_unpin by 0x242cf800 on [inode 1000006b2b6 [2,head] {#1000006b2b6 /test_small/small5/blarg10030} auth v178664 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f406fe8] now 0+0
2015-03-31 11:02:23.552907 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407536 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.552929 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407536 cr=0x6fc8f00)
2015-03-31 11:02:23.552932 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407536 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.552935 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407536 cr=0x6fc8f00) #10000004e41
2015-03-31 11:02:23.552937 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e41 snap head
2015-03-31 11:02:23.552938 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.552940 7fbe462be700 10 mds.0.server ref is [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.552953 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407536 cr=0x6fc8f00)
2015-03-31 11:02:23.552956 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.552973 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.552985 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.552994 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.553001 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.553015 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.553030 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.553039 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.553051 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.553060 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cf800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.553069 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.553074 7fbe462be700 10 mds.0.cache.ino(10000004e41) auth_pin by 0x242cf800 on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0] now 1+0
2015-03-31 11:02:23.553081 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.553096 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.553110 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.553130 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.553151 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.553159 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.553168 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553174 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553181 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553186 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553198 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407536 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.553202 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407536 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.553212 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.553216 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.553220 7fbe462be700 10 mds.0.cache.ino(10000004e41) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.553223 7fbe462be700 10 mds.0.cache.ino(10000004e41) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.553237 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407536 cr=0x6fc8f00)
2015-03-31 11:02:23.553256 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.553272 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.553286 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.553297 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.553307 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.553317 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.553326 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553343 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553350 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553356 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.553361 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.553376 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.553387 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cf800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.553396 7fbe462be700 10 mds.0.cache.ino(10000004e41) auth_unpin by 0x242cf800 on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c0bc0] now 0+0
2015-03-31 11:02:23.553787 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407537 lookup #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.553808 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407537 cr=0x25e3e180)
2015-03-31 11:02:23.553810 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407537 lookup #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.553813 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407537 cr=0x25e3e180) #1000006026a/blarg10031
2015-03-31 11:02:23.553815 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.553817 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10031 [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock) v=177648 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f640]
2015-03-31 11:02:23.553826 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.553828 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407537 lookup #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.553838 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.553850 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407537 cr=0x25e3e180)
2015-03-31 11:02:23.554344 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407538 lookup #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.554364 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407538 cr=0x43d2f80)
2015-03-31 11:02:23.554366 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407538 lookup #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.554369 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407538 cr=0x43d2f80) #1000006026a/blarg10031
2015-03-31 11:02:23.554371 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.554374 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10031 [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock) v=177648 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f640]
2015-03-31 11:02:23.554381 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.554382 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407538 lookup #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.554392 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.554403 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407538 cr=0x43d2f80)
2015-03-31 11:02:23.554882 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407539 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.554903 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407539 cr=0x9f78a00)
2015-03-31 11:02:23.554906 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407539 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.554909 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407539 cr=0x9f78a00) #10000004e41
2015-03-31 11:02:23.554911 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e41 snap head
2015-03-31 11:02:23.554912 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.554914 7fbe462be700 10 mds.0.server ref is [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.554926 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407539 cr=0x9f78a00)
2015-03-31 11:02:23.554929 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.554946 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.554957 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.554967 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.554973 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.554987 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.555001 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555011 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.555022 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.555031 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cf800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.555040 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.555046 7fbe462be700 10 mds.0.cache.ino(10000004e41) auth_pin by 0x242cf800 on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0] now 1+0
2015-03-31 11:02:23.555053 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555067 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555081 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555092 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555112 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.555132 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.555141 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555147 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555153 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555158 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555171 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407539 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.555175 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407539 getattr Xs #10000004e41 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.555185 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.555189 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.555193 7fbe462be700 10 mds.0.cache.ino(10000004e41) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.555195 7fbe462be700 10 mds.0.cache.ino(10000004e41) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.555209 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407539 cr=0x9f78a00)
2015-03-31 11:02:23.555227 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555243 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555257 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555268 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555278 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.555287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.555296 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555314 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555321 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555327 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c0bc0]
2015-03-31 11:02:23.555333 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.555348 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.555359 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cf800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.555368 7fbe462be700 10 mds.0.cache.ino(10000004e41) auth_unpin by 0x242cf800 on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c0bc0] now 0+0
2015-03-31 11:02:23.555747 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407540 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.555768 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407540 cr=0x929aa80)
2015-03-31 11:02:23.555771 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407540 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.555774 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407540 cr=0x929aa80) #1000006026a
2015-03-31 11:02:23.555776 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.555777 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.555778 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.555801 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407540 cr=0x929aa80)
2015-03-31 11:02:23.555804 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555821 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555832 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.555843 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555857 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.555872 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555881 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.555892 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.555902 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.555914 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555928 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.555943 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555953 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.555973 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.555995 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556005 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556015 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31342} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556031 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407540 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.556035 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407540 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.556046 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.556049 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.556053 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31343
2015-03-31 11:02:23.556055 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31343 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.556068 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407540 cr=0x929aa80)
2015-03-31 11:02:23.556087 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556103 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556118 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556128 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556138 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556149 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556171 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556181 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556191 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.556206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.556216 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.556605 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407541 create #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.556625 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407541 cr=0x60ab200)
2015-03-31 11:02:23.556628 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407541 create #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.556631 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10031
2015-03-31 11:02:23.556632 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407541 cr=0x60ab200) #1000006026a/blarg10031
2015-03-31 11:02:23.556634 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10031
2015-03-31 11:02:23.556635 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.556637 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.556638 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178665 v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.556648 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178665 v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.556656 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10031 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178665 v=178663 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.556668 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407541 cr=0x60ab200)
2015-03-31 11:02:23.556673 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556692 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556704 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556715 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock) v=177648 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f640]
2015-03-31 11:02:23.556722 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556737 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.556751 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556761 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.556772 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=1+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556788 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.556799 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock) v=177648 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f640]
2015-03-31 11:02:23.556804 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10031) auth_pin by 0x242cf800 on [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock) v=177648 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640] now 1+0
2015-03-31 11:02:23.556810 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock) v=177648 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.556826 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177648 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.556831 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177648 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.556836 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177648 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.556853 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177648 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.556857 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10031) auth_pin by 0x676f798 on [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177648 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640] now 2+0
2015-03-31 11:02:23.556862 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cf800) [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dn xlock x=1 by 0x242cf800) (dversion lock w=1 last_client=708310) v=177648 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.556868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556882 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556895 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556908 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.556921 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556931 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556940 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556949 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.556958 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556978 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556988 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.556997 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557006 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557016 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557025 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557035 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557044 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557063 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b7 ([1000006b2b8~36b], 875 left)
2015-03-31 11:02:23.557066 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.557067 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b7 [2,head] #1000006b2b7 auth v1 s=0 n() (iversion lock) 0x3f4168d0]
2015-03-31 11:02:23.557071 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178666
2015-03-31 11:02:23.557072 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10031)  pre_dirty [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dn xlock x=1 by 0x242cf800) (dversion lock w=1 last_client=708310) pv=178666 v=177648 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.557080 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4168d0]
2015-03-31 11:02:23.557087 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cf800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178666 v=178663 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:23.557096 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc6e3b0
2015-03-31 11:02:23.557097 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178667
2015-03-31 11:02:23.557099 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178667 v=178663 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.557105 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178667 v=178663 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.557112 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4168d0]
2015-03-31 11:02:23.557118 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.557120 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295236 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557133 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295238
2015-03-31 11:02:23.557134 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295238 v=3295234 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.557138 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295238 (current v 3295234)
2015-03-31 11:02:23.557139 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178667 v=178663 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.557147 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.557149 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cf800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295238 v=3295235 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:23.557157 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc68370
2015-03-31 11:02:23.557158 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295239
2015-03-31 11:02:23.557159 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557170 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557180 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557190 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.557192 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.79997 < 1, stopping
2015-03-31 11:02:23.557196 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557206 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.557210 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295238 v=3295234 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.557215 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31343} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557228 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4168d0]
2015-03-31 11:02:23.557234 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.557237 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557244 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.557245 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557253 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557259 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557266 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557273 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557279 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557286 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557292 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557298 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557305 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557311 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557318 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557324 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557330 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557337 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4168d0]
2015-03-31 11:02:23.557346 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.557347 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.557349 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4168d0 tracedn 0x676f640
2015-03-31 11:02:23.557352 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cf800) [dentry #1/test_small/small5/blarg10031 [2,head] auth NULL (dn xlock x=1 by 0x242cf800) (dversion lock w=1 last_client=708310) pv=178666 v=177648 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f640]
2015-03-31 11:02:23.557358 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407541 create #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.557367 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.557370 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31344
2015-03-31 11:02:23.557372 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31344 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.557378 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.557381 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.557383 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) including xattrs version 0
2015-03-31 11:02:23.557419 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.557448 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.557462 7fbe406af700  5 mds.0.log _submit_thread 5419568347~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.557463 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.557475 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.557490 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557524 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557534 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557544 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557556 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557568 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557578 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557589 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557599 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557847 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407542 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.557866 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407542 cr=0x23fbe180)
2015-03-31 11:02:23.557868 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407542 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.557872 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407542 cr=0x23fbe180) #1000006b2b7
2015-03-31 11:02:23.557874 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b7 snap head
2015-03-31 11:02:23.557875 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.557876 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4168d0]
2015-03-31 11:02:23.557888 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407542 cr=0x23fbe180)
2015-03-31 11:02:23.557891 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.557906 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557916 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557927 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4168d0]
2015-03-31 11:02:23.557936 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.557950 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.557964 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.557974 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.557984 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.557994 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.558005 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4168d0]
2015-03-31 11:02:23.558014 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_pin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4168d0] now 1+0
2015-03-31 11:02:23.558024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558039 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558054 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558064 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558075 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558086 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558106 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.558128 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.558142 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407542 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.558146 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407542 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.558155 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.558159 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.558162 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.558165 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.558177 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407542 cr=0x23fbe180)
2015-03-31 11:02:23.558196 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558212 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558225 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558236 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558246 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558256 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558277 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.558288 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.558298 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.558313 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.558323 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.558334 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_unpin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0] now 0+0
2015-03-31 11:02:23.558596 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407543 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.558613 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407543 cr=0x52d2300)
2015-03-31 11:02:23.558615 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407543 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.558618 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407543 cr=0x52d2300) #1000006b2b7
2015-03-31 11:02:23.558620 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b7 snap head
2015-03-31 11:02:23.558621 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.558622 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.558635 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407543 cr=0x52d2300)
2015-03-31 11:02:23.558638 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558653 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558663 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558673 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.558682 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558696 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.558710 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558719 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.558730 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558740 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.558750 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.558759 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_pin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0] now 1+0
2015-03-31 11:02:23.558769 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558788 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558802 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558813 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558823 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558834 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.558854 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.558876 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.558890 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407543 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.558894 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407543 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.558904 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.558907 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.558911 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.558914 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.558926 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407543 cr=0x52d2300)
2015-03-31 11:02:23.558945 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558961 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.558975 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.558985 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.559007 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.559017 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.559027 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.559038 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.559048 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.559063 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.559073 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.559084 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_unpin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0] now 0+0
2015-03-31 11:02:23.562269 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e41 follows 0 op update
2015-03-31 11:02:23.562272 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562283 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.562284 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.562302 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.562303 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562310 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562317 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.562319 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562331 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562351 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562358 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.562360 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562368 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562370 7fbe406af700  5 mds.0.log _submit_thread 5419569987~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.562375 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562380 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562385 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562391 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562397 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562403 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.562412 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.602037 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407544 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.602059 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407544 cr=0xb260780)
2015-03-31 11:02:23.602064 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407544 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.602068 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407544 cr=0xb260780) #1000006b2b7
2015-03-31 11:02:23.602070 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b7 snap head
2015-03-31 11:02:23.602071 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.602072 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.602089 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407544 cr=0xb260780)
2015-03-31 11:02:23.602092 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.602109 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.602121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.602133 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.602143 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.602158 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.602173 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.602183 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.602194 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.602204 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.602215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.602225 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_pin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0] now 1+0
2015-03-31 11:02:23.602235 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.602261 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.602275 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.602286 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.602296 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.602306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.602317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.602326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.602343 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407544 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.602347 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407544 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.602358 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.602361 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.602366 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.602369 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.602384 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407544 cr=0xb260780)
2015-03-31 11:02:23.602403 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.602420 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.602435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.602445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.602456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.602466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.602477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.602487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.602497 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.602511 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.602522 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.602532 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_unpin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0] now 0+0
2015-03-31 11:02:23.603796 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e41 follows 0 op update
2015-03-31 11:02:23.603800 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603811 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.603813 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.603831 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.603832 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603840 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603848 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.603849 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603855 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603863 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603869 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.603870 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603877 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603884 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603889 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603895 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.603896 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.603897 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e41 [2,head] /test_small/small1/blarg10031 auth v136880 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0bc0]
2015-03-31 11:02:23.603904 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.643021 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407545 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.643043 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407545 cr=0x26906680)
2015-03-31 11:02:23.643048 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407545 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.643051 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407545 cr=0x26906680) #1000006b2b7
2015-03-31 11:02:23.643053 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b7 snap head
2015-03-31 11:02:23.643055 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.643056 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.643072 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407545 cr=0x26906680)
2015-03-31 11:02:23.643075 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643092 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643104 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.643116 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.643126 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643140 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.643155 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643164 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.643176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.643186 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.643197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.643206 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_pin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0] now 1+0
2015-03-31 11:02:23.643217 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643232 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643246 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643267 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.643288 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.643299 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.643309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.643325 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407545 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.643329 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407545 getattr Xs #1000006b2b7 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.643340 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.643344 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.643349 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.643351 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.643365 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407545 cr=0x26906680)
2015-03-31 11:02:23.643385 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643402 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643417 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643428 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643438 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.643450 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.643460 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.643471 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4168d0]
2015-03-31 11:02:23.643480 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.643495 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.643505 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.643516 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) auth_unpin by 0xb10e900 on [inode 1000006b2b7 [2,head] {#1000006b2b7 /test_small/small5/blarg10031} auth v178666 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4168d0] now 0+0
2015-03-31 11:02:23.643813 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407546 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.643831 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407546 cr=0x45a2d00)
2015-03-31 11:02:23.643833 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407546 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.643836 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407546 cr=0x45a2d00) #10000004e40
2015-03-31 11:02:23.643838 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e40 snap head
2015-03-31 11:02:23.643840 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.643841 7fbe462be700 10 mds.0.server ref is [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.643853 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407546 cr=0x45a2d00)
2015-03-31 11:02:23.643856 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643871 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643881 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.643890 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.643897 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643911 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.643925 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.643934 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.643945 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.643953 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xb10e900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.643963 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.643968 7fbe462be700 10 mds.0.cache.ino(10000004e40) auth_pin by 0xb10e900 on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288] now 1+0
2015-03-31 11:02:23.643975 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.643989 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.644003 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.644014 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.644024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.644033 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.644042 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644049 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644066 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644072 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644097 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407546 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.644101 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407546 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.644111 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.644114 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.644118 7fbe462be700 10 mds.0.cache.ino(10000004e40) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.644121 7fbe462be700 10 mds.0.cache.ino(10000004e40) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.644133 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407546 cr=0x45a2d00)
2015-03-31 11:02:23.644152 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.644167 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.644181 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.644191 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.644201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.644210 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.644219 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644236 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644243 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644249 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.644254 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.644268 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.644279 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xb10e900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.644288 7fbe462be700 10 mds.0.cache.ino(10000004e40) auth_unpin by 0xb10e900 on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c0288] now 0+0
2015-03-31 11:02:23.644565 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407547 lookup #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.644582 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407547 cr=0x968eb80)
2015-03-31 11:02:23.644584 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407547 lookup #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.644587 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407547 cr=0x968eb80) #1000006026a/blarg10032
2015-03-31 11:02:23.644589 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.644591 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10032 [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock) v=177650 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f820]
2015-03-31 11:02:23.644600 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.644601 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407547 lookup #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.644613 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.644623 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407547 cr=0x968eb80)
2015-03-31 11:02:23.645089 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407548 lookup #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.645109 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407548 cr=0x9cc5000)
2015-03-31 11:02:23.645112 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407548 lookup #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.645115 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407548 cr=0x9cc5000) #1000006026a/blarg10032
2015-03-31 11:02:23.645118 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.645120 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10032 [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock) v=177650 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f820]
2015-03-31 11:02:23.645129 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.645130 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407548 lookup #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.645142 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.645153 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407548 cr=0x9cc5000)
2015-03-31 11:02:23.645617 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407549 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.645638 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407549 cr=0xb262580)
2015-03-31 11:02:23.645641 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407549 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.645644 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407549 cr=0xb262580) #10000004e40
2015-03-31 11:02:23.645646 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e40 snap head
2015-03-31 11:02:23.645648 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.645649 7fbe462be700 10 mds.0.server ref is [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.645661 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407549 cr=0xb262580)
2015-03-31 11:02:23.645664 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.645681 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.645693 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.645702 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.645709 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.645722 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.645737 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.645746 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.645757 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.645766 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xb10e900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.645775 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.645781 7fbe462be700 10 mds.0.cache.ino(10000004e40) auth_pin by 0xb10e900 on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288] now 1+0
2015-03-31 11:02:23.645792 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.645807 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.645821 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.645842 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.645852 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.645871 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.645880 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.645886 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.645892 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.645898 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.645912 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407549 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.645916 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407549 getattr Xs #10000004e40 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.645927 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.645931 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.645935 7fbe462be700 10 mds.0.cache.ino(10000004e40) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.645937 7fbe462be700 10 mds.0.cache.ino(10000004e40) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.645951 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407549 cr=0xb262580)
2015-03-31 11:02:23.645970 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.645986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.646000 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646011 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646021 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.646030 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.646050 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.646057 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.646064 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.646071 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9c0288]
2015-03-31 11:02:23.646078 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.646093 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.646103 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xb10e900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.646113 7fbe462be700 10 mds.0.cache.ino(10000004e40) auth_unpin by 0xb10e900 on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9c0288] now 0+0
2015-03-31 11:02:23.646400 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407550 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.646417 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407550 cr=0x2645d000)
2015-03-31 11:02:23.646419 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407550 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.646422 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407550 cr=0x2645d000) #1000006026a
2015-03-31 11:02:23.646424 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.646426 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.646427 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646442 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407550 cr=0x2645d000)
2015-03-31 11:02:23.646445 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.646459 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646470 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646481 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.646494 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.646508 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646517 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.646528 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646538 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.646549 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.646563 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.646577 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646587 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646597 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646608 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646619 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646629 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31344} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646656 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407550 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.646660 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407550 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.646682 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.646686 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.646689 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31345
2015-03-31 11:02:23.646691 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31345 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.646704 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407550 cr=0x2645d000)
2015-03-31 11:02:23.646722 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.646738 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.646751 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646761 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.646771 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646787 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646798 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646807 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.646817 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.646830 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.646840 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.647288 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407551 create #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.647308 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407551 cr=0x8f08c80)
2015-03-31 11:02:23.647310 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407551 create #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.647313 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10032
2015-03-31 11:02:23.647315 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407551 cr=0x8f08c80) #1000006026a/blarg10032
2015-03-31 11:02:23.647317 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10032
2015-03-31 11:02:23.647318 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.647320 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.647321 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178667 v=178663 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.647331 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178667 v=178663 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.647340 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10032 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178667 v=178663 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.647350 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407551 cr=0x8f08c80)
2015-03-31 11:02:23.647356 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.647375 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647387 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647398 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock) v=177650 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f820]
2015-03-31 11:02:23.647405 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.647420 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.647434 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647444 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.647455 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=2+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647465 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.647476 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock) v=177650 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676f820]
2015-03-31 11:02:23.647481 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10032) auth_pin by 0xb10e900 on [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock) v=177650 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820] now 1+0
2015-03-31 11:02:23.647488 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock) v=177650 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.647492 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177650 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.647508 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177650 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.647513 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177650 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.647517 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177650 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.647535 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10032) auth_pin by 0x676f978 on [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177650 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820] now 2+0
2015-03-31 11:02:23.647541 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xb10e900) [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dn xlock x=1 by 0xb10e900) (dversion lock w=1 last_client=708310) v=177650 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.647546 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.647561 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.647574 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.647587 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.647600 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647610 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647619 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647629 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647638 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647648 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647658 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647667 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647677 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647686 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647696 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647705 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647714 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647723 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647742 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b8 ([1000006b2b9~36a], 874 left)
2015-03-31 11:02:23.647745 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.647746 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b8 [2,head] #1000006b2b8 auth v1 s=0 n() (iversion lock) 0x3f4e8470]
2015-03-31 11:02:23.647750 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178668
2015-03-31 11:02:23.647751 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10032)  pre_dirty [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dn xlock x=1 by 0xb10e900) (dversion lock w=1 last_client=708310) pv=178668 v=177650 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.647759 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4e8470]
2015-03-31 11:02:23.647766 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xb10e900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178668 v=178663 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:23.647775 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9a302c0
2015-03-31 11:02:23.647777 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178669
2015-03-31 11:02:23.647778 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178669 v=178663 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.647789 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178669 v=178663 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.647805 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4e8470]
2015-03-31 11:02:23.647812 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.647814 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295238 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647829 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295240
2015-03-31 11:02:23.647830 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295240 v=3295234 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.647834 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295240 (current v 3295234)
2015-03-31 11:02:23.647837 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178669 v=178663 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.647844 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.647846 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xb10e900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295240 v=3295235 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:23.647856 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x4782cb0
2015-03-31 11:02:23.647857 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295241
2015-03-31 11:02:23.647858 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647870 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647881 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647892 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.647894 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.890649 < 1, stopping
2015-03-31 11:02:23.647898 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.647909 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.647913 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295240 v=3295234 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.647918 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31345} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.647933 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4e8470]
2015-03-31 11:02:23.647940 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.647943 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4e8470]
2015-03-31 11:02:23.647951 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.647953 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.647961 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.647968 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.647975 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.647982 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.647988 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.647995 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648002 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648008 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648015 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648022 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648029 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648035 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648042 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648049 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e8470]
2015-03-31 11:02:23.648060 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.648061 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.648063 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4e8470 tracedn 0x676f820
2015-03-31 11:02:23.648066 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xb10e900) [dentry #1/test_small/small5/blarg10032 [2,head] auth NULL (dn xlock x=1 by 0xb10e900) (dversion lock w=1 last_client=708310) pv=178668 v=177650 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676f820]
2015-03-31 11:02:23.648073 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407551 create #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.648093 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.648096 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31346
2015-03-31 11:02:23.648098 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31346 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.648104 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.648107 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.648109 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) including xattrs version 0
2015-03-31 11:02:23.648145 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648173 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648188 7fbe406af700  5 mds.0.log _submit_thread 5419570846~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.648188 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648201 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648226 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648249 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648259 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648270 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648281 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648293 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648303 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648314 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648325 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648567 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407552 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.648587 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407552 cr=0x26900f00)
2015-03-31 11:02:23.648590 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407552 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.648594 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407552 cr=0x26900f00) #1000006b2b8
2015-03-31 11:02:23.648596 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b8 snap head
2015-03-31 11:02:23.648597 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.648598 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4e8470]
2015-03-31 11:02:23.648612 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407552 cr=0x26900f00)
2015-03-31 11:02:23.648614 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648630 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648641 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648652 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4e8470]
2015-03-31 11:02:23.648661 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648675 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.648690 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648699 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.648710 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648720 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.648730 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4e8470]
2015-03-31 11:02:23.648738 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_pin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4e8470] now 1+0
2015-03-31 11:02:23.648748 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648763 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648777 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648791 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648802 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648813 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648845 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.648855 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.648870 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407552 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.648874 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407552 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.648884 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.648887 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.648891 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.648894 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.648907 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407552 cr=0x26900f00)
2015-03-31 11:02:23.648926 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648941 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.648955 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648966 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.648976 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.648986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.649007 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.649017 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.649027 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.649042 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.649052 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.649063 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_unpin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470] now 0+0
2015-03-31 11:02:23.649332 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407553 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.649350 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407553 cr=0x2645bc00)
2015-03-31 11:02:23.649353 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407553 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.649356 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407553 cr=0x2645bc00) #1000006b2b8
2015-03-31 11:02:23.649357 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b8 snap head
2015-03-31 11:02:23.649359 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.649360 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.649373 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407553 cr=0x2645bc00)
2015-03-31 11:02:23.649375 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.649391 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.649401 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.649412 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.649422 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.649435 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.649450 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.649459 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.649470 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.649480 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.649491 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.649500 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_pin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470] now 1+0
2015-03-31 11:02:23.649510 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.649525 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.649539 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.649550 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.649560 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.649571 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.649591 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.649613 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.649628 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407553 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.649631 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407553 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.649641 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.649644 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.649649 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.649651 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.649664 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407553 cr=0x2645bc00)
2015-03-31 11:02:23.649683 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.649698 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.649712 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.649722 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.649732 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.649753 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.649764 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.649774 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.649788 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.649803 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.649815 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.649826 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_unpin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470] now 0+0
2015-03-31 11:02:23.652656 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e40 follows 0 op update
2015-03-31 11:02:23.652660 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652670 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.652672 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.652690 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.652691 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652698 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652706 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.652708 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652719 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652738 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652745 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.652747 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652755 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652758 7fbe406af700  5 mds.0.log _submit_thread 5419572486~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.652762 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652768 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652773 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652779 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652789 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652795 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.652805 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.692029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407554 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.692053 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407554 cr=0x8f0cd80)
2015-03-31 11:02:23.692056 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407554 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.692060 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407554 cr=0x8f0cd80) #1000006b2b8
2015-03-31 11:02:23.692062 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b8 snap head
2015-03-31 11:02:23.692063 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.692064 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.692080 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407554 cr=0x8f0cd80)
2015-03-31 11:02:23.692083 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.692101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.692113 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.692125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.692136 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.692150 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.692165 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.692175 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.692186 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.692197 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.692208 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.692218 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_pin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470] now 1+0
2015-03-31 11:02:23.692228 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.692243 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.692283 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.692293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.692303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.692313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.692322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.692332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.692346 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407554 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.692351 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407554 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.692361 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.692365 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.692369 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.692373 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.692386 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407554 cr=0x8f0cd80)
2015-03-31 11:02:23.692405 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.692422 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.692436 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.692447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.692457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.692468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.692489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.692500 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.692510 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.692525 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.692536 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.692547 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_unpin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470] now 0+0
2015-03-31 11:02:23.693812 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e40 follows 0 op update
2015-03-31 11:02:23.693816 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693827 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.693829 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.693847 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.693848 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693855 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693863 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.693865 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693870 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693878 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693883 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.693884 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693892 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693898 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693904 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693910 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.693911 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.693912 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e40 [2,head] /test_small/small1/blarg10032 auth v136882 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9c0288]
2015-03-31 11:02:23.693919 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.733037 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407555 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.733058 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407555 cr=0x26d3cb00)
2015-03-31 11:02:23.733062 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407555 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.733066 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407555 cr=0x26d3cb00) #1000006b2b8
2015-03-31 11:02:23.733068 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b8 snap head
2015-03-31 11:02:23.733069 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.733070 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.733087 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407555 cr=0x26d3cb00)
2015-03-31 11:02:23.733090 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733108 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733119 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.733131 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.733141 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733156 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.733170 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733181 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.733191 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.733201 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.733212 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.733222 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_pin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470] now 1+0
2015-03-31 11:02:23.733232 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733247 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733272 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733294 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.733313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.733323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.733332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.733347 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407555 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.733351 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407555 getattr Xs #1000006b2b8 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.733362 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.733365 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.733369 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.733372 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.733386 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407555 cr=0x26d3cb00)
2015-03-31 11:02:23.733404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.733467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.733488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.733499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e8470]
2015-03-31 11:02:23.733509 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.733524 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.733535 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.733546 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) auth_unpin by 0x23dd4b00 on [inode 1000006b2b8 [2,head] {#1000006b2b8 /test_small/small5/blarg10032} auth v178668 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e8470] now 0+0
2015-03-31 11:02:23.733828 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407556 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.733846 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407556 cr=0x26d3fd00)
2015-03-31 11:02:23.733848 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407556 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.733851 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407556 cr=0x26d3fd00) #10000004e3d
2015-03-31 11:02:23.733853 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3d snap head
2015-03-31 11:02:23.733855 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.733856 7fbe462be700 10 mds.0.server ref is [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.733866 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407556 cr=0x26d3fd00)
2015-03-31 11:02:23.733869 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733895 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.733904 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.733909 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.733923 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.733937 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.733947 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.733957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.733967 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd4b00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.733976 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.733982 7fbe462be700 10 mds.0.cache.ino(10000004e3d) auth_pin by 0x23dd4b00 on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950] now 1+0
2015-03-31 11:02:23.733989 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.734003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.734017 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.734027 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.734037 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.734046 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.734055 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734061 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734067 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734084 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734109 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407556 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.734113 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407556 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.734123 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.734126 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.734131 7fbe462be700 10 mds.0.cache.ino(10000004e3d) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.734133 7fbe462be700 10 mds.0.cache.ino(10000004e3d) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.734146 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407556 cr=0x26d3fd00)
2015-03-31 11:02:23.734165 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.734181 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.734195 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.734205 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.734215 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.734223 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.734232 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734250 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734257 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734263 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.734268 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.734283 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.734293 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd4b00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.734302 7fbe462be700 10 mds.0.cache.ino(10000004e3d) auth_unpin by 0x23dd4b00 on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bf950] now 0+0
2015-03-31 11:02:23.734578 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407557 lookup #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.734594 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407557 cr=0xa255f00)
2015-03-31 11:02:23.734595 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407557 lookup #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.734598 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407557 cr=0xa255f00) #1000006026a/blarg10033
2015-03-31 11:02:23.734600 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.734602 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10033 [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock) v=177652 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fa00]
2015-03-31 11:02:23.734609 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.734611 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407557 lookup #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.734619 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.734630 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407557 cr=0xa255f00)
2015-03-31 11:02:23.735095 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407558 lookup #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.735115 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407558 cr=0xa255a00)
2015-03-31 11:02:23.735117 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407558 lookup #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.735120 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407558 cr=0xa255a00) #1000006026a/blarg10033
2015-03-31 11:02:23.735122 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.735125 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10033 [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock) v=177652 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fa00]
2015-03-31 11:02:23.735133 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.735134 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407558 lookup #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.735147 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.735159 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407558 cr=0xa255a00)
2015-03-31 11:02:23.735578 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407559 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.735600 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407559 cr=0xa256e00)
2015-03-31 11:02:23.735602 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407559 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.735606 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407559 cr=0xa256e00) #10000004e3d
2015-03-31 11:02:23.735607 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e3d snap head
2015-03-31 11:02:23.735609 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.735610 7fbe462be700 10 mds.0.server ref is [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.735622 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407559 cr=0xa256e00)
2015-03-31 11:02:23.735625 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.735642 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.735654 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.735664 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.735670 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.735684 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.735698 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.735708 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.735719 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.735728 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd4b00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.735738 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.735744 7fbe462be700 10 mds.0.cache.ino(10000004e3d) auth_pin by 0x23dd4b00 on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950] now 1+0
2015-03-31 11:02:23.735750 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.735765 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.735780 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.735808 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.735830 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.735838 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.735847 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.735853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.735859 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.735865 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.735878 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407559 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.735882 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407559 getattr Xs #10000004e3d 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.735892 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.735896 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.735900 7fbe462be700 10 mds.0.cache.ino(10000004e3d) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.735902 7fbe462be700 10 mds.0.cache.ino(10000004e3d) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.735916 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407559 cr=0xa256e00)
2015-03-31 11:02:23.735935 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.735952 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.735966 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.735977 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.735987 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.735996 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.736016 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.736024 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.736029 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.736035 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bf950]
2015-03-31 11:02:23.736041 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.736056 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.736067 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd4b00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.736076 7fbe462be700 10 mds.0.cache.ino(10000004e3d) auth_unpin by 0x23dd4b00 on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9bf950] now 0+0
2015-03-31 11:02:23.736364 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407560 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.736381 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407560 cr=0xa257300)
2015-03-31 11:02:23.736384 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407560 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.736387 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407560 cr=0xa257300) #1000006026a
2015-03-31 11:02:23.736389 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.736390 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.736391 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736407 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407560 cr=0xa257300)
2015-03-31 11:02:23.736409 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.736424 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.736434 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736444 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.736457 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.736471 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.736481 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.736491 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736501 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.736512 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.736526 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.736540 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.736550 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.736560 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736571 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736581 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736592 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31346} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736608 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407560 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.736623 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407560 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.736645 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.736647 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.736651 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31347
2015-03-31 11:02:23.736653 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31347 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.736666 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407560 cr=0xa257300)
2015-03-31 11:02:23.736684 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.736700 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.736714 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.736724 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.736734 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736744 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736766 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736775 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.736789 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.736803 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.736813 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.737086 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407561 create #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.737103 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407561 cr=0x9408280)
2015-03-31 11:02:23.737105 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407561 create #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.737107 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10033
2015-03-31 11:02:23.737109 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407561 cr=0x9408280) #1000006026a/blarg10033
2015-03-31 11:02:23.737112 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10033
2015-03-31 11:02:23.737113 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.737114 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.737116 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178669 v=178663 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.737124 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178669 v=178663 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.737133 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10033 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178669 v=178663 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.737142 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407561 cr=0x9408280)
2015-03-31 11:02:23.737147 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737164 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737174 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737185 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock) v=177652 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737192 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737206 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.737220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737230 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.737240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737251 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.737261 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock) v=177652 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737266 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10033) auth_pin by 0x23dd4b00 on [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock) v=177652 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00] now 1+0
2015-03-31 11:02:23.737273 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock) v=177652 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737278 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177652 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737284 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177652 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737289 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177652 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737295 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177652 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737301 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10033) auth_pin by 0x676fb58 on [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177652 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00] now 2+0
2015-03-31 11:02:23.737306 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd4b00) [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dn xlock x=1 by 0x23dd4b00) (dversion lock w=1 last_client=708310) v=177652 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737364 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737377 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737389 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737399 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737408 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737418 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737427 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737437 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737447 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737457 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737466 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737475 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737485 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737495 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737504 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737514 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737530 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2b9 ([1000006b2ba~369], 873 left)
2015-03-31 11:02:23.737533 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.737535 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2b9 [2,head] #1000006b2b9 auth v1 s=0 n() (iversion lock) 0x3f476320]
2015-03-31 11:02:23.737539 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178670
2015-03-31 11:02:23.737540 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10033)  pre_dirty [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dn xlock x=1 by 0x23dd4b00) (dversion lock w=1 last_client=708310) pv=178670 v=177652 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737547 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f476320]
2015-03-31 11:02:23.737554 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd4b00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178670 v=178663 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:23.737563 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9937c70
2015-03-31 11:02:23.737564 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178671
2015-03-31 11:02:23.737565 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178671 v=178663 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.737572 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178671 v=178663 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.737578 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f476320]
2015-03-31 11:02:23.737584 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.737586 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295240 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737599 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295242
2015-03-31 11:02:23.737600 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295242 v=3295234 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.737604 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295242 (current v 3295234)
2015-03-31 11:02:23.737605 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178671 v=178663 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.737611 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.737613 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd4b00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295242 v=3295235 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:23.737622 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc69760
2015-03-31 11:02:23.737623 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295243
2015-03-31 11:02:23.737625 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737636 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737646 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737656 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.737657 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.980439 < 1, stopping
2015-03-31 11:02:23.737662 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737672 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.737676 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295242 v=3295234 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.737681 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31347} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.737695 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f476320]
2015-03-31 11:02:23.737702 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.737704 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f476320]
2015-03-31 11:02:23.737712 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.737714 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737722 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737728 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737735 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737742 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737748 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737755 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737762 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737768 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737774 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737781 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737791 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737798 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737804 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737811 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f476320]
2015-03-31 11:02:23.737821 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.737822 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.737824 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f476320 tracedn 0x676fa00
2015-03-31 11:02:23.737826 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd4b00) [dentry #1/test_small/small5/blarg10033 [2,head] auth NULL (dn xlock x=1 by 0x23dd4b00) (dversion lock w=1 last_client=708310) pv=178670 v=177652 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fa00]
2015-03-31 11:02:23.737833 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407561 create #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.737841 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.737844 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31348
2015-03-31 11:02:23.737846 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31348 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.737852 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.737855 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.737857 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) including xattrs version 0
2015-03-31 11:02:23.737894 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737923 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737937 7fbe406af700  5 mds.0.log _submit_thread 5419573345~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.737938 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737952 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.737966 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.737988 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738000 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738010 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738020 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738032 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738065 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738075 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738196 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407562 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.738226 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407562 cr=0x940eb80)
2015-03-31 11:02:23.738229 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407562 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.738232 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407562 cr=0x940eb80) #1000006b2b9
2015-03-31 11:02:23.738234 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b9 snap head
2015-03-31 11:02:23.738236 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.738237 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f476320]
2015-03-31 11:02:23.738250 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407562 cr=0x940eb80)
2015-03-31 11:02:23.738253 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.738268 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738279 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738289 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f476320]
2015-03-31 11:02:23.738299 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.738313 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.738327 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738336 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.738346 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738356 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.738367 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f476320]
2015-03-31 11:02:23.738376 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_pin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f476320] now 1+0
2015-03-31 11:02:23.738386 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.738401 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.738415 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738426 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738436 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738456 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738477 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.738486 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.738501 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407562 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.738505 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407562 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.738515 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.738518 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.738521 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.738525 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.738538 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407562 cr=0x940eb80)
2015-03-31 11:02:23.738557 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.738572 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.738585 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738596 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.738606 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738616 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.738626 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.738647 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.738656 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.738671 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.738681 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.738692 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_unpin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320] now 0+0
2015-03-31 11:02:23.738954 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407563 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.738972 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407563 cr=0x940fa80)
2015-03-31 11:02:23.738975 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407563 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.738978 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407563 cr=0x940fa80) #1000006b2b9
2015-03-31 11:02:23.738980 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b9 snap head
2015-03-31 11:02:23.738982 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.738983 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.738995 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407563 cr=0x940fa80)
2015-03-31 11:02:23.738998 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.739013 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.739023 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.739034 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.739043 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.739057 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.739071 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.739080 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.739091 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.739101 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.739111 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.739120 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_pin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320] now 1+0
2015-03-31 11:02:23.739130 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.739145 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.739159 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.739169 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.739179 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.739190 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.739200 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.739219 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.739245 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407563 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.739249 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407563 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.739259 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.739261 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.739265 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.739269 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.739281 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407563 cr=0x940fa80)
2015-03-31 11:02:23.739300 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.739315 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.739329 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.739340 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.739350 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.739372 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.739383 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.739393 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.739403 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.739418 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.739428 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.739439 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_unpin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320] now 0+0
2015-03-31 11:02:23.743142 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3d follows 0 op update
2015-03-31 11:02:23.743146 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743156 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.743158 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.743177 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.743178 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743184 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743191 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.743193 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743204 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743224 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743230 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.743231 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743239 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743243 7fbe406af700  5 mds.0.log _submit_thread 5419574985~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.743247 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743253 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743258 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743264 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743269 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743276 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.743285 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.783047 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407564 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.783069 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407564 cr=0x940c380)
2015-03-31 11:02:23.783073 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407564 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.783077 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407564 cr=0x940c380) #1000006b2b9
2015-03-31 11:02:23.783079 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b9 snap head
2015-03-31 11:02:23.783081 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.783082 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.783099 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407564 cr=0x940c380)
2015-03-31 11:02:23.783102 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.783119 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.783131 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.783143 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.783154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.783169 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.783183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.783193 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.783204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.783214 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.783225 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.783235 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_pin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320] now 1+0
2015-03-31 11:02:23.783246 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.783261 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.783299 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.783308 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.783318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.783328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.783337 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.783346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.783362 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407564 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.783366 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407564 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.783376 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.783379 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.783384 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.783386 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.783400 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407564 cr=0x940c380)
2015-03-31 11:02:23.783419 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.783436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.783450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.783461 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.783471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.783482 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.783504 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.783515 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.783525 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.783539 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.783550 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.783560 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_unpin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320] now 0+0
2015-03-31 11:02:23.784882 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e3d follows 0 op update
2015-03-31 11:02:23.784885 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784897 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.784899 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.784916 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.784917 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784924 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784932 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.784935 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784940 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784947 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784954 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.784955 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784961 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784968 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784973 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784977 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.784978 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.784980 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e3d [2,head] /test_small/small1/blarg10033 auth v136884 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf950]
2015-03-31 11:02:23.784987 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.824028 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407565 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.824052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407565 cr=0x2941d500)
2015-03-31 11:02:23.824054 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407565 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.824058 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407565 cr=0x2941d500) #1000006b2b9
2015-03-31 11:02:23.824059 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2b9 snap head
2015-03-31 11:02:23.824061 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.824062 7fbe462be700 10 mds.0.server ref is [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.824079 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407565 cr=0x2941d500)
2015-03-31 11:02:23.824081 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824099 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824111 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.824122 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.824133 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824147 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.824161 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824171 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.824182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.824192 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.824203 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.824213 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_pin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320] now 1+0
2015-03-31 11:02:23.824224 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824239 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824264 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824286 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824296 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.824306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.824316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.824325 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.824340 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407565 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.824344 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407565 getattr Xs #1000006b2b9 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.824355 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.824359 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.824363 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.824366 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.824380 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407565 cr=0x2941d500)
2015-03-31 11:02:23.824399 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824416 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824451 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.824461 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.824483 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.824493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f476320]
2015-03-31 11:02:23.824503 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.824518 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.824529 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.824540 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) auth_unpin by 0x242cf300 on [inode 1000006b2b9 [2,head] {#1000006b2b9 /test_small/small5/blarg10033} auth v178670 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f476320] now 0+0
2015-03-31 11:02:23.824827 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407566 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.824844 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407566 cr=0x9cc5280)
2015-03-31 11:02:23.824847 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407566 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.824850 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407566 cr=0x9cc5280) #10000004e5e
2015-03-31 11:02:23.824852 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5e snap head
2015-03-31 11:02:23.824853 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.824854 7fbe462be700 10 mds.0.server ref is [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.824866 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407566 cr=0x9cc5280)
2015-03-31 11:02:23.824869 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824895 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.824904 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.824909 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.824923 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.824937 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.824947 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.824957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.824966 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cf300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.824975 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.824981 7fbe462be700 10 mds.0.cache.ino(10000004e5e) auth_pin by 0x242cf300 on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018] now 1+0
2015-03-31 11:02:23.824989 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.825003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.825017 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.825028 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.825038 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.825047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.825056 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825063 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825070 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825087 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825111 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407566 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.825115 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407566 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.825125 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.825128 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.825132 7fbe462be700 10 mds.0.cache.ino(10000004e5e) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.825135 7fbe462be700 10 mds.0.cache.ino(10000004e5e) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.825147 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407566 cr=0x9cc5280)
2015-03-31 11:02:23.825166 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.825182 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.825196 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.825207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.825217 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.825226 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.825246 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825253 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825260 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825266 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.825272 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.825286 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.825296 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cf300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.825306 7fbe462be700 10 mds.0.cache.ino(10000004e5e) auth_unpin by 0x242cf300 on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bf018] now 0+0
2015-03-31 11:02:23.825619 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407567 lookup #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.825635 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407567 cr=0x968e180)
2015-03-31 11:02:23.825637 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407567 lookup #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.825640 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407567 cr=0x968e180) #1000006026a/blarg10034
2015-03-31 11:02:23.825642 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.825644 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10034 [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock) v=177654 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.825652 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.825654 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407567 lookup #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.825664 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.825675 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407567 cr=0x968e180)
2015-03-31 11:02:23.826099 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407568 lookup #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.826118 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407568 cr=0x940ee00)
2015-03-31 11:02:23.826122 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407568 lookup #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.826125 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407568 cr=0x940ee00) #1000006026a/blarg10034
2015-03-31 11:02:23.826127 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.826130 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10034 [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock) v=177654 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.826137 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.826139 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407568 lookup #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.826149 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.826162 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407568 cr=0x940ee00)
2015-03-31 11:02:23.826570 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407569 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.826592 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407569 cr=0xaee9680)
2015-03-31 11:02:23.826596 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407569 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.826599 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407569 cr=0xaee9680) #10000004e5e
2015-03-31 11:02:23.826601 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5e snap head
2015-03-31 11:02:23.826603 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.826604 7fbe462be700 10 mds.0.server ref is [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.826616 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407569 cr=0xaee9680)
2015-03-31 11:02:23.826619 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.826637 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.826648 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.826658 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.826664 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.826678 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.826692 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.826702 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.826713 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.826722 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cf300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.826731 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.826738 7fbe462be700 10 mds.0.cache.ino(10000004e5e) auth_pin by 0x242cf300 on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018] now 1+0
2015-03-31 11:02:23.826745 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.826760 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.826774 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.826800 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.826821 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.826830 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.826838 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.826845 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.826851 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.826857 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.826870 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407569 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.826874 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407569 getattr Xs #10000004e5e 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.826885 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.826888 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.826893 7fbe462be700 10 mds.0.cache.ino(10000004e5e) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.826895 7fbe462be700 10 mds.0.cache.ino(10000004e5e) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.826909 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407569 cr=0xaee9680)
2015-03-31 11:02:23.826928 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.826944 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.826958 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.826969 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.826979 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.826988 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.826997 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.827015 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.827022 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.827028 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bf018]
2015-03-31 11:02:23.827034 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.827048 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.827059 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cf300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.827068 7fbe462be700 10 mds.0.cache.ino(10000004e5e) auth_unpin by 0x242cf300 on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9bf018] now 0+0
2015-03-31 11:02:23.827357 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407570 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.827375 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407570 cr=0x9cc2f80)
2015-03-31 11:02:23.827377 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407570 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.827381 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407570 cr=0x9cc2f80) #1000006026a
2015-03-31 11:02:23.827383 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.827384 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.827385 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827400 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407570 cr=0x9cc2f80)
2015-03-31 11:02:23.827403 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.827417 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.827428 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827438 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.827452 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.827465 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.827475 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.827485 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827495 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.827506 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.827520 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.827534 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.827544 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.827554 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827565 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827575 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827586 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31348} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827602 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407570 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.827616 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407570 getattr Xs #1000006026a 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.827638 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.827641 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.827646 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31349
2015-03-31 11:02:23.827648 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31349 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.827660 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407570 cr=0x9cc2f80)
2015-03-31 11:02:23.827679 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.827695 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.827709 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.827720 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.827729 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827740 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827761 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827771 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.827781 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.827799 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.827810 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.828194 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407571 create #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.828215 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407571 cr=0x2941b480)
2015-03-31 11:02:23.828218 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407571 create #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.828221 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10034
2015-03-31 11:02:23.828222 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407571 cr=0x2941b480) #1000006026a/blarg10034
2015-03-31 11:02:23.828225 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10034
2015-03-31 11:02:23.828226 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.828227 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.828229 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178671 v=178663 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.828239 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178671 v=178663 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.828248 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10034 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178671 v=178663 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.828259 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407571 cr=0x2941b480)
2015-03-31 11:02:23.828264 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828283 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828295 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828306 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock) v=177654 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828312 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828327 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cf300 on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.828341 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828351 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.828362 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828373 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.828384 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock) v=177654 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828389 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10034) auth_pin by 0x242cf300 on [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock) v=177654 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0] now 1+0
2015-03-31 11:02:23.828396 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock) v=177654 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828400 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177654 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828416 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177654 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828422 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177654 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828427 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177654 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828443 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10034) auth_pin by 0x676fd38 on [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177654 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0] now 2+0
2015-03-31 11:02:23.828449 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cf300) [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dn xlock x=1 by 0x242cf300) (dversion lock w=1 last_client=708310) v=177654 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828455 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828469 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828482 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828495 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828508 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828518 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828527 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828536 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828545 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828555 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828565 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828575 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828584 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828593 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828603 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828612 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828622 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828631 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828650 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ba ([1000006b2bb~368], 872 left)
2015-03-31 11:02:23.828652 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.828654 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ba [2,head] #1000006b2ba auth v1 s=0 n() (iversion lock) 0x3f47e430]
2015-03-31 11:02:23.828658 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178672
2015-03-31 11:02:23.828659 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10034)  pre_dirty [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dn xlock x=1 by 0x242cf300) (dversion lock w=1 last_client=708310) pv=178672 v=177654 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.828667 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f47e430]
2015-03-31 11:02:23.828673 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cf300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178672 v=178663 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:23.828682 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x924b9c0
2015-03-31 11:02:23.828684 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178673
2015-03-31 11:02:23.828685 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178673 v=178663 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.828691 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178673 v=178663 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.828697 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f47e430]
2015-03-31 11:02:23.828702 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.828704 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295242 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828718 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295244
2015-03-31 11:02:23.828719 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295244 v=3295234 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.828723 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295244 (current v 3295234)
2015-03-31 11:02:23.828724 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178673 v=178663 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.828731 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.828734 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cf300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295244 v=3295235 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:23.828743 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa9f9340
2015-03-31 11:02:23.828745 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295245
2015-03-31 11:02:23.828746 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828758 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828768 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828778 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.828780 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.07156 ago, continuing
2015-03-31 11:02:23.828787 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120412 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828799 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120414
2015-03-31 11:02:23.828800 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120414 v=120412 ap=0+6 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:23.828804 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120414 (current v 120412)
2015-03-31 11:02:23.828805 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295245 v=3295235 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:23.828814 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.828815 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x242cf300 on [dir 1 / [2,head] auth v=120413 cv=119911/119911 dir_auth=0 ap=1+5+6 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:59.000000 b422190196760 382353=382344+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 6
2015-03-31 11:02:23.828825 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x3c34780
2015-03-31 11:02:23.828826 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120415
2015-03-31 11:02:23.828827 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828841 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828854 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828865 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.828866 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.07156 ago, continuing
2015-03-31 11:02:23.828868 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53469 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.828888 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120414 v=120412 ap=0+6 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:23.828892 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.828905 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295244 v=3295234 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.828910 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31349} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.828923 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f47e430]
2015-03-31 11:02:23.828930 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.828933 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f47e430]
2015-03-31 11:02:23.828941 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.828942 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828950 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828956 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828963 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828969 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828976 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828983 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828989 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.828995 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.829002 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.829008 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.829014 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.829021 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.829027 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.829034 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f47e430]
2015-03-31 11:02:23.829043 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.829045 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.829046 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f47e430 tracedn 0x676fbe0
2015-03-31 11:02:23.829048 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cf300) [dentry #1/test_small/small5/blarg10034 [2,head] auth NULL (dn xlock x=1 by 0x242cf300) (dversion lock w=1 last_client=708310) pv=178672 v=177654 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fbe0]
2015-03-31 11:02:23.829055 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407571 create #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.829063 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.829067 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31350
2015-03-31 11:02:23.829069 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31350 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.829074 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.829078 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.829080 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) including xattrs version 0
2015-03-31 11:02:23.829117 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829146 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829161 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829169 7fbe406af700  5 mds.0.log _submit_thread 5419575844~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:23.829181 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829207 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829218 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829230 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829240 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829250 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829262 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829273 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829283 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829294 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829304 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829551 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407572 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.829570 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407572 cr=0x8f09180)
2015-03-31 11:02:23.829572 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407572 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.829576 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407572 cr=0x8f09180) #1000006b2ba
2015-03-31 11:02:23.829578 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ba snap head
2015-03-31 11:02:23.829579 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.829581 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f47e430]
2015-03-31 11:02:23.829594 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407572 cr=0x8f09180)
2015-03-31 11:02:23.829597 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829613 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829624 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829634 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f47e430]
2015-03-31 11:02:23.829644 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829658 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.829672 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829682 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.829693 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829703 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.829713 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f47e430]
2015-03-31 11:02:23.829723 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_pin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f47e430] now 1+0
2015-03-31 11:02:23.829733 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829749 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829763 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829774 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829789 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829810 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829831 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.829841 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.829855 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407572 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.829859 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407572 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.829869 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.829872 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.829875 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.829878 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.829891 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407572 cr=0x8f09180)
2015-03-31 11:02:23.829910 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829926 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.829940 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829950 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.829961 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829971 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.829992 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.830002 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.830012 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.830027 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.830037 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.830048 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_unpin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430] now 0+0
2015-03-31 11:02:23.830309 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407573 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.830327 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407573 cr=0x43d3e80)
2015-03-31 11:02:23.830330 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407573 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.830333 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407573 cr=0x43d3e80) #1000006b2ba
2015-03-31 11:02:23.830335 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ba snap head
2015-03-31 11:02:23.830336 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.830337 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.830350 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407573 cr=0x43d3e80)
2015-03-31 11:02:23.830353 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.830369 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.830380 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.830390 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.830399 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.830413 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.830427 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.830437 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.830448 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.830458 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.830468 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.830478 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_pin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430] now 1+0
2015-03-31 11:02:23.830488 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.830502 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.830516 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.830527 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.830537 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.830547 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.830567 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.830590 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.830603 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407573 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.830607 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407573 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.830617 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.830620 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.830624 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.830626 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.830639 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407573 cr=0x43d3e80)
2015-03-31 11:02:23.830658 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.830674 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.830688 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.830699 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.830720 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.830730 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.830740 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.830750 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.830760 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.830775 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.830790 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.830800 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_unpin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430] now 0+0
2015-03-31 11:02:23.834307 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5e follows 0 op update
2015-03-31 11:02:23.834311 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834322 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.834324 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.834343 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.834344 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834351 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834359 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.834361 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834373 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834382 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834388 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.834388 7fbe406af700  5 mds.0.log _submit_thread 5419578634~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.834389 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834407 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834414 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834421 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834428 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834434 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834441 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834448 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.834458 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.874041 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407574 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.874062 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407574 cr=0x26902f80)
2015-03-31 11:02:23.874066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407574 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.874071 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407574 cr=0x26902f80) #1000006b2ba
2015-03-31 11:02:23.874073 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ba snap head
2015-03-31 11:02:23.874075 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.874076 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.874092 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407574 cr=0x26902f80)
2015-03-31 11:02:23.874095 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.874114 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.874126 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.874138 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.874148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.874163 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.874178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.874189 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.874200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.874210 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.874221 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.874231 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_pin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430] now 1+0
2015-03-31 11:02:23.874241 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.874257 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.874282 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.874304 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.874314 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.874323 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.874333 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.874342 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.874357 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407574 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.874362 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407574 getattr Xs #1000006b2ba 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.874372 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.874375 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.874380 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.874382 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.874396 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407574 cr=0x26902f80)
2015-03-31 11:02:23.874415 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.874431 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.874446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.874456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.874467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.874477 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.874498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.874509 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.874519 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.874534 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.874545 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.874555 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_unpin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430] now 0+0
2015-03-31 11:02:23.875844 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5e follows 0 op update
2015-03-31 11:02:23.875848 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875859 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.875861 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.875880 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.875881 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875888 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875896 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.875898 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875903 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875911 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875918 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.875921 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875927 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875933 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875937 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875943 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.875944 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.875945 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e5e [2,head] /test_small/small1/blarg10034 auth v136886 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bf018]
2015-03-31 11:02:23.875952 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.915032 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407575 getattr Xs #1000006b2ba 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.915054 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407575 cr=0xab85000)
2015-03-31 11:02:23.915058 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407575 getattr Xs #1000006b2ba 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.915062 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407575 cr=0xab85000) #1000006b2ba
2015-03-31 11:02:23.915064 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ba snap head
2015-03-31 11:02:23.915065 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.915066 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.915083 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407575 cr=0xab85000)
2015-03-31 11:02:23.915086 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915104 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.915128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.915139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915154 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.915168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915179 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.915190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.915200 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.915210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.915220 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_pin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430] now 1+0
2015-03-31 11:02:23.915230 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915246 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915260 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915281 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915291 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.915301 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.915312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.915322 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.915338 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407575 getattr Xs #1000006b2ba 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.915342 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407575 getattr Xs #1000006b2ba 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.915353 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.915356 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.915361 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:23.915364 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.915378 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407575 cr=0xab85000)
2015-03-31 11:02:23.915398 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915415 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915452 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.915463 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.915473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.915484 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f47e430]
2015-03-31 11:02:23.915494 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.915509 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.915520 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.915530 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) auth_unpin by 0x2b0c1400 on [inode 1000006b2ba [2,head] {#1000006b2ba /test_small/small5/blarg10034} auth v178672 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f47e430] now 0+0
2015-03-31 11:02:23.915820 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407576 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.915838 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407576 cr=0x2645aa80)
2015-03-31 11:02:23.915840 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407576 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.915843 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407576 cr=0x2645aa80) #10000004e4e
2015-03-31 11:02:23.915845 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4e snap head
2015-03-31 11:02:23.915847 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.915848 7fbe462be700 10 mds.0.server ref is [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.915859 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407576 cr=0x2645aa80)
2015-03-31 11:02:23.915862 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915878 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915889 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.915898 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.915904 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915918 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.915933 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.915943 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.915954 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.915962 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c1400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.915972 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.915977 7fbe462be700 10 mds.0.cache.ino(10000004e4e) auth_pin by 0x2b0c1400 on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0] now 1+0
2015-03-31 11:02:23.915985 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.915999 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.916014 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.916025 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.916035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.916045 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.916054 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916061 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916077 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916082 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916108 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407576 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.916112 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407576 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.916122 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.916125 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.916129 7fbe462be700 10 mds.0.cache.ino(10000004e4e) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.916131 7fbe462be700 10 mds.0.cache.ino(10000004e4e) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.916144 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407576 cr=0x2645aa80)
2015-03-31 11:02:23.916163 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.916179 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.916194 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.916204 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.916215 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.916224 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.916244 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916250 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916257 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916264 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.916270 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.916284 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.916295 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c1400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.916304 7fbe462be700 10 mds.0.cache.ino(10000004e4e) auth_unpin by 0x2b0c1400 on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9be6e0] now 0+0
2015-03-31 11:02:23.916575 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407577 lookup #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.916591 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407577 cr=0x43d0280)
2015-03-31 11:02:23.916594 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407577 lookup #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.916597 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407577 cr=0x43d0280) #1000006026a/blarg10035
2015-03-31 11:02:23.916599 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.916602 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10035 [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock) v=177656 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.916609 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.916610 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407577 lookup #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.916620 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.916629 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407577 cr=0x43d0280)
2015-03-31 11:02:23.917098 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407578 lookup #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.917119 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407578 cr=0x25f4b980)
2015-03-31 11:02:23.917122 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407578 lookup #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.917125 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407578 cr=0x25f4b980) #1000006026a/blarg10035
2015-03-31 11:02:23.917126 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.917129 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10035 [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock) v=177656 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.917137 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.917139 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407578 lookup #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.917150 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.917163 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407578 cr=0x25f4b980)
2015-03-31 11:02:23.917579 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407579 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.917600 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407579 cr=0x26903980)
2015-03-31 11:02:23.917603 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407579 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.917606 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407579 cr=0x26903980) #10000004e4e
2015-03-31 11:02:23.917608 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4e snap head
2015-03-31 11:02:23.917610 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.917611 7fbe462be700 10 mds.0.server ref is [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.917623 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407579 cr=0x26903980)
2015-03-31 11:02:23.917626 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.917644 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.917657 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.917666 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.917673 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.917689 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.917704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.917715 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.917726 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.917735 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c1400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.917745 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.917750 7fbe462be700 10 mds.0.cache.ino(10000004e4e) auth_pin by 0x2b0c1400 on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0] now 1+0
2015-03-31 11:02:23.917757 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.917773 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.917803 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.917826 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.917836 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.917844 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.917853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.917860 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.917866 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.917870 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.917884 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407579 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.917888 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407579 getattr Xs #10000004e4e 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.917898 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.917902 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.917906 7fbe462be700 10 mds.0.cache.ino(10000004e4e) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:23.917909 7fbe462be700 10 mds.0.cache.ino(10000004e4e) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.917923 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407579 cr=0x26903980)
2015-03-31 11:02:23.917942 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.917959 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.917974 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.917985 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.917995 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.918004 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.918024 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.918031 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.918037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.918044 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9be6e0]
2015-03-31 11:02:23.918050 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.918065 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.918077 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c1400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.918086 7fbe462be700 10 mds.0.cache.ino(10000004e4e) auth_unpin by 0x2b0c1400 on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9be6e0] now 0+0
2015-03-31 11:02:23.918459 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407580 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.918480 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407580 cr=0x26907580)
2015-03-31 11:02:23.918483 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407580 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.918487 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407580 cr=0x26907580) #1000006026a
2015-03-31 11:02:23.918489 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.918490 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.918491 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918510 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407580 cr=0x26907580)
2015-03-31 11:02:23.918513 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.918529 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.918541 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918552 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.918566 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.918581 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.918591 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.918602 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918612 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.918624 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.918638 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.918653 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.918664 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.918685 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918706 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918716 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918726 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31350} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918743 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407580 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.918747 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407580 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.918757 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.918761 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.918766 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31351
2015-03-31 11:02:23.918768 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31351 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.918781 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407580 cr=0x26907580)
2015-03-31 11:02:23.918805 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.918821 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.918836 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.918847 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.918857 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918868 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918889 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918899 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.918909 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.918923 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.918934 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.919209 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407581 create #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.919226 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407581 cr=0x236bf580)
2015-03-31 11:02:23.919228 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407581 create #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.919231 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10035
2015-03-31 11:02:23.919232 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407581 cr=0x236bf580) #1000006026a/blarg10035
2015-03-31 11:02:23.919234 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10035
2015-03-31 11:02:23.919236 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.919237 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.919238 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178673 v=178663 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.919248 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178673 v=178663 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.919255 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10035 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178673 v=178663 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.919265 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407581 cr=0x236bf580)
2015-03-31 11:02:23.919271 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.919287 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919298 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919309 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock) v=177656 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919316 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.919330 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.919344 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919353 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.919364 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919373 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.919384 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock) v=177656 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919389 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10035) auth_pin by 0x2b0c1400 on [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock) v=177656 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0] now 1+0
2015-03-31 11:02:23.919396 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock) v=177656 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919401 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177656 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919407 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177656 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919411 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177656 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919417 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177656 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919422 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10035) auth_pin by 0x676ff18 on [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177656 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0] now 2+0
2015-03-31 11:02:23.919427 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2b0c1400) [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dn xlock x=1 by 0x2b0c1400) (dversion lock w=1 last_client=708310) v=177656 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919434 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.919450 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.919486 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.919499 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.919512 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919522 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919532 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919541 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919551 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919560 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919569 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919579 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919588 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919597 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919607 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919616 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919625 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919635 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919653 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2bb ([1000006b2bc~367], 871 left)
2015-03-31 11:02:23.919656 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:23.919658 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2bb [2,head] #1000006b2bb auth v1 s=0 n() (iversion lock) 0x3f4d3890]
2015-03-31 11:02:23.919662 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178674
2015-03-31 11:02:23.919663 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10035)  pre_dirty [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dn xlock x=1 by 0x2b0c1400) (dversion lock w=1 last_client=708310) pv=178674 v=177656 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919671 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4d3890]
2015-03-31 11:02:23.919677 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2b0c1400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178674 v=178663 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:23.919686 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x924ee00
2015-03-31 11:02:23.919689 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178675
2015-03-31 11:02:23.919690 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178663 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.919696 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178663 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.919702 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4d3890]
2015-03-31 11:02:23.919707 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.919709 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295244 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919722 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295246
2015-03-31 11:02:23.919723 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295234 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.919727 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295246 (current v 3295234)
2015-03-31 11:02:23.919729 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178663 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=39+1565,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:23.919736 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:23.919738 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2b0c1400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295246 v=3295235 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:23.919747 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9687d20
2015-03-31 11:02:23.919748 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295247
2015-03-31 11:02:23.919749 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919760 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919770 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919781 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:23.919786 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.091003 < 1, stopping
2015-03-31 11:02:23.919790 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.919802 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:23.919806 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295234 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.919811 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31351} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.919825 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4d3890]
2015-03-31 11:02:23.919831 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:23.919834 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919841 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.919843 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919851 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919858 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919864 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919871 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919877 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919883 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919889 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919895 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919901 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919908 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919914 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919921 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919927 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919933 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d3890]
2015-03-31 11:02:23.919943 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.919945 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:23.919947 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4d3890 tracedn 0x676fdc0
2015-03-31 11:02:23.919949 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2b0c1400) [dentry #1/test_small/small5/blarg10035 [2,head] auth NULL (dn xlock x=1 by 0x2b0c1400) (dversion lock w=1 last_client=708310) pv=178674 v=177656 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676fdc0]
2015-03-31 11:02:23.919955 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407581 create #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.919964 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.919967 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31352
2015-03-31 11:02:23.919969 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31352 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.919975 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:23.919978 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:23.919981 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) including xattrs version 0
2015-03-31 11:02:23.920016 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920045 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920060 7fbe406af700  5 mds.0.log _submit_thread 5419579493~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:23.920060 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920074 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920088 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920111 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920122 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920132 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920143 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920154 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920166 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920176 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920187 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920197 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920435 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407582 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.920454 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407582 cr=0x25f48a00)
2015-03-31 11:02:23.920456 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407582 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.920460 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407582 cr=0x25f48a00) #1000006b2bb
2015-03-31 11:02:23.920461 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bb snap head
2015-03-31 11:02:23.920463 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.920464 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4d3890]
2015-03-31 11:02:23.920477 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407582 cr=0x25f48a00)
2015-03-31 11:02:23.920480 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920495 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920506 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920517 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4d3890]
2015-03-31 11:02:23.920526 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920540 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:23.920554 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920565 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:23.920575 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920585 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:23.920596 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4d3890]
2015-03-31 11:02:23.920605 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_pin by 0x2b0c0500 on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4d3890] now 1+0
2015-03-31 11:02:23.920615 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920630 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920645 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920656 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920667 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920677 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920698 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.920718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.920733 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407582 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.920737 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407582 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.920747 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.920750 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.920755 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:23.920757 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.920769 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407582 cr=0x25f48a00)
2015-03-31 11:02:23.920792 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920808 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.920823 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920834 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.920844 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920855 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.920876 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.920887 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.920896 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.920912 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.920923 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.920933 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_unpin by 0x2b0c0500 on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d3890] now 0+0
2015-03-31 11:02:23.921160 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407583 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.921177 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407583 cr=0x968e900)
2015-03-31 11:02:23.921181 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407583 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.921184 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407583 cr=0x968e900) #1000006b2bb
2015-03-31 11:02:23.921186 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bb snap head
2015-03-31 11:02:23.921188 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.921189 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.921202 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407583 cr=0x968e900)
2015-03-31 11:02:23.921204 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.921220 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.921231 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.921242 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.921251 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.921265 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:23.921280 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.921290 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:23.921301 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.921311 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:23.921321 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.921330 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_pin by 0x2b0c0500 on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890] now 1+0
2015-03-31 11:02:23.921340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.921355 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.921370 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.921380 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.921391 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.921401 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.921422 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.921444 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.921457 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407583 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.921461 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407583 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.921471 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.921474 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.921478 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:23.921481 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.921492 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407583 cr=0x968e900)
2015-03-31 11:02:23.921511 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.921527 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.921541 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.921552 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.921573 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.921584 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.921594 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.921605 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.921615 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.921630 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.921641 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.921651 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_unpin by 0x2b0c0500 on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d3890] now 0+0
2015-03-31 11:02:23.924466 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4e follows 0 op update
2015-03-31 11:02:23.924470 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924481 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.924483 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.924501 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.924502 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924508 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924516 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:23.924518 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924529 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924549 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924556 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:23.924557 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924566 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924569 7fbe406af700  5 mds.0.log _submit_thread 5419581133~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:23.924573 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924579 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924584 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924591 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924596 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924603 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.924613 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.964042 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407584 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964064 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407584 cr=0x43d3480)
2015-03-31 11:02:23.964066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407584 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964070 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407584 cr=0x43d3480) #1000006b2bb
2015-03-31 11:02:23.964072 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bb snap head
2015-03-31 11:02:23.964074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.964075 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.964092 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407584 cr=0x43d3480)
2015-03-31 11:02:23.964095 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.964147 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964162 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:23.964177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964187 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:23.964198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964209 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:23.964219 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.964229 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_pin by 0x2b0c0500 on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890] now 1+0
2015-03-31 11:02:23.964240 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964255 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964281 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.964344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.964359 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407584 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964363 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407584 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964374 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.964379 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.964382 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:23.964386 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.964399 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407584 cr=0x43d3480)
2015-03-31 11:02:23.964419 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964461 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964502 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.964513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.964523 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.964538 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.964549 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.964560 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_unpin by 0x2b0c0500 on [inode 1000006b2bb [2,head] {#1000006b2bb /test_small/small5/blarg10035} auth v178674 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d3890] now 0+0
2015-03-31 11:02:23.964597 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407585 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964615 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407585 cr=0x52d3980)
2015-03-31 11:02:23.964618 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407585 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964621 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407585 cr=0x52d3980) #1000006026a
2015-03-31 11:02:23.964623 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.964625 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.964626 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964640 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407585 cr=0x52d3980)
2015-03-31 11:02:23.964642 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964657 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964667 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964678 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964691 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:23.964705 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964715 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:23.964725 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964745 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:23.964755 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964769 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964790 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964800 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964811 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964821 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964831 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964841 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31352} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964858 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407585 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964862 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407585 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.964872 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.964876 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.964879 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31353
2015-03-31 11:02:23.964881 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31353 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.964904 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407585 cr=0x52d3980)
2015-03-31 11:02:23.964923 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964939 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.964953 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964963 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.964973 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.964984 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965005 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965014 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965024 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.965038 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.965049 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.965326 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407586 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.965347 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407586 cr=0x43d0000)
2015-03-31 11:02:23.965349 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407586 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.965352 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407586 cr=0x43d0000) #1000006026a
2015-03-31 11:02:23.965354 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.965355 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.965356 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965371 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407586 cr=0x43d0000)
2015-03-31 11:02:23.965374 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.965388 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.965399 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965409 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.965422 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:23.965436 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.965446 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:23.965456 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965466 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:23.965477 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.965491 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53469 pv53470 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.965505 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.965515 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.965526 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965536 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965546 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965556 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965567 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=8+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:23.965588 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=8+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.965609 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x2877fad0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:23.965611 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=8+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.980688 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.980694 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.980703 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.980705 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) mark_dirty [inode 1000006b2b6 [2,head] /test_small/small5/blarg10030 auth v178663 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.980721 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10030)  mark_dirty [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178664 v=177646 ap=2+0 inode=0x3f406fe8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460]
2015-03-31 11:02:23.980730 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178664 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 39=39+0) hs=40+1564,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178664
2015-03-31 11:02:23.980740 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) mark_dirty_parent
2015-03-31 11:02:23.980742 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295234 pv3295246 ap=8+1 f(v0 m2015-03-31 11:03:00.000000 39=39+0) n(v1 rc2015-03-31 11:03:00.000000 40=39+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.980757 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295234 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.980761 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295236 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382342=382335+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295236
2015-03-31 11:02:23.980772 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178665 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 40=40+0) hs=40+1564,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178665
2015-03-31 11:02:23.980780 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295237 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382343=382336+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295237
2015-03-31 11:02:23.980799 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b6 [2,head] /test_small/small5/blarg10030 auth v178664 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f406fe8]
2015-03-31 11:02:23.980811 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.980813 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27513 client_caps(grant ino 1000006b2b6 1851499 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.980836 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178664 ap=2+0 inode=0x3f406fe8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460]
2015-03-31 11:02:23.980846 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407531 create #1000006026a/blarg10030 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.980858 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b6
2015-03-31 11:02:23.980863 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178664 ap=2+0 inode=0x3f406fe8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460]
2015-03-31 11:02:23.980872 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178664 ap=2+0 inode=0x3f406fe8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460]
2015-03-31 11:02:23.980878 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178664 ap=2+0 inode=0x3f406fe8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460]
2015-03-31 11:02:23.980883 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10030) auth_unpin by 0x676f5b8 on [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178664 ap=1+0 inode=0x3f406fe8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460] now 1+0
2015-03-31 11:02:23.980890 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178664 ap=1+0 inode=0x3f406fe8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460]
2015-03-31 11:02:23.980896 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.980922 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295236 pv3295246 ap=8+1 f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 41=40+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.980963 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295236 pv3295246 ap=8+1 f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 41=40+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.980975 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295236 pv3295246 ap=8+1 f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 41=40+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.980986 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178664 ap=1+0 inode=0x3f406fe8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f460]
2015-03-31 11:02:23.981002 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407531 cr=0x9836900)
2015-03-31 11:02:23.981010 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367cb00 on [inode 1 [...2,head] / auth v53469 pv53470 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:23.981026 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367cb00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:23.981038 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367cb00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295237 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382343=382336+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:23.981049 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367cb00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178665 cv=170705/170705 ap=5+11+11 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 40=40+0) hs=40+1564,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 11
2015-03-31 11:02:23.981057 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367cb00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295236 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 41=40+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:23.981069 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10030) auth_unpin by 0x2367cb00 on [dentry #1/test_small/small5/blarg10030 [2,head] auth (dn sync l=1) (dversion lock) v=178664 inode=0x3f406fe8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676f460] now 0+0
2015-03-31 11:02:23.981092 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.981094 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.981109 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.981110 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) mark_dirty [inode 1000006b2b7 [2,head] /test_small/small5/blarg10031 auth v178665 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.981122 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10031)  mark_dirty [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178666 v=177648 ap=2+0 inode=0x3f4168d0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640]
2015-03-31 11:02:23.981128 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178666 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 40=40+0) hs=41+1563,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178666
2015-03-31 11:02:23.981137 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) mark_dirty_parent
2015-03-31 11:02:23.981139 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295236 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 40=40+0) n(v1 rc2015-03-31 11:03:00.000000 41=40+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981151 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295236 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.981155 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295238 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382343=382336+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295238
2015-03-31 11:02:23.981165 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178667 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 41=41+0) hs=41+1563,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178667
2015-03-31 11:02:23.981173 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295239 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382344=382337+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295239
2015-03-31 11:02:23.981182 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b7 [2,head] /test_small/small5/blarg10031 auth v178666 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4168d0]
2015-03-31 11:02:23.981192 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.981194 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27514 client_caps(grant ino 1000006b2b7 1851500 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.981213 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178666 ap=2+0 inode=0x3f4168d0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640]
2015-03-31 11:02:23.981222 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407541 create #1000006026a/blarg10031 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.981232 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b7
2015-03-31 11:02:23.981234 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178666 ap=2+0 inode=0x3f4168d0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640]
2015-03-31 11:02:23.981243 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178666 ap=2+0 inode=0x3f4168d0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640]
2015-03-31 11:02:23.981249 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178666 ap=2+0 inode=0x3f4168d0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640]
2015-03-31 11:02:23.981254 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10031) auth_unpin by 0x676f798 on [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178666 ap=1+0 inode=0x3f4168d0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640] now 1+0
2015-03-31 11:02:23.981260 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178666 ap=1+0 inode=0x3f4168d0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640]
2015-03-31 11:02:23.981265 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.981280 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295238 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 42=41+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981292 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295238 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 42=41+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981304 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295238 pv3295246 ap=7+1 f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 42=41+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981315 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178666 ap=1+0 inode=0x3f4168d0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f640]
2015-03-31 11:02:23.981330 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407541 cr=0x60ab200)
2015-03-31 11:02:23.981337 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf800 on [inode 1 [...2,head] / auth v53469 pv53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:23.981354 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf800 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:23.981365 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cf800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295239 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382344=382337+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:23.981376 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cf800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178667 cv=170705/170705 ap=4+9+9 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 41=41+0) hs=41+1563,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 9
2015-03-31 11:02:23.981383 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295238 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 42=41+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:23.981395 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10031) auth_unpin by 0x242cf800 on [dentry #1/test_small/small5/blarg10031 [2,head] auth (dn sync l=1) (dversion lock) v=178666 inode=0x3f4168d0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676f640] now 0+0
2015-03-31 11:02:23.981426 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.981428 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.981432 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.981444 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) mark_dirty [inode 1000006b2b8 [2,head] /test_small/small5/blarg10032 auth v178667 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.981455 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10032)  mark_dirty [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178668 v=177650 ap=2+0 inode=0x3f4e8470 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820]
2015-03-31 11:02:23.981462 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178668 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 41=41+0) hs=42+1562,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178668
2015-03-31 11:02:23.981471 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) mark_dirty_parent
2015-03-31 11:02:23.981472 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295238 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 41=41+0) n(v1 rc2015-03-31 11:03:00.000000 42=41+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981485 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295238 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.981489 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295240 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382344=382337+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295240
2015-03-31 11:02:23.981498 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178669 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 42=42+0) hs=42+1562,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178669
2015-03-31 11:02:23.981506 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295241 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382345=382338+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295241
2015-03-31 11:02:23.981514 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b8 [2,head] /test_small/small5/blarg10032 auth v178668 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4e8470]
2015-03-31 11:02:23.981524 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.981526 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27515 client_caps(grant ino 1000006b2b8 1851501 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.981545 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178668 ap=2+0 inode=0x3f4e8470 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820]
2015-03-31 11:02:23.981553 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407551 create #1000006026a/blarg10032 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.981564 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b8
2015-03-31 11:02:23.981566 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178668 ap=2+0 inode=0x3f4e8470 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820]
2015-03-31 11:02:23.981574 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178668 ap=2+0 inode=0x3f4e8470 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820]
2015-03-31 11:02:23.981579 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178668 ap=2+0 inode=0x3f4e8470 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820]
2015-03-31 11:02:23.981583 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10032) auth_unpin by 0x676f978 on [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178668 ap=1+0 inode=0x3f4e8470 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820] now 1+0
2015-03-31 11:02:23.981590 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178668 ap=1+0 inode=0x3f4e8470 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820]
2015-03-31 11:02:23.981595 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.981609 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295240 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 43=42+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981621 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295240 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 43=42+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981633 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295240 pv3295246 ap=6+1 f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 43=42+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981643 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178668 ap=1+0 inode=0x3f4e8470 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676f820]
2015-03-31 11:02:23.981658 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407551 cr=0x8f08c80)
2015-03-31 11:02:23.981665 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xb10e900 on [inode 1 [...2,head] / auth v53469 pv53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:23.981681 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xb10e900 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:23.981692 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xb10e900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295241 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382345=382338+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:23.981702 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xb10e900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178669 cv=170705/170705 ap=3+7+7 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 42=42+0) hs=42+1562,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 7
2015-03-31 11:02:23.981710 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xb10e900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295240 pv3295246 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 43=42+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:23.981732 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10032) auth_unpin by 0xb10e900 on [dentry #1/test_small/small5/blarg10032 [2,head] auth (dn sync l=1) (dversion lock) v=178668 inode=0x3f4e8470 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676f820] now 0+0
2015-03-31 11:02:23.981752 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.981753 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.981758 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.981770 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) mark_dirty [inode 1000006b2b9 [2,head] /test_small/small5/blarg10033 auth v178669 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.981786 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10033)  mark_dirty [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178670 v=177652 ap=2+0 inode=0x3f476320 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00]
2015-03-31 11:02:23.981793 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178670 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 42=42+0) hs=43+1561,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178670
2015-03-31 11:02:23.981802 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) mark_dirty_parent
2015-03-31 11:02:23.981803 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295240 pv3295246 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 42=42+0) n(v1 rc2015-03-31 11:03:00.000000 43=42+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981816 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295240 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.981820 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295242 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382345=382338+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295242
2015-03-31 11:02:23.981830 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178671 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 43=43+0) hs=43+1561,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178671
2015-03-31 11:02:23.981837 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295243 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382346=382339+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295243
2015-03-31 11:02:23.981846 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2b9 [2,head] /test_small/small5/blarg10033 auth v178670 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f476320]
2015-03-31 11:02:23.981856 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.981858 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27516 client_caps(grant ino 1000006b2b9 1851502 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.981877 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178670 ap=2+0 inode=0x3f476320 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00]
2015-03-31 11:02:23.981885 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407561 create #1000006026a/blarg10033 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.981895 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2b9
2015-03-31 11:02:23.981897 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178670 ap=2+0 inode=0x3f476320 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00]
2015-03-31 11:02:23.981905 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178670 ap=2+0 inode=0x3f476320 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00]
2015-03-31 11:02:23.981911 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178670 ap=2+0 inode=0x3f476320 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00]
2015-03-31 11:02:23.981916 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10033) auth_unpin by 0x676fb58 on [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178670 ap=1+0 inode=0x3f476320 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00] now 1+0
2015-03-31 11:02:23.981921 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178670 ap=1+0 inode=0x3f476320 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00]
2015-03-31 11:02:23.981927 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.981941 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295242 pv3295246 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 44=43+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981954 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295242 pv3295246 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 44=43+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981965 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295242 pv3295246 ap=5+1 f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 44=43+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.981976 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178670 ap=1+0 inode=0x3f476320 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fa00]
2015-03-31 11:02:23.981990 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407561 cr=0x9408280)
2015-03-31 11:02:23.981998 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4b00 on [inode 1 [...2,head] / auth v53469 pv53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:23.982015 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4b00 on [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:23.982026 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd4b00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295243 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382346=382339+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:23.982036 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd4b00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178671 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 43=43+0) hs=43+1561,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:23.982044 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4b00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295242 pv3295246 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 44=43+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:23.982066 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10033) auth_unpin by 0x23dd4b00 on [dentry #1/test_small/small5/blarg10033 [2,head] auth (dn sync l=1) (dversion lock) v=178670 inode=0x3f476320 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676fa00] now 0+0
2015-03-31 11:02:23.982086 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.982088 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.982104 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.982105 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) mark_dirty [inode 1000006b2ba [2,head] /test_small/small5/blarg10034 auth v178671 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.982116 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10034)  mark_dirty [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178672 v=177654 ap=2+0 inode=0x3f47e430 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0]
2015-03-31 11:02:23.982123 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178672 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 43=43+0) hs=44+1560,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178672
2015-03-31 11:02:23.982132 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) mark_dirty_parent
2015-03-31 11:02:23.982133 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295242 pv3295246 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 43=43+0) n(v1 rc2015-03-31 11:03:00.000000 44=43+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982146 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295242 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.982150 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295244 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382346=382339+7)/n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382336=382329+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295244
2015-03-31 11:02:23.982159 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120412 pv120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:02:59.000000 b422190090565 382337=382329+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982170 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120414 v=120412 ap=0+4 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:23.982174 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120415 v=120414 cv=119911/119911 dir_auth=0 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:59.000000 b422190196760 382353=382344+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120414
2015-03-31 11:02:23.982184 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53469 pv53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.982200 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178673 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 44=44+0) hs=44+1560,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178673
2015-03-31 11:02:23.982208 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295245 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295245
2015-03-31 11:02:23.982215 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120415 v=120415 cv=119911/119911 dir_auth=0 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:00.000000 b422190196760 382364=382355+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120415
2015-03-31 11:02:23.982225 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ba [2,head] /test_small/small5/blarg10034 auth v178672 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f47e430]
2015-03-31 11:02:23.982235 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.982237 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27517 client_caps(grant ino 1000006b2ba 1851503 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:00.000000) v4
2015-03-31 11:02:23.982254 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178672 ap=2+0 inode=0x3f47e430 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0]
2015-03-31 11:02:23.982263 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407571 create #1000006026a/blarg10034 2015-03-31 11:03:00.000000) v2
2015-03-31 11:02:23.982274 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ba
2015-03-31 11:02:23.982276 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178672 ap=2+0 inode=0x3f47e430 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0]
2015-03-31 11:02:23.982284 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178672 ap=2+0 inode=0x3f47e430 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0]
2015-03-31 11:02:23.982290 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178672 ap=2+0 inode=0x3f47e430 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0]
2015-03-31 11:02:23.982296 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10034) auth_unpin by 0x676fd38 on [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178672 ap=1+0 inode=0x3f47e430 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0] now 1+0
2015-03-31 11:02:23.982302 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178672 ap=1+0 inode=0x3f47e430 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0]
2015-03-31 11:02:23.982307 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.982326 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.982342 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.982357 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982369 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982390 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295244 pv3295246 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 45=44+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982401 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295244 pv3295246 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 45=44+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982412 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295244 pv3295246 ap=4+1 f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 45=44+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982423 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178672 ap=1+0 inode=0x3f47e430 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fbe0]
2015-03-31 11:02:23.982437 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407571 cr=0x2941b480)
2015-03-31 11:02:23.982444 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cf300 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:23.982459 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cf300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:23.982470 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x242cf300 on [dir 1 / [2,head] auth v=120415 cv=119911/119911 dir_auth=0 ap=0+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:00.000000 b422190196760 382364=382355+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 3
2015-03-31 11:02:23.982481 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cf300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295245 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:23.982488 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cf300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178673 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 44=44+0) hs=44+1560,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:23.982496 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cf300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295244 pv3295246 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 45=44+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:23.982507 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10034) auth_unpin by 0x242cf300 on [dentry #1/test_small/small5/blarg10034 [2,head] auth (dn sync l=1) (dversion lock) v=178672 inode=0x3f47e430 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676fbe0] now 0+0
2015-03-31 11:02:23.982528 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:23.982530 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:23.982546 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:23.982547 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) mark_dirty [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178673 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.982559 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10035)  mark_dirty [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178674 v=177656 ap=2+0 inode=0x3f4d3890 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0]
2015-03-31 11:02:23.982566 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178674 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 44=44+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178674
2015-03-31 11:02:23.982574 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) mark_dirty_parent
2015-03-31 11:02:23.982576 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295244 pv3295246 ap=3+1 f(v0 m2015-03-31 11:03:00.000000 44=44+0) n(v1 rc2015-03-31 11:03:00.000000 45=44+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982588 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295246 v=3295244 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:23.982592 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295246 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295246
2015-03-31 11:02:23.982599 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178675 v=178675 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178675
2015-03-31 11:02:23.982607 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295247 v=3295247 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382348=382341+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295247
2015-03-31 11:02:23.982616 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.982626 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:23.982628 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27518 client_caps(grant ino 1000006b2bb 1851504 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:23.982647 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178674 ap=2+0 inode=0x3f4d3890 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0]
2015-03-31 11:02:23.982655 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407581 create #1000006026a/blarg10035 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.982665 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2bb
2015-03-31 11:02:23.982667 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178674 ap=2+0 inode=0x3f4d3890 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0]
2015-03-31 11:02:23.982675 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178674 ap=2+0 inode=0x3f4d3890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0]
2015-03-31 11:02:23.982681 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178674 ap=2+0 inode=0x3f4d3890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0]
2015-03-31 11:02:23.982686 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10035) auth_unpin by 0x676ff18 on [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178674 ap=1+0 inode=0x3f4d3890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0] now 1+0
2015-03-31 11:02:23.982693 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178674 ap=1+0 inode=0x3f4d3890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0]
2015-03-31 11:02:23.982698 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982712 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982723 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982736 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982747 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982758 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:23.982761 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:23.982772 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:23.982788 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:23.982790 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407586 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.982794 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407586 cr=0x43d0000) #1000006026a
2015-03-31 11:02:23.982796 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.982797 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.982799 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982809 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407586 cr=0x43d0000)
2015-03-31 11:02:23.982812 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.982838 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982848 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982857 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.982871 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982881 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982892 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.982906 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.982916 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982926 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982947 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982957 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982966 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982976 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982986 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.982996 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983006 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31353} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983023 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407586 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.983027 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407586 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.983038 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.983041 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.983045 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31354
2015-03-31 11:02:23.983047 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31354 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.983071 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407586 cr=0x43d0000)
2015-03-31 11:02:23.983091 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.983106 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.983120 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.983130 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.983140 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983151 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983172 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983182 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983193 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983202 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983214 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983223 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983233 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983242 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983251 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c0500 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.983265 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c0500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:23.983275 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c0500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:23.983301 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983312 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983322 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983332 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178674 ap=1+0 inode=0x3f4d3890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676fdc0]
2015-03-31 11:02:23.983340 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983361 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407581 cr=0x236bf580)
2015-03-31 11:02:23.983368 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.983383 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.983393 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2b0c1400 on [dir 10000000000 /test_small/ [2,head] auth v=3295247 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382348=382341+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:23.983404 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2b0c1400 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178675 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:23.983411 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:23.983422 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10035) auth_unpin by 0x2b0c1400 on [dentry #1/test_small/small5/blarg10035 [2,head] auth (dn sync l=1) (dversion lock) v=178674 inode=0x3f4d3890 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676fdc0] now 0+0
2015-03-31 11:02:23.983471 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4e follows 0 op update
2015-03-31 11:02:23.983480 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983495 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:23.983497 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.983517 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:23.983518 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983525 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983534 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:23.983536 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983542 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983550 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983556 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:23.983557 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983564 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983571 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983577 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983583 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:23.983584 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:23.983585 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e4e [2,head] /test_small/small1/blarg10035 auth v136888 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9be6e0]
2015-03-31 11:02:23.983592 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:23.983611 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407587 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.983632 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407587 cr=0x49d3480)
2015-03-31 11:02:23.983636 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407587 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.983640 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407587 cr=0x49d3480) #1000006b2bb
2015-03-31 11:02:23.983642 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bb snap head
2015-03-31 11:02:23.983643 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.983644 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.983658 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407587 cr=0x49d3480)
2015-03-31 11:02:23.983661 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.983677 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.983689 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.983699 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.983709 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.983733 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.983748 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.983758 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.983769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.983793 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.983814 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4d3890]
2015-03-31 11:02:23.983822 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_pin by 0x242ce400 on [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4d3890] now 1+0
2015-03-31 11:02:23.983831 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.983845 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.983858 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.983868 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.983877 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983886 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.983896 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.983904 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.983920 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407587 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.983925 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407587 getattr Xs #1000006b2bb 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.983935 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.983940 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.983943 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:23.983947 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.983961 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407587 cr=0x49d3480)
2015-03-31 11:02:23.983980 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.983996 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.984010 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984021 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984040 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984060 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.984070 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4d3890]
2015-03-31 11:02:23.984080 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.984094 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.984105 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:23.984116 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) auth_unpin by 0x242ce400 on [inode 1000006b2bb [2,head] /test_small/small5/blarg10035 auth v178674 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4d3890] now 0+0
2015-03-31 11:02:23.984153 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407588 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984172 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407588 cr=0xab83e80)
2015-03-31 11:02:23.984175 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407588 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984178 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407588 cr=0xab83e80) #1000006026a
2015-03-31 11:02:23.984179 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.984181 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.984182 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.984194 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407588 cr=0xab83e80)
2015-03-31 11:02:23.984197 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.984211 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.984221 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.984230 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.984244 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.984259 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.984268 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.984279 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.984288 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.984309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.984322 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.984336 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984358 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984367 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984376 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984385 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984395 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31354} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984410 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407588 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984413 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407588 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984423 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.984427 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.984430 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31355
2015-03-31 11:02:23.984432 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31355 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.984444 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407588 cr=0xab83e80)
2015-03-31 11:02:23.984463 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.984478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.984492 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984503 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984513 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984523 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984544 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984553 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.984562 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.984576 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.984586 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.984691 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407589 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984709 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407589 cr=0x968af80)
2015-03-31 11:02:23.984711 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407589 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984714 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407589 cr=0x968af80) #10000004e4a
2015-03-31 11:02:23.984716 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4a snap head
2015-03-31 11:02:23.984717 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.984719 7fbe462be700 10 mds.0.server ref is [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:23.984730 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407589 cr=0x968af80)
2015-03-31 11:02:23.984733 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.984748 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.984758 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.984767 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:23.984773 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.984790 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.984805 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.984814 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.984825 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:23.984833 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ce400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:23.984842 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:23.984849 7fbe462be700 10 mds.0.cache.ino(10000004e4a) auth_pin by 0x242ce400 on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8] now 1+0
2015-03-31 11:02:23.984856 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.984870 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.984884 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984894 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.984904 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.984914 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.984923 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.984930 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.984947 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.984966 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.984979 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407589 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984983 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407589 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.984993 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.984995 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.984998 7fbe462be700 10 mds.0.cache.ino(10000004e4a) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:23.985001 7fbe462be700 10 mds.0.cache.ino(10000004e4a) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.985013 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407589 cr=0x968af80)
2015-03-31 11:02:23.985032 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.985048 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.985061 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.985072 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.985082 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.985091 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:23.985100 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.985119 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.985125 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.985131 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:23.985137 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.985151 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.985162 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ce400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:23.985172 7fbe462be700 10 mds.0.cache.ino(10000004e4a) auth_unpin by 0x242ce400 on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bdda8] now 0+0
2015-03-31 11:02:23.985237 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407590 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.985254 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407590 cr=0x3b0e680)
2015-03-31 11:02:23.985256 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407590 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.985259 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407590 cr=0x3b0e680) #1000006026a
2015-03-31 11:02:23.985261 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.985263 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:23.985264 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.985277 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407590 cr=0x3b0e680)
2015-03-31 11:02:23.985280 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.985294 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.985304 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.985313 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:23.985327 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:23.985341 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:23.985350 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:23.985361 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:23.985370 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:23.985381 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.985395 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.985409 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.985419 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.985429 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985439 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985449 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985459 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31355} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985475 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407590 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.985480 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407590 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.985512 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.985515 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:23.985519 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31356
2015-03-31 11:02:23.985521 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31356 mseq 0 xattrv 0 len 0
2015-03-31 11:02:23.985533 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407590 cr=0x3b0e680)
2015-03-31 11:02:23.985552 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.985567 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:23.985580 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.985591 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:23.985601 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985611 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985620 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985641 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:23.985650 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:23.985664 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:23.985674 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:23.985778 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407591 lookup #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.985799 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407591 cr=0x25f49900)
2015-03-31 11:02:23.985801 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407591 lookup #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.985804 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407591 cr=0x25f49900) #1000006026a/blarg10036
2015-03-31 11:02:23.985806 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:23.985808 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10036 [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock) v=177658 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ffa0]
2015-03-31 11:02:23.985817 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:23.985818 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407591 lookup #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:23.985827 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:23.985838 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407591 cr=0x25f49900)
2015-03-31 11:02:24.026018 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407592 lookup #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026039 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407592 cr=0x968a580)
2015-03-31 11:02:24.026044 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407592 lookup #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026047 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407592 cr=0x968a580) #1000006026a/blarg10036
2015-03-31 11:02:24.026049 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.026051 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10036 [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock) v=177658 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.026058 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.026060 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407592 lookup #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026072 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.026084 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407592 cr=0x968a580)
2015-03-31 11:02:24.026116 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407593 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026132 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407593 cr=0x236b9180)
2015-03-31 11:02:24.026134 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407593 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026137 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407593 cr=0x236b9180) #1000006026a
2015-03-31 11:02:24.026138 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.026139 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.026140 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.026157 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407593 cr=0x236b9180)
2015-03-31 11:02:24.026160 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.026176 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.026187 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.026197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.026211 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.026226 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.026235 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.026247 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.026255 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.026266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026295 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026305 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026325 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026336 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026346 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31356} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026364 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407593 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026368 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407593 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026378 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.026382 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.026387 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31357
2015-03-31 11:02:24.026389 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31357 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.026403 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407593 cr=0x236b9180)
2015-03-31 11:02:24.026412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026428 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026463 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026474 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026484 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026504 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.026518 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.026528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.026564 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407594 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026582 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407594 cr=0x26907080)
2015-03-31 11:02:24.026584 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407594 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026587 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407594 cr=0x26907080) #1000006026a
2015-03-31 11:02:24.026589 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.026590 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.026591 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.026604 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407594 cr=0x26907080)
2015-03-31 11:02:24.026606 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.026620 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.026630 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.026640 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.026653 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.026668 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.026677 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.026688 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.026712 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.026733 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026758 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026767 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026777 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026793 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026803 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026812 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31357} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026826 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407594 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026830 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407594 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.026840 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.026842 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.026845 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31358
2015-03-31 11:02:24.026847 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31358 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.026859 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407594 cr=0x26907080)
2015-03-31 11:02:24.026878 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026893 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.026907 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026918 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.026928 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026938 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026946 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026966 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.026976 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.026990 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.027001 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.027035 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407595 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.027053 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407595 cr=0x5e8a080)
2015-03-31 11:02:24.027056 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407595 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.027059 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407595 cr=0x5e8a080) #10000004e4a
2015-03-31 11:02:24.027061 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4a snap head
2015-03-31 11:02:24.027062 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.027063 7fbe462be700 10 mds.0.server ref is [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.027072 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407595 cr=0x5e8a080)
2015-03-31 11:02:24.027074 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.027089 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.027099 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.027107 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.027114 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.027127 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.027141 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.027150 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.027161 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.027169 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ce400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.027178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.027185 7fbe462be700 10 mds.0.cache.ino(10000004e4a) auth_pin by 0x242ce400 on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8] now 1+0
2015-03-31 11:02:24.027204 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.027217 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.027231 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.027241 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.027251 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.027259 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.027269 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027276 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027282 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027288 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027312 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407595 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.027316 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407595 getattr Xs #10000004e4a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.027326 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.027329 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.027332 7fbe462be700 10 mds.0.cache.ino(10000004e4a) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.027334 7fbe462be700 10 mds.0.cache.ino(10000004e4a) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.027346 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407595 cr=0x5e8a080)
2015-03-31 11:02:24.027365 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.027380 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.027394 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.027405 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.027415 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.027435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.027444 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027451 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027458 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bdda8]
2015-03-31 11:02:24.027470 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.027484 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.027495 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ce400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.027504 7fbe462be700 10 mds.0.cache.ino(10000004e4a) auth_unpin by 0x242ce400 on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9bdda8] now 0+0
2015-03-31 11:02:24.027759 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407596 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.027777 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407596 cr=0x236b8000)
2015-03-31 11:02:24.027779 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407596 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.027786 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407596 cr=0x236b8000) #1000006026a
2015-03-31 11:02:24.027788 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.027789 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.027790 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.027804 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407596 cr=0x236b8000)
2015-03-31 11:02:24.027807 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.027821 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.027831 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.027843 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.027856 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.027870 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.027880 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.027891 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.027900 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.027911 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.027924 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.027939 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.027949 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.027959 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.027969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.027979 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.027989 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31358} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028015 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407596 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.028019 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407596 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.028041 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.028044 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.028048 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31359
2015-03-31 11:02:24.028050 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31359 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.028063 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407596 cr=0x236b8000)
2015-03-31 11:02:24.028082 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.028098 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.028111 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.028122 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.028131 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31359} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028141 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31359} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028151 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31359} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028171 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31359} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028180 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.028194 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.028204 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31359} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.028493 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407597 create #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.028510 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407597 cr=0x968fa80)
2015-03-31 11:02:24.028512 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028525 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:24.028527 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028537 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.028538 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028550 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028559 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028569 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028577 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.028579 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407597 create #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.028582 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10036
2015-03-31 11:02:24.028583 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407597 cr=0x968fa80) #1000006026a/blarg10036
2015-03-31 11:02:24.028585 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10036
2015-03-31 11:02:24.028586 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.028588 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.028589 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178675 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.028597 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178675 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.028603 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10036 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178675 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.028613 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407597 cr=0x968fa80)
2015-03-31 11:02:24.028618 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.028633 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.028642 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028652 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock) v=177658 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028659 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.028673 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.028687 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.028696 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.028707 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.028716 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.028726 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock) v=177658 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028731 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10036) auth_pin by 0x242ce400 on [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock) v=177658 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0] now 1+0
2015-03-31 11:02:24.028737 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock) v=177658 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028752 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177658 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028758 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177658 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028774 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177658 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028779 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177658 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028788 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10036) auth_pin by 0x67700f8 on [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177658 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0] now 2+0
2015-03-31 11:02:24.028794 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242ce400) [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dn xlock x=1 by 0x242ce400) (dversion lock w=1 last_client=708310) v=177658 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.028800 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.028815 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.028828 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.028841 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.028853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.028862 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.028872 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.028881 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.028890 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028899 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028908 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028917 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028927 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028936 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028946 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028955 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028964 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028973 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.028983 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029002 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2bc ([1000006b2bd~366], 870 left)
2015-03-31 11:02:24.029004 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.029006 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2bc [2,head] #1000006b2bc auth v1 s=0 n() (iversion lock) 0x3f467ca8]
2015-03-31 11:02:24.029010 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178676
2015-03-31 11:02:24.029011 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10036)  pre_dirty [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dn xlock x=1 by 0x242ce400) (dversion lock w=1 last_client=708310) pv=178676 v=177658 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.029019 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f467ca8]
2015-03-31 11:02:24.029026 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242ce400 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178675 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:24.029035 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d6ca0
2015-03-31 11:02:24.029037 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178677
2015-03-31 11:02:24.029038 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178677 v=178675 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.029044 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178677 v=178675 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.029050 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f467ca8]
2015-03-31 11:02:24.029056 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.029058 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029071 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295248
2015-03-31 11:02:24.029072 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295248 v=3295246 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.029076 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295248 (current v 3295246)
2015-03-31 11:02:24.029077 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178677 v=178675 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=45+1559,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.029084 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.029085 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242ce400 on [dir 10000000000 /test_small/ [2,head] auth v=3295247 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382348=382341+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:24.029095 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d5a10
2015-03-31 11:02:24.029096 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295249
2015-03-31 11:02:24.029097 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029108 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029118 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029129 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.029130 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.200351 < 1, stopping
2015-03-31 11:02:24.029135 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029146 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.029149 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295248 v=3295246 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.029153 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31359} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029168 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f467ca8]
2015-03-31 11:02:24.029174 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.029177 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029185 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.029186 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029194 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029201 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029208 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029215 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029221 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029228 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029235 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029241 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029246 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029253 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029259 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029266 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029272 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029278 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f467ca8]
2015-03-31 11:02:24.029288 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.029289 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.029291 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f467ca8 tracedn 0x676ffa0
2015-03-31 11:02:24.029293 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242ce400) [dentry #1/test_small/small5/blarg10036 [2,head] auth NULL (dn xlock x=1 by 0x242ce400) (dversion lock w=1 last_client=708310) pv=178676 v=177658 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x676ffa0]
2015-03-31 11:02:24.029300 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407597 create #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.029308 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.029311 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31360
2015-03-31 11:02:24.029314 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31360 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.029319 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.029322 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.029325 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) including xattrs version 0
2015-03-31 11:02:24.029362 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029391 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029405 7fbe406af700  5 mds.0.log _submit_thread 5419581992~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.029406 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029419 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029467 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029477 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029488 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029500 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029512 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029533 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029543 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029609 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407598 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.029629 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407598 cr=0xaee8a00)
2015-03-31 11:02:24.029631 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407598 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.029635 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407598 cr=0xaee8a00) #1000006026a
2015-03-31 11:02:24.029637 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.029639 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.029640 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029655 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407598 cr=0xaee8a00)
2015-03-31 11:02:24.029658 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029672 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029683 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029703 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029716 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.029731 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029740 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.029752 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029762 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.029773 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029792 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029806 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029816 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029827 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029837 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029848 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029868 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31360} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.029895 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407598 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.029899 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407598 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.029909 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.029913 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.029916 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31361
2015-03-31 11:02:24.029918 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31361 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.029931 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407598 cr=0xaee8a00)
2015-03-31 11:02:24.029949 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029965 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.029979 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.029990 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.030000 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030010 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030041 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030051 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.030065 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.030076 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.030166 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407599 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.030184 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407599 cr=0x8f08f00)
2015-03-31 11:02:24.030186 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407599 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.030189 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407599 cr=0x8f08f00) #1000006b2bc
2015-03-31 11:02:24.030191 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bc snap head
2015-03-31 11:02:24.030192 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.030193 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f467ca8]
2015-03-31 11:02:24.030207 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407599 cr=0x8f08f00)
2015-03-31 11:02:24.030209 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.030224 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.030235 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030245 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f467ca8]
2015-03-31 11:02:24.030255 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.030268 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.030282 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.030292 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.030302 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030312 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.030322 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f467ca8]
2015-03-31 11:02:24.030332 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_pin by 0x242c8a00 on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f467ca8] now 1+0
2015-03-31 11:02:24.030342 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.030356 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.030371 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.030382 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.030392 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030402 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030423 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.030444 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.030460 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407599 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.030463 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407599 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.030473 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.030476 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.030480 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.030483 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.030496 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407599 cr=0x8f08f00)
2015-03-31 11:02:24.030515 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.030530 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.030543 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.030554 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.030563 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030574 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.030595 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.030605 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.030615 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.030630 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.030640 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.030651 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_unpin by 0x242c8a00 on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f467ca8] now 0+0
2015-03-31 11:02:24.070054 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407600 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.070084 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407600 cr=0x930fd00)
2015-03-31 11:02:24.070086 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407600 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.070089 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407600 cr=0x930fd00) #1000006b2bc
2015-03-31 11:02:24.070091 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bc snap head
2015-03-31 11:02:24.070092 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.070094 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.070109 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407600 cr=0x930fd00)
2015-03-31 11:02:24.070112 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070131 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070143 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070155 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.070166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070181 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.070196 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.070217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070228 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.070239 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.070249 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_pin by 0x242c8a00 on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f467ca8] now 1+0
2015-03-31 11:02:24.070259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070275 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.070362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.070378 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407600 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.070382 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407600 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.070393 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.070397 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.070402 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.070404 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.070418 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407600 cr=0x930fd00)
2015-03-31 11:02:24.070438 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070455 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070524 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.070536 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.070546 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.070562 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.070573 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.070584 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_unpin by 0x242c8a00 on [inode 1000006b2bc [2,head] {#1000006b2bc /test_small/small5/blarg10036} auth v178676 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f467ca8] now 0+0
2015-03-31 11:02:24.070624 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407601 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.070641 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407601 cr=0x9cc5500)
2015-03-31 11:02:24.070643 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407601 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.070646 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407601 cr=0x9cc5500) #1000006026a
2015-03-31 11:02:24.070647 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.070649 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.070650 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070663 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407601 cr=0x9cc5500)
2015-03-31 11:02:24.070666 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070681 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070691 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070703 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070726 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.070750 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070759 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.070769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070779 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.070796 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070809 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.070823 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070833 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.070843 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070863 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070873 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070884 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.070894 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.070904 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x29532d60 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:24.070906 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.076054 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4a follows 0 op update
2015-03-31 11:02:24.076058 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076069 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.076071 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.076090 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.076091 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076098 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076106 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.076108 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076120 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076129 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076136 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.076137 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076146 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076153 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076155 7fbe406af700  5 mds.0.log _submit_thread 5419583632~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.076159 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076164 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076171 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076177 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076184 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.076193 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.085226 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:24.085232 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:24.085242 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:24.085247 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) mark_dirty [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178675 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.085263 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10036)  mark_dirty [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178676 v=177658 ap=2+0 inode=0x3f467ca8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0]
2015-03-31 11:02:24.085271 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178677 v=178676 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 45=45+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178676
2015-03-31 11:02:24.085281 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) mark_dirty_parent
2015-03-31 11:02:24.085283 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295246 pv3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 45=45+0) n(v1 rc2015-03-31 11:03:01.000000 46=45+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.085297 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295248 v=3295246 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.085302 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295249 v=3295248 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382348=382341+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295248
2015-03-31 11:02:24.085313 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178677 v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178677
2015-03-31 11:02:24.085321 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295249 v=3295249 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382349=382342+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295249
2015-03-31 11:02:24.085330 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.085341 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:24.085343 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27519 client_caps(grant ino 1000006b2bc 1851505 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:24.085365 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178676 ap=2+0 inode=0x3f467ca8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0]
2015-03-31 11:02:24.085374 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407597 create #1000006026a/blarg10036 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.085387 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2bc
2015-03-31 11:02:24.085390 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178676 ap=2+0 inode=0x3f467ca8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0]
2015-03-31 11:02:24.085399 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178676 ap=2+0 inode=0x3f467ca8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0]
2015-03-31 11:02:24.085406 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178676 ap=2+0 inode=0x3f467ca8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0]
2015-03-31 11:02:24.085411 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10036) auth_unpin by 0x67700f8 on [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178676 ap=1+0 inode=0x3f467ca8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0] now 1+0
2015-03-31 11:02:24.085418 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178676 ap=1+0 inode=0x3f467ca8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0]
2015-03-31 11:02:24.085425 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.085441 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.085453 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.085466 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.085478 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.085489 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:24.085492 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.085502 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.085513 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:24.085515 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407601 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.085518 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407601 cr=0x9cc5500) #1000006026a
2015-03-31 11:02:24.085520 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.085522 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.085523 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085533 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407601 cr=0x9cc5500)
2015-03-31 11:02:24.085537 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.085553 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.085563 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085573 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.085587 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.085597 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085607 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.085621 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.085632 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085642 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085653 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085663 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085674 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31361} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.085689 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:24.085692 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178677 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.085701 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:24.085706 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.085709 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085714 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.085717 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085720 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.085722 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085725 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.085727 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085730 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.085732 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085735 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.085737 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085740 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.085742 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085745 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.085747 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085750 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.085752 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085755 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.085757 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085760 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.085762 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085764 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.085766 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085770 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.085787 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085791 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.085792 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085796 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.085797 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085801 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.085802 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085805 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.085807 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085809 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.085811 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085824 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.085825 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085828 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.085830 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085832 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.085834 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085836 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.085838 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085840 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.085842 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085845 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.085846 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085849 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.085850 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085854 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.085856 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085858 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.085860 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085863 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.085865 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085867 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.085869 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085872 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.085873 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085876 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.085878 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085881 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.085882 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085885 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.085887 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085889 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.085891 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085894 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.085896 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085898 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.085900 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085902 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.085904 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085907 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.085908 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085911 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.085913 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085916 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.085917 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085920 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.085921 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085924 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.085926 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085928 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.085930 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085932 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.085934 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085937 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.085938 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085941 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:24.085943 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.085991 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407601 readdir #1000006026a 2015-03-31 11:03:01.000000) v2 readdir num=46 bytes=12560 end=1 complete=1
2015-03-31 11:02:24.085996 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407601 readdir #1000006026a 2015-03-31 11:03:01.000000) v2 readdir num=46 end=1 complete=1
2015-03-31 11:02:24.086000 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407601 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.086009 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.086012 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.086015 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31362
2015-03-31 11:02:24.086017 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31362 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.086029 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407601 cr=0x9cc5500)
2015-03-31 11:02:24.086048 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.086065 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.086079 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.086090 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.086100 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086111 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086133 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086143 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086155 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086165 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086175 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8a00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.086190 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.086200 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.086225 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086237 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086247 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086257 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178676 ap=1+0 inode=0x3f467ca8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x676ffa0]
2015-03-31 11:02:24.086266 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086288 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407597 cr=0x968fa80)
2015-03-31 11:02:24.086296 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce400 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.086311 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce400 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.086322 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242ce400 on [dir 10000000000 /test_small/ [2,head] auth v=3295249 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382349=382342+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:24.086333 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242ce400 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178677 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:24.086342 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.086353 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10036) auth_unpin by 0x242ce400 on [dentry #1/test_small/small5/blarg10036 [2,head] auth (dn sync l=1) (dversion lock) v=178676 inode=0x3f467ca8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x676ffa0] now 0+0
2015-03-31 11:02:24.086402 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407602 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.086434 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407602 cr=0x968df00)
2015-03-31 11:02:24.086437 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407602 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.086441 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407602 cr=0x968df00) #1000006b2bc
2015-03-31 11:02:24.086443 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bc snap head
2015-03-31 11:02:24.086445 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.086446 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.086463 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407602 cr=0x968df00)
2015-03-31 11:02:24.086466 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.086485 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.086497 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.086508 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.086518 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.086533 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.086548 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.086557 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.086568 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.086578 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.086589 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.086598 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_pin by 0x2367d500 on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8] now 1+0
2015-03-31 11:02:24.086609 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.086624 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.086639 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.086660 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.086670 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086680 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086690 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.086710 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.086725 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407602 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.086730 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407602 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.086741 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.086745 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.086749 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:24.086753 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.086769 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407602 cr=0x968df00)
2015-03-31 11:02:24.086795 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.086813 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.086828 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.086850 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.086861 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086872 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.086882 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.086892 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.086902 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.086917 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.086928 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.086939 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_unpin by 0x2367d500 on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8] now 0+0
2015-03-31 11:02:24.088146 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4a follows 0 op update
2015-03-31 11:02:24.088150 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088162 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.088164 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.088182 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.088183 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088190 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088198 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.088200 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088206 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088213 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088220 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.088221 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088228 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088236 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088241 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088246 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.088247 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.088249 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e4a [2,head] /test_small/small1/blarg10036 auth v136890 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bdda8]
2015-03-31 11:02:24.088256 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.128044 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407603 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.128066 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407603 cr=0x25f4cd80)
2015-03-31 11:02:24.128071 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407603 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.128074 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407603 cr=0x25f4cd80) #1000006b2bc
2015-03-31 11:02:24.128077 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bc snap head
2015-03-31 11:02:24.128078 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.128080 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.128096 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407603 cr=0x25f4cd80)
2015-03-31 11:02:24.128098 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.128117 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.128128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.128139 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.128149 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.128164 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.128179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.128189 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.128201 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.128210 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.128221 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8]
2015-03-31 11:02:24.128231 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_pin by 0x2367d500 on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8] now 1+0
2015-03-31 11:02:24.128241 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.128257 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.128271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.128292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.128302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.128312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.128323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.128332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.128349 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407603 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.128353 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407603 getattr Xs #1000006b2bc 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.128365 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.128369 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.128374 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.128376 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.128391 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407603 cr=0x25f4cd80)
2015-03-31 11:02:24.128411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.128429 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.128444 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.128455 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.128466 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.128476 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.128487 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.128498 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f467ca8]
2015-03-31 11:02:24.128508 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.128524 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.128535 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.128546 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) auth_unpin by 0x2367d500 on [inode 1000006b2bc [2,head] /test_small/small5/blarg10036 auth v178676 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f467ca8] now 0+0
2015-03-31 11:02:24.128843 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407604 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.128861 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407604 cr=0x9cc5c80)
2015-03-31 11:02:24.128863 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407604 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.128866 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407604 cr=0x9cc5c80) #10000004e45
2015-03-31 11:02:24.128868 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e45 snap head
2015-03-31 11:02:24.128870 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.128871 7fbe462be700 10 mds.0.server ref is [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.128883 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407604 cr=0x9cc5c80)
2015-03-31 11:02:24.128886 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.128901 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.128911 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.128921 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.128926 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.128940 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.128955 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.128965 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.128976 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.128985 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.128995 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.129000 7fbe462be700 10 mds.0.cache.ino(10000004e45) auth_pin by 0x2367d500 on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470] now 1+0
2015-03-31 11:02:24.129007 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.129022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.129036 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.129047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.129058 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.129067 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.129075 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129081 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129087 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129105 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129127 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407604 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.129131 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407604 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.129142 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.129145 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.129150 7fbe462be700 10 mds.0.cache.ino(10000004e45) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.129152 7fbe462be700 10 mds.0.cache.ino(10000004e45) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.129165 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407604 cr=0x9cc5c80)
2015-03-31 11:02:24.129185 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.129201 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.129215 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.129226 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.129236 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.129245 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.129266 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129273 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129280 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.129293 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.129308 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.129319 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.129328 7fbe462be700 10 mds.0.cache.ino(10000004e45) auth_unpin by 0x2367d500 on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bd470] now 0+0
2015-03-31 11:02:24.129700 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407605 lookup #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.129721 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407605 cr=0xaeeda00)
2015-03-31 11:02:24.129723 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407605 lookup #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.129726 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407605 cr=0xaeeda00) #1000006026a/blarg10037
2015-03-31 11:02:24.129728 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.129731 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10037 [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock) v=177660 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770180]
2015-03-31 11:02:24.129740 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.129741 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407605 lookup #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.129753 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.129766 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407605 cr=0xaeeda00)
2015-03-31 11:02:24.130276 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407606 lookup #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.130295 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407606 cr=0x60a8500)
2015-03-31 11:02:24.130298 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407606 lookup #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.130301 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407606 cr=0x60a8500) #1000006026a/blarg10037
2015-03-31 11:02:24.130303 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.130306 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10037 [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock) v=177660 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770180]
2015-03-31 11:02:24.130314 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.130316 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407606 lookup #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.130327 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.130339 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407606 cr=0x60a8500)
2015-03-31 11:02:24.130744 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407607 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.130766 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407607 cr=0x23fbb700)
2015-03-31 11:02:24.130769 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407607 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.130772 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407607 cr=0x23fbb700) #10000004e45
2015-03-31 11:02:24.130774 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e45 snap head
2015-03-31 11:02:24.130775 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.130777 7fbe462be700 10 mds.0.server ref is [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.130793 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407607 cr=0x23fbb700)
2015-03-31 11:02:24.130796 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.130813 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.130825 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.130835 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.130842 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.130857 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.130872 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.130882 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.130893 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.130902 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.130912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.130919 7fbe462be700 10 mds.0.cache.ino(10000004e45) auth_pin by 0x2367d500 on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470] now 1+0
2015-03-31 11:02:24.130927 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.130942 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.130967 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.130978 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.130998 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.131006 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.131015 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131028 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131034 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131048 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407607 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.131053 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407607 getattr Xs #10000004e45 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.131064 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.131067 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.131072 7fbe462be700 10 mds.0.cache.ino(10000004e45) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.131074 7fbe462be700 10 mds.0.cache.ino(10000004e45) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.131089 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407607 cr=0x23fbb700)
2015-03-31 11:02:24.131108 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.131125 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.131140 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.131150 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.131161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.131170 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.131191 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131199 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131206 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131213 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bd470]
2015-03-31 11:02:24.131219 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.131234 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.131245 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.131255 7fbe462be700 10 mds.0.cache.ino(10000004e45) auth_unpin by 0x2367d500 on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9bd470] now 0+0
2015-03-31 11:02:24.131609 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407608 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.131631 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407608 cr=0x682d000)
2015-03-31 11:02:24.131633 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407608 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.131637 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407608 cr=0x682d000) #1000006026a
2015-03-31 11:02:24.131639 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.131640 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.131641 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.131659 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407608 cr=0x682d000)
2015-03-31 11:02:24.131662 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.131678 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.131690 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.131700 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.131715 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.131730 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.131740 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.131751 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.131761 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.131772 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.131792 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.131817 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.131827 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.131837 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.131857 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.131867 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.131877 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31362} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.131893 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407608 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.131898 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407608 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.131909 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.131913 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.131917 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31363
2015-03-31 11:02:24.131919 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31363 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.131934 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407608 cr=0x682d000)
2015-03-31 11:02:24.131953 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.131970 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.131985 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.131995 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.132006 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31363} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132028 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31363} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132038 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31363} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132048 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31363} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132058 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.132073 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.132084 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31363} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.132464 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407609 create #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.132485 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407609 cr=0x9ae0a00)
2015-03-31 11:02:24.132490 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132507 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:24.132509 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132520 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.132521 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132533 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132544 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132553 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132563 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.132564 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407609 create #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.132568 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10037
2015-03-31 11:02:24.132569 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407609 cr=0x9ae0a00) #1000006026a/blarg10037
2015-03-31 11:02:24.132571 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10037
2015-03-31 11:02:24.132573 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.132574 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.132575 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178677 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.132583 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178677 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.132589 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10037 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178677 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.132598 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407609 cr=0x9ae0a00)
2015-03-31 11:02:24.132604 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.132620 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.132631 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132641 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock) v=177660 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770180]
2015-03-31 11:02:24.132648 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.132663 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.132688 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.132698 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.132719 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.132728 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.132738 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock) v=177660 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770180]
2015-03-31 11:02:24.132742 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10037) auth_pin by 0x2367d500 on [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock) v=177660 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180] now 1+0
2015-03-31 11:02:24.132748 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock) v=177660 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.132753 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177660 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.132758 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177660 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.132763 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177660 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.132768 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177660 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.132773 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10037) auth_pin by 0x67702d8 on [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177660 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180] now 2+0
2015-03-31 11:02:24.132778 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367d500) [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dn xlock x=1 by 0x2367d500) (dversion lock w=1 last_client=708310) v=177660 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.132789 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.132805 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.132819 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.132833 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.132847 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.132858 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.132868 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.132878 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.132888 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132897 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132907 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132917 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132927 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132937 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132947 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132957 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132967 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132977 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.132987 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133007 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2bd ([1000006b2be~365], 869 left)
2015-03-31 11:02:24.133010 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.133011 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2bd [2,head] #1000006b2bd auth v1 s=0 n() (iversion lock) 0x3f3338a0]
2015-03-31 11:02:24.133016 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178678
2015-03-31 11:02:24.133017 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10037)  pre_dirty [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dn xlock x=1 by 0x2367d500) (dversion lock w=1 last_client=708310) pv=178678 v=177660 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.133025 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3338a0]
2015-03-31 11:02:24.133033 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367d500 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:24.133042 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x39577a0
2015-03-31 11:02:24.133044 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178679
2015-03-31 11:02:24.133045 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178679 v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.133052 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178679 v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.133060 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3338a0]
2015-03-31 11:02:24.133066 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.133068 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133082 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295250
2015-03-31 11:02:24.133083 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295250 v=3295248 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.133087 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295250 (current v 3295248)
2015-03-31 11:02:24.133089 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178679 v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.133097 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.133099 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367d500 on [dir 10000000000 /test_small/ [2,head] auth v=3295249 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382349=382342+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:24.133109 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x96823c0
2015-03-31 11:02:24.133110 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295251
2015-03-31 11:02:24.133111 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133121 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133133 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133144 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.133145 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.304356 < 1, stopping
2015-03-31 11:02:24.133150 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133161 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.133165 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295250 v=3295248 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.133170 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31363} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133185 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3338a0]
2015-03-31 11:02:24.133191 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.133194 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133201 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.133203 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133211 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133219 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133227 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133234 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133241 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133248 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133255 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133261 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133268 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133275 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133283 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133290 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133296 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133302 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3338a0]
2015-03-31 11:02:24.133313 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.133314 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.133316 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3338a0 tracedn 0x6770180
2015-03-31 11:02:24.133318 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367d500) [dentry #1/test_small/small5/blarg10037 [2,head] auth NULL (dn xlock x=1 by 0x2367d500) (dversion lock w=1 last_client=708310) pv=178678 v=177660 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770180]
2015-03-31 11:02:24.133325 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407609 create #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.133334 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.133338 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31364
2015-03-31 11:02:24.133340 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31364 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.133346 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.133349 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.133352 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) including xattrs version 0
2015-03-31 11:02:24.133390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.133420 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.133434 7fbe406af700  5 mds.0.log _submit_thread 5419584491~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.133435 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.133448 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.133462 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133474 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133485 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133495 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133505 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133518 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133529 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133540 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133549 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133559 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133803 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407610 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.133823 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407610 cr=0x9ae1400)
2015-03-31 11:02:24.133825 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407610 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.133829 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407610 cr=0x9ae1400) #1000006b2bd
2015-03-31 11:02:24.133831 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bd snap head
2015-03-31 11:02:24.133833 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.133834 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3338a0]
2015-03-31 11:02:24.133848 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407610 cr=0x9ae1400)
2015-03-31 11:02:24.133851 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.133868 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133878 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133890 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3338a0]
2015-03-31 11:02:24.133898 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.133913 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.133928 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.133938 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.133949 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.133960 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.133971 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3338a0]
2015-03-31 11:02:24.133980 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_pin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3338a0] now 1+0
2015-03-31 11:02:24.133990 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134006 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134021 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134032 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134043 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134065 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134085 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.134095 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.134110 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407610 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.134114 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407610 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.134125 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.134130 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.134133 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.134135 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.134149 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407610 cr=0x9ae1400)
2015-03-31 11:02:24.134168 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134184 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134198 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134209 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134220 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134251 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.134262 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.134272 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.134288 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.134299 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.134311 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_unpin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0] now 0+0
2015-03-31 11:02:24.134560 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407611 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.134579 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407611 cr=0x9ae1b80)
2015-03-31 11:02:24.134581 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407611 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.134585 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407611 cr=0x9ae1b80) #1000006b2bd
2015-03-31 11:02:24.134587 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bd snap head
2015-03-31 11:02:24.134588 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.134589 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.134603 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407611 cr=0x9ae1b80)
2015-03-31 11:02:24.134606 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134622 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134633 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134644 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.134654 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134668 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.134683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134693 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.134704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134714 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.134725 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.134735 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_pin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0] now 1+0
2015-03-31 11:02:24.134745 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134760 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134775 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134791 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134802 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134823 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134843 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.134853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.134867 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407611 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.134871 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407611 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.134881 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.134884 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.134889 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.134891 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.134905 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407611 cr=0x9ae1b80)
2015-03-31 11:02:24.134924 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134941 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.134955 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134965 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.134987 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.134998 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.135009 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.135020 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.135029 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.135045 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.135056 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.135066 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_unpin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0] now 0+0
2015-03-31 11:02:24.138969 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e45 follows 0 op update
2015-03-31 11:02:24.138972 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.138983 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.138985 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.139004 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.139005 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139012 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139020 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.139022 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139033 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139042 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139049 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.139051 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139059 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139066 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139068 7fbe406af700  5 mds.0.log _submit_thread 5419586131~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.139073 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139078 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139084 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139090 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139095 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.139105 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.179030 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407612 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.179049 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407612 cr=0x9ae6400)
2015-03-31 11:02:24.179053 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407612 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.179057 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407612 cr=0x9ae6400) #1000006b2bd
2015-03-31 11:02:24.179059 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bd snap head
2015-03-31 11:02:24.179061 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.179062 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.179079 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407612 cr=0x9ae6400)
2015-03-31 11:02:24.179082 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.179101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.179113 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.179125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.179136 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.179151 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.179166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.179176 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.179188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.179198 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.179210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.179220 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_pin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0] now 1+0
2015-03-31 11:02:24.179231 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.179246 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.179271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.179292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.179302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.179312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.179323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.179332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.179349 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407612 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.179353 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407612 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.179365 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.179368 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.179373 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:24.179375 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.179390 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407612 cr=0x9ae6400)
2015-03-31 11:02:24.179410 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.179426 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.179441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.179452 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.179463 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.179485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.179496 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.179507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.179517 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.179533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.179544 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.179555 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_unpin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0] now 0+0
2015-03-31 11:02:24.180846 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e45 follows 0 op update
2015-03-31 11:02:24.180849 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180861 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.180863 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.180882 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.180883 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180890 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180899 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.180901 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180906 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180914 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180921 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.180922 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180929 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180936 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180941 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180947 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.180949 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.180950 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e45 [2,head] /test_small/small1/blarg10037 auth v136892 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bd470]
2015-03-31 11:02:24.180957 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.220039 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407613 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.220061 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407613 cr=0x2645ad00)
2015-03-31 11:02:24.220066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407613 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.220069 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407613 cr=0x2645ad00) #1000006b2bd
2015-03-31 11:02:24.220071 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bd snap head
2015-03-31 11:02:24.220073 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.220074 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.220091 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407613 cr=0x2645ad00)
2015-03-31 11:02:24.220094 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220112 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.220137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.220148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220163 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.220178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220188 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.220200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.220210 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.220222 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.220231 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_pin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0] now 1+0
2015-03-31 11:02:24.220242 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220258 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220283 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220313 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.220324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.220334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.220344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.220360 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407613 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.220364 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407613 getattr Xs #1000006b2bd 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.220375 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.220379 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.220383 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:24.220387 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.220401 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407613 cr=0x2645ad00)
2015-03-31 11:02:24.220421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220438 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.220497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.220508 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.220519 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3338a0]
2015-03-31 11:02:24.220529 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.220544 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.220555 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.220567 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) auth_unpin by 0x242c8f00 on [inode 1000006b2bd [2,head] {#1000006b2bd /test_small/small5/blarg10037} auth v178678 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3338a0] now 0+0
2015-03-31 11:02:24.220845 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407614 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.220863 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407614 cr=0xa928f00)
2015-03-31 11:02:24.220865 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407614 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.220868 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407614 cr=0xa928f00) #10000004e86
2015-03-31 11:02:24.220870 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e86 snap head
2015-03-31 11:02:24.220872 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.220873 7fbe462be700 10 mds.0.server ref is [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.220884 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407614 cr=0xa928f00)
2015-03-31 11:02:24.220887 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220903 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220914 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.220923 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.220930 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.220944 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.220959 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.220969 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.220980 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.220989 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242c8f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.220999 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.221004 7fbe462be700 10 mds.0.cache.ino(10000004e86) auth_pin by 0x242c8f00 on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38] now 1+0
2015-03-31 11:02:24.221012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.221026 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.221041 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.221052 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.221062 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.221072 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.221081 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221088 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221106 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221113 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221137 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407614 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.221142 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407614 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.221152 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.221156 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.221160 7fbe462be700 10 mds.0.cache.ino(10000004e86) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.221163 7fbe462be700 10 mds.0.cache.ino(10000004e86) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.221176 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407614 cr=0xa928f00)
2015-03-31 11:02:24.221196 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.221212 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.221227 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.221238 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.221248 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.221257 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.221278 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221285 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221291 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221296 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.221303 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.221318 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.221328 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242c8f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.221338 7fbe462be700 10 mds.0.cache.ino(10000004e86) auth_unpin by 0x242c8f00 on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bcb38] now 0+0
2015-03-31 11:02:24.221709 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407615 lookup #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.221730 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407615 cr=0x940f080)
2015-03-31 11:02:24.221732 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407615 lookup #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.221735 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407615 cr=0x940f080) #1000006026a/blarg10038
2015-03-31 11:02:24.221737 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.221740 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10038 [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock) v=177662 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770360]
2015-03-31 11:02:24.221749 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.221750 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407615 lookup #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.221763 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.221776 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407615 cr=0x940f080)
2015-03-31 11:02:24.222213 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407616 lookup #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.222233 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407616 cr=0xa251e00)
2015-03-31 11:02:24.222236 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407616 lookup #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.222239 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407616 cr=0xa251e00) #1000006026a/blarg10038
2015-03-31 11:02:24.222241 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.222244 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10038 [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock) v=177662 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770360]
2015-03-31 11:02:24.222252 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.222254 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407616 lookup #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.222266 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.222279 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407616 cr=0xa251e00)
2015-03-31 11:02:24.222769 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407617 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.222795 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407617 cr=0xa250f00)
2015-03-31 11:02:24.222799 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407617 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.222802 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407617 cr=0xa250f00) #10000004e86
2015-03-31 11:02:24.222804 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e86 snap head
2015-03-31 11:02:24.222805 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.222807 7fbe462be700 10 mds.0.server ref is [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.222818 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407617 cr=0xa250f00)
2015-03-31 11:02:24.222821 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.222839 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.222851 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.222861 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.222867 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.222882 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.222897 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.222907 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.222919 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.222928 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242c8f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.222939 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.222945 7fbe462be700 10 mds.0.cache.ino(10000004e86) auth_pin by 0x242c8f00 on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38] now 1+0
2015-03-31 11:02:24.222953 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.222968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.222993 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223014 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.223033 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.223042 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223048 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223053 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223059 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223072 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407617 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.223077 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407617 getattr Xs #10000004e86 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.223088 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.223091 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.223096 7fbe462be700 10 mds.0.cache.ino(10000004e86) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.223099 7fbe462be700 10 mds.0.cache.ino(10000004e86) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.223113 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407617 cr=0xa250f00)
2015-03-31 11:02:24.223133 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.223150 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.223164 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223176 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223186 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.223207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.223216 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223224 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223231 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bcb38]
2015-03-31 11:02:24.223243 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.223258 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.223269 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242c8f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.223278 7fbe462be700 10 mds.0.cache.ino(10000004e86) auth_unpin by 0x242c8f00 on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9bcb38] now 0+0
2015-03-31 11:02:24.223629 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407618 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.223651 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407618 cr=0xa255780)
2015-03-31 11:02:24.223655 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407618 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.223659 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407618 cr=0xa255780) #1000006026a
2015-03-31 11:02:24.223661 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.223663 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.223664 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.223682 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407618 cr=0xa255780)
2015-03-31 11:02:24.223686 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.223702 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223714 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.223725 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.223740 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.223755 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223765 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.223776 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.223791 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.223803 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.223818 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.223833 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223854 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.223864 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.223884 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.223895 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.223905 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31364} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.223923 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407618 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.223927 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407618 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.223938 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.223942 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.223947 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31365
2015-03-31 11:02:24.223949 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31365 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.223964 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407618 cr=0xa255780)
2015-03-31 11:02:24.223984 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224000 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224015 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224026 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224035 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224046 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224069 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224079 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224089 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.224104 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.224114 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.224498 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407619 create #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.224519 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407619 cr=0x26d3c600)
2015-03-31 11:02:24.224522 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407619 create #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.224525 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10038
2015-03-31 11:02:24.224526 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407619 cr=0x26d3c600) #1000006026a/blarg10038
2015-03-31 11:02:24.224528 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10038
2015-03-31 11:02:24.224529 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.224531 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.224533 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178679 v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.224542 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178679 v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.224550 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10038 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178679 v=178677 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.224561 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407619 cr=0x26d3c600)
2015-03-31 11:02:24.224567 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224586 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224598 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224609 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock) v=177662 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770360]
2015-03-31 11:02:24.224616 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224631 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.224646 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224656 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.224667 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224678 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.224688 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock) v=177662 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770360]
2015-03-31 11:02:24.224693 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10038) auth_pin by 0x242c8f00 on [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock) v=177662 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360] now 1+0
2015-03-31 11:02:24.224700 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock) v=177662 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.224705 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177662 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.224721 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177662 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.224726 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177662 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.224732 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177662 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.224746 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10038) auth_pin by 0x67704b8 on [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177662 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360] now 2+0
2015-03-31 11:02:24.224751 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242c8f00) [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dn xlock x=1 by 0x242c8f00) (dversion lock w=1 last_client=708310) v=177662 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.224757 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224773 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224792 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224805 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.224819 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224829 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224839 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224848 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.224858 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224869 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224879 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224889 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224900 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224910 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224920 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224930 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224940 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224951 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.224971 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2be ([1000006b2bf~364], 868 left)
2015-03-31 11:02:24.224974 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.224975 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2be [2,head] #1000006b2be auth v1 s=0 n() (iversion lock) 0x3f3ac890]
2015-03-31 11:02:24.224980 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178680
2015-03-31 11:02:24.224981 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10038)  pre_dirty [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dn xlock x=1 by 0x242c8f00) (dversion lock w=1 last_client=708310) pv=178680 v=177662 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.224989 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ac890]
2015-03-31 11:02:24.224996 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242c8f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178680 v=178677 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:24.225005 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3956e00
2015-03-31 11:02:24.225007 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178681
2015-03-31 11:02:24.225008 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178681 v=178677 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.225015 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178681 v=178677 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.225022 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ac890]
2015-03-31 11:02:24.225027 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.225029 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295250 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225043 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295252
2015-03-31 11:02:24.225044 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295252 v=3295248 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.225048 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295252 (current v 3295248)
2015-03-31 11:02:24.225050 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178681 v=178677 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.225056 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.225058 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242c8f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295252 v=3295249 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382349=382342+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:24.225068 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d63b0
2015-03-31 11:02:24.225069 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295253
2015-03-31 11:02:24.225070 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225083 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225094 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225105 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.225107 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.39632 < 1, stopping
2015-03-31 11:02:24.225111 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225122 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.225126 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295252 v=3295248 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.225131 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31365} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225146 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3ac890]
2015-03-31 11:02:24.225153 7fbe462be700 10 mds.0.cache.ino(1000006b2be) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.225156 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225164 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.225165 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225174 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225181 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225188 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225195 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225202 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225209 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225215 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225222 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225229 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225236 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225243 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225250 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225256 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225263 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ac890]
2015-03-31 11:02:24.225274 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.225275 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.225277 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3ac890 tracedn 0x6770360
2015-03-31 11:02:24.225279 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242c8f00) [dentry #1/test_small/small5/blarg10038 [2,head] auth NULL (dn xlock x=1 by 0x242c8f00) (dversion lock w=1 last_client=708310) pv=178680 v=177662 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770360]
2015-03-31 11:02:24.225286 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407619 create #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.225295 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.225299 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31366
2015-03-31 11:02:24.225301 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31366 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.225307 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.225310 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.225313 7fbe462be700 10 mds.0.cache.ino(1000006b2be) including xattrs version 0
2015-03-31 11:02:24.225351 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225381 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225395 7fbe406af700  5 mds.0.log _submit_thread 5419586990~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.225396 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225410 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225447 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225457 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225467 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225479 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225492 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225503 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225513 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225523 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225764 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407620 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.225788 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407620 cr=0x9f78280)
2015-03-31 11:02:24.225791 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407620 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.225795 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407620 cr=0x9f78280) #1000006b2be
2015-03-31 11:02:24.225797 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2be snap head
2015-03-31 11:02:24.225798 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.225799 7fbe462be700 10 mds.0.server ref is [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3ac890]
2015-03-31 11:02:24.225812 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407620 cr=0x9f78280)
2015-03-31 11:02:24.225815 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225831 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225842 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225852 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ac890]
2015-03-31 11:02:24.225862 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225876 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.225891 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225901 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.225911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.225922 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.225933 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ac890]
2015-03-31 11:02:24.225942 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_pin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ac890] now 1+0
2015-03-31 11:02:24.225953 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.225982 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.225993 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226003 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226028 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226048 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226057 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226073 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407620 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.226077 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407620 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.226088 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.226092 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.226096 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.226099 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.226113 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407620 cr=0x9f78280)
2015-03-31 11:02:24.226132 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226164 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226185 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226208 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226219 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226240 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.226255 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.226267 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.226278 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_unpin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890] now 0+0
2015-03-31 11:02:24.226495 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407621 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.226513 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407621 cr=0x51da300)
2015-03-31 11:02:24.226515 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407621 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.226518 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407621 cr=0x51da300) #1000006b2be
2015-03-31 11:02:24.226520 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2be snap head
2015-03-31 11:02:24.226521 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.226522 7fbe462be700 10 mds.0.server ref is [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.226536 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407621 cr=0x51da300)
2015-03-31 11:02:24.226538 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226554 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226565 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226576 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.226585 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226599 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.226614 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226624 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.226635 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226645 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.226656 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.226666 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_pin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890] now 1+0
2015-03-31 11:02:24.226676 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226692 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226707 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226728 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226739 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226760 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226781 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226801 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407621 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.226805 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407621 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.226815 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.226819 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.226823 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.226826 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.226839 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407621 cr=0x51da300)
2015-03-31 11:02:24.226857 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226874 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.226889 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226900 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.226921 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226932 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.226943 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226954 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.226964 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.226979 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.226989 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.227000 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_unpin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890] now 0+0
2015-03-31 11:02:24.431884 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e86 follows 0 op update
2015-03-31 11:02:24.431887 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431898 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.431900 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.431919 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.431920 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431927 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431935 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.431937 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431948 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431957 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431966 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.431967 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431975 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431982 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431984 7fbe406af700  5 mds.0.log _submit_thread 5419588630~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.431989 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.431994 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.432000 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.432005 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.432010 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.432020 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.432036 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407622 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.432056 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407622 cr=0x45a5c80)
2015-03-31 11:02:24.432059 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407622 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.432063 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407622 cr=0x45a5c80) #1000006b2be
2015-03-31 11:02:24.432065 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2be snap head
2015-03-31 11:02:24.432067 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.432068 7fbe462be700 10 mds.0.server ref is [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.432082 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407622 cr=0x45a5c80)
2015-03-31 11:02:24.432085 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.432101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.432113 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.432125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.432135 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.432160 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.432174 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.432184 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.432195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.432205 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.432216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.432226 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_pin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890] now 1+0
2015-03-31 11:02:24.432236 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.432251 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.432275 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.432286 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.432296 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.432306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.432316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.432326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.432342 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407622 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.432346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407622 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.432357 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.432361 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.432365 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:24.432368 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.432382 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407622 cr=0x45a5c80)
2015-03-31 11:02:24.432402 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.432418 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.432433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.432443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.432454 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.432464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.432486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.432497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.432507 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.432522 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.432533 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.432544 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_unpin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890] now 0+0
2015-03-31 11:02:24.433817 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e86 follows 0 op update
2015-03-31 11:02:24.433821 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433832 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.433834 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.433853 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.433854 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433861 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433869 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.433871 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433877 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433883 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433890 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.433891 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433897 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433904 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433910 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433916 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.433917 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.433919 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e86 [2,head] /test_small/small1/blarg10038 auth v136894 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bcb38]
2015-03-31 11:02:24.433926 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.473061 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407623 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.473083 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407623 cr=0x5410f00)
2015-03-31 11:02:24.473087 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407623 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.473091 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407623 cr=0x5410f00) #1000006b2be
2015-03-31 11:02:24.473093 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2be snap head
2015-03-31 11:02:24.473094 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.473095 7fbe462be700 10 mds.0.server ref is [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.473111 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407623 cr=0x5410f00)
2015-03-31 11:02:24.473114 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473132 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473144 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.473156 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.473166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473180 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.473195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473204 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.473215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.473226 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.473236 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.473246 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_pin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890] now 1+0
2015-03-31 11:02:24.473256 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473272 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473286 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473327 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.473337 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.473347 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.473356 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.473371 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407623 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.473375 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407623 getattr Xs #1000006b2be 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.473386 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.473389 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.473393 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:24.473396 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.473410 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407623 cr=0x5410f00)
2015-03-31 11:02:24.473429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473460 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473471 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473481 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.473503 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.473514 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.473525 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ac890]
2015-03-31 11:02:24.473534 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.473549 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.473560 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.473570 7fbe462be700 10 mds.0.cache.ino(1000006b2be) auth_unpin by 0x242cc100 on [inode 1000006b2be [2,head] {#1000006b2be /test_small/small5/blarg10038} auth v178680 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ac890] now 0+0
2015-03-31 11:02:24.473849 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407624 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.473867 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407624 cr=0x26903700)
2015-03-31 11:02:24.473870 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407624 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.473873 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407624 cr=0x26903700) #10000004e4b
2015-03-31 11:02:24.473875 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4b snap head
2015-03-31 11:02:24.473876 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.473877 7fbe462be700 10 mds.0.server ref is [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.473887 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407624 cr=0x26903700)
2015-03-31 11:02:24.473890 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473905 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473915 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.473925 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.473931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.473945 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.473959 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.473968 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.473979 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.473987 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cc100 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.473996 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.474001 7fbe462be700 10 mds.0.cache.ino(10000004e4b) auth_pin by 0x242cc100 on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200] now 1+0
2015-03-31 11:02:24.474009 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.474023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.474037 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.474047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.474058 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.474067 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.474076 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474083 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474089 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474095 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474120 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407624 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.474135 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407624 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.474146 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.474150 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.474153 7fbe462be700 10 mds.0.cache.ino(10000004e4b) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.474155 7fbe462be700 10 mds.0.cache.ino(10000004e4b) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.474168 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407624 cr=0x26903700)
2015-03-31 11:02:24.474187 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.474203 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.474217 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.474227 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.474237 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.474246 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.474267 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474274 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474281 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.474293 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.474308 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.474318 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cc100 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.474328 7fbe462be700 10 mds.0.cache.ino(10000004e4b) auth_unpin by 0x242cc100 on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bc200] now 0+0
2015-03-31 11:02:24.474699 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407625 lookup #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.474719 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407625 cr=0x25f4ee00)
2015-03-31 11:02:24.474721 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407625 lookup #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.474724 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407625 cr=0x25f4ee00) #1000006026a/blarg10039
2015-03-31 11:02:24.474726 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.474729 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10039 [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock) v=177664 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770540]
2015-03-31 11:02:24.474737 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.474738 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407625 lookup #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.474749 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.474763 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407625 cr=0x25f4ee00)
2015-03-31 11:02:24.475201 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407626 lookup #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.475220 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407626 cr=0x5e8c380)
2015-03-31 11:02:24.475224 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407626 lookup #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.475227 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407626 cr=0x5e8c380) #1000006026a/blarg10039
2015-03-31 11:02:24.475229 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.475232 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10039 [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock) v=177664 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770540]
2015-03-31 11:02:24.475240 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.475242 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407626 lookup #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.475253 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.475266 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407626 cr=0x5e8c380)
2015-03-31 11:02:24.475731 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407627 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.475752 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407627 cr=0xb264880)
2015-03-31 11:02:24.475756 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407627 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.475759 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407627 cr=0xb264880) #10000004e4b
2015-03-31 11:02:24.475761 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4b snap head
2015-03-31 11:02:24.475762 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.475763 7fbe462be700 10 mds.0.server ref is [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.475776 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407627 cr=0xb264880)
2015-03-31 11:02:24.475779 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.475801 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.475813 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.475822 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.475828 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.475843 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.475857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.475867 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.475878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.475886 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cc100 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.475895 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.475900 7fbe462be700 10 mds.0.cache.ino(10000004e4b) auth_pin by 0x242cc100 on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200] now 1+0
2015-03-31 11:02:24.475908 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.475923 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.475937 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.475958 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.475980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.475988 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.475996 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476009 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476015 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476027 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407627 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.476031 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407627 getattr Xs #10000004e4b 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.476042 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.476046 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.476049 7fbe462be700 10 mds.0.cache.ino(10000004e4b) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.476052 7fbe462be700 10 mds.0.cache.ino(10000004e4b) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.476066 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407627 cr=0xb264880)
2015-03-31 11:02:24.476085 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476101 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476115 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476126 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476136 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.476146 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.476166 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476173 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476180 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9bc200]
2015-03-31 11:02:24.476191 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.476206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.476217 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cc100 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.476226 7fbe462be700 10 mds.0.cache.ino(10000004e4b) auth_unpin by 0x242cc100 on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9bc200] now 0+0
2015-03-31 11:02:24.476507 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407628 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.476524 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407628 cr=0xb267080)
2015-03-31 11:02:24.476527 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407628 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.476530 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407628 cr=0xb267080) #1000006026a
2015-03-31 11:02:24.476532 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.476534 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.476535 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476549 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407628 cr=0xb267080)
2015-03-31 11:02:24.476552 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476566 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476577 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476587 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476600 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.476614 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476623 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.476634 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476644 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.476655 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476669 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476683 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476693 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476703 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476713 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476724 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476734 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31366} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476751 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407628 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.476772 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407628 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.476797 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.476800 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.476804 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31367
2015-03-31 11:02:24.476805 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31367 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.476818 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407628 cr=0xb267080)
2015-03-31 11:02:24.476837 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476853 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.476867 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476878 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.476887 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476898 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476920 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.476940 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.476954 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.476964 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.477346 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407629 create #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.477366 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407629 cr=0x26459b80)
2015-03-31 11:02:24.477370 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407629 create #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.477373 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10039
2015-03-31 11:02:24.477374 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407629 cr=0x26459b80) #1000006026a/blarg10039
2015-03-31 11:02:24.477376 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10039
2015-03-31 11:02:24.477377 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.477379 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.477380 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178681 v=178677 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.477390 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178681 v=178677 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.477398 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10039 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178681 v=178677 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.477409 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407629 cr=0x26459b80)
2015-03-31 11:02:24.477414 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.477433 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477444 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477455 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock) v=177664 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770540]
2015-03-31 11:02:24.477462 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.477477 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.477491 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477501 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.477513 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477523 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.477534 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock) v=177664 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770540]
2015-03-31 11:02:24.477539 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10039) auth_pin by 0x242cc100 on [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock) v=177664 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540] now 1+0
2015-03-31 11:02:24.477546 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock) v=177664 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.477551 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177664 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.477567 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177664 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.477571 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177664 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.477577 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177664 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.477581 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10039) auth_pin by 0x6770698 on [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177664 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540] now 2+0
2015-03-31 11:02:24.477599 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cc100) [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dn xlock x=1 by 0x242cc100) (dversion lock w=1 last_client=708310) v=177664 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.477605 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.477619 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.477633 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.477646 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.477658 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477668 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477678 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477687 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477696 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477706 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477716 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477726 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477735 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477744 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477754 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477763 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477773 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477787 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477804 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2bf ([1000006b2c0~363], 867 left)
2015-03-31 11:02:24.477806 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.477808 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2bf [2,head] #1000006b2bf auth v1 s=0 n() (iversion lock) 0x3f491468]
2015-03-31 11:02:24.477812 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178682
2015-03-31 11:02:24.477813 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10039)  pre_dirty [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dn xlock x=1 by 0x242cc100) (dversion lock w=1 last_client=708310) pv=178682 v=177664 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.477821 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f491468]
2015-03-31 11:02:24.477829 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cc100 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178682 v=178677 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:24.477837 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x39518c0
2015-03-31 11:02:24.477839 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178683
2015-03-31 11:02:24.477840 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178683 v=178677 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.477847 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178683 v=178677 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.477854 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f491468]
2015-03-31 11:02:24.477860 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.477863 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295252 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477878 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295254
2015-03-31 11:02:24.477879 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295254 v=3295248 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.477883 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295254 (current v 3295248)
2015-03-31 11:02:24.477884 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178683 v=178677 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.477891 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.477894 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cc100 on [dir 10000000000 /test_small/ [2,head] auth pv=3295254 v=3295249 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382349=382342+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:24.477903 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2694c410
2015-03-31 11:02:24.477904 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295255
2015-03-31 11:02:24.477905 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477917 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477927 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477938 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.477939 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.649156 < 1, stopping
2015-03-31 11:02:24.477943 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.477953 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.477957 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295254 v=3295248 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.477962 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31367} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.477976 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f491468]
2015-03-31 11:02:24.477983 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.477986 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f491468]
2015-03-31 11:02:24.477993 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.477995 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478002 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478009 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478015 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478022 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478028 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478035 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478042 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478048 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478054 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478060 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478067 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478073 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478079 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478085 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f491468]
2015-03-31 11:02:24.478095 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.478096 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.478098 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f491468 tracedn 0x6770540
2015-03-31 11:02:24.478101 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cc100) [dentry #1/test_small/small5/blarg10039 [2,head] auth NULL (dn xlock x=1 by 0x242cc100) (dversion lock w=1 last_client=708310) pv=178682 v=177664 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770540]
2015-03-31 11:02:24.478107 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407629 create #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.478116 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.478119 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31368
2015-03-31 11:02:24.478121 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31368 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.478126 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.478130 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.478132 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) including xattrs version 0
2015-03-31 11:02:24.478169 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478198 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478213 7fbe406af700  5 mds.0.log _submit_thread 5419589489~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.478213 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478225 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478239 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478261 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478273 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478283 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478294 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478305 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478317 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478327 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478338 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478348 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478601 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407630 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.478621 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407630 cr=0x60ab480)
2015-03-31 11:02:24.478623 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407630 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.478627 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407630 cr=0x60ab480) #1000006b2bf
2015-03-31 11:02:24.478629 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bf snap head
2015-03-31 11:02:24.478631 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.478632 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f491468]
2015-03-31 11:02:24.478646 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407630 cr=0x60ab480)
2015-03-31 11:02:24.478648 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478664 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478674 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478685 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f491468]
2015-03-31 11:02:24.478694 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478708 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.478722 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478732 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.478743 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478753 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.478763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f491468]
2015-03-31 11:02:24.478773 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_pin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f491468] now 1+0
2015-03-31 11:02:24.478787 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478802 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478816 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478827 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.478837 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478863 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.478885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.478894 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.478908 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407630 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.478912 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407630 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.478922 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.478925 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.478930 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.478932 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.478946 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407630 cr=0x60ab480)
2015-03-31 11:02:24.478965 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478981 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.478994 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479005 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479015 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479026 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479047 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.479058 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.479068 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.479083 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.479093 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.479104 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_unpin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468] now 0+0
2015-03-31 11:02:24.479358 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407631 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.479376 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407631 cr=0x60aa300)
2015-03-31 11:02:24.479378 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407631 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.479381 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407631 cr=0x60aa300) #1000006b2bf
2015-03-31 11:02:24.479383 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bf snap head
2015-03-31 11:02:24.479384 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.479385 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.479398 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407631 cr=0x60aa300)
2015-03-31 11:02:24.479401 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.479416 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479426 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479437 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.479446 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.479460 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.479474 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479483 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.479494 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479504 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.479514 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.479522 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_pin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468] now 1+0
2015-03-31 11:02:24.479532 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.479547 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.479561 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479571 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479582 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479592 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479602 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.479622 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.479650 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407631 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.479654 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407631 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.479664 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.479668 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.479671 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.479673 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.479685 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407631 cr=0x60aa300)
2015-03-31 11:02:24.479704 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.479720 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.479734 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479744 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.479766 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479776 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.479791 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.479802 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.479811 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.479826 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.479836 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.479846 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_unpin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468] now 0+0
2015-03-31 11:02:24.482862 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4b follows 0 op update
2015-03-31 11:02:24.482866 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482877 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.482879 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.482896 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.482897 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482904 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482913 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.482914 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482925 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482945 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482952 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.482953 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482961 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482964 7fbe406af700  5 mds.0.log _submit_thread 5419591129~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.482969 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482974 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482979 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482986 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482992 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.482998 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.483008 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.522023 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407632 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.522045 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407632 cr=0x60afa80)
2015-03-31 11:02:24.522050 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407632 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.522054 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407632 cr=0x60afa80) #1000006b2bf
2015-03-31 11:02:24.522056 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bf snap head
2015-03-31 11:02:24.522057 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.522059 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.522076 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407632 cr=0x60afa80)
2015-03-31 11:02:24.522079 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.522097 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.522109 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.522121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.522132 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.522147 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.522162 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.522172 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.522184 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.522195 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.522206 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.522216 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_pin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468] now 1+0
2015-03-31 11:02:24.522227 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.522242 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.522281 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.522292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.522302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.522324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.522333 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.522343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.522358 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407632 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.522362 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407632 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.522373 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.522378 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.522381 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:24.522385 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.522398 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407632 cr=0x60afa80)
2015-03-31 11:02:24.522417 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.522434 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.522448 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.522459 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.522470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.522480 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.522502 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.522513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.522522 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.522537 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.522548 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.522559 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_unpin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468] now 0+0
2015-03-31 11:02:24.523835 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4b follows 0 op update
2015-03-31 11:02:24.523838 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523850 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.523852 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.523870 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.523871 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523877 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523885 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.523887 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523893 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523900 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523906 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.523907 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523915 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523922 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523928 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523933 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.523935 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.523936 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e4b [2,head] /test_small/small1/blarg10039 auth v136896 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9bc200]
2015-03-31 11:02:24.523943 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.563017 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407633 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.563039 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407633 cr=0x43d2800)
2015-03-31 11:02:24.563043 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407633 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.563047 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407633 cr=0x43d2800) #1000006b2bf
2015-03-31 11:02:24.563049 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2bf snap head
2015-03-31 11:02:24.563050 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.563051 7fbe462be700 10 mds.0.server ref is [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.563068 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407633 cr=0x43d2800)
2015-03-31 11:02:24.563071 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563088 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563100 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.563111 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.563122 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563136 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.563151 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563160 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.563171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.563182 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.563193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.563203 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_pin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468] now 1+0
2015-03-31 11:02:24.563213 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563229 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563253 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563275 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.563295 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.563305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.563315 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.563330 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407633 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.563334 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407633 getattr Xs #1000006b2bf 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.563345 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.563348 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.563353 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:24.563355 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.563369 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407633 cr=0x43d2800)
2015-03-31 11:02:24.563388 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563404 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563418 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563429 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.563461 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.563472 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.563483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f491468]
2015-03-31 11:02:24.563492 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.563508 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.563518 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.563529 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) auth_unpin by 0x28ebee00 on [inode 1000006b2bf [2,head] {#1000006b2bf /test_small/small5/blarg10039} auth v178682 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f491468] now 0+0
2015-03-31 11:02:24.563829 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407634 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.563847 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407634 cr=0x9cc4880)
2015-03-31 11:02:24.563850 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407634 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.563853 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407634 cr=0x9cc4880) #100000003f0
2015-03-31 11:02:24.563855 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f0 snap head
2015-03-31 11:02:24.563856 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.563857 7fbe462be700 10 mds.0.server ref is [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.563868 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407634 cr=0x9cc4880)
2015-03-31 11:02:24.563871 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563886 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563897 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.563906 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.563911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.563924 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.563938 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.563947 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.563958 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.563966 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.563976 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.563981 7fbe462be700 10 mds.0.cache.ino(100000003f0) auth_pin by 0x28ebee00 on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360] now 1+0
2015-03-31 11:02:24.563989 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.564004 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.564018 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.564028 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.564038 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.564048 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.564057 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564064 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564071 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564089 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564115 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407634 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.564119 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407634 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.564129 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.564132 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.564136 7fbe462be700 10 mds.0.cache.ino(100000003f0) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.564139 7fbe462be700 10 mds.0.cache.ino(100000003f0) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.564151 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407634 cr=0x9cc4880)
2015-03-31 11:02:24.564170 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.564185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.564199 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.564210 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.564219 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.564228 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.564249 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564255 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564263 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564269 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.564275 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.564289 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.564300 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.564309 7fbe462be700 10 mds.0.cache.ino(100000003f0) auth_unpin by 0x28ebee00 on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b5360] now 0+0
2015-03-31 11:02:24.564688 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407635 lookup #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.564708 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407635 cr=0x26d3e180)
2015-03-31 11:02:24.564710 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407635 lookup #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.564713 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407635 cr=0x26d3e180) #1000006026a/blarg1004
2015-03-31 11:02:24.564715 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.564718 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1004 [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock) v=177666 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770720]
2015-03-31 11:02:24.564726 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.564727 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407635 lookup #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.564739 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.564752 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407635 cr=0x26d3e180)
2015-03-31 11:02:24.565238 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407636 lookup #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.565257 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407636 cr=0x26d39900)
2015-03-31 11:02:24.565260 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407636 lookup #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.565263 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407636 cr=0x26d39900) #1000006026a/blarg1004
2015-03-31 11:02:24.565266 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.565269 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1004 [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock) v=177666 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770720]
2015-03-31 11:02:24.565277 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.565279 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407636 lookup #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.565289 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.565300 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407636 cr=0x26d39900)
2015-03-31 11:02:24.565791 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407637 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.565826 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407637 cr=0x26d3af80)
2015-03-31 11:02:24.565829 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407637 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.565832 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407637 cr=0x26d3af80) #100000003f0
2015-03-31 11:02:24.565834 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f0 snap head
2015-03-31 11:02:24.565835 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.565837 7fbe462be700 10 mds.0.server ref is [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.565849 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407637 cr=0x26d3af80)
2015-03-31 11:02:24.565852 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.565871 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.565883 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.565894 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.565901 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.565916 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.565931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.565941 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.565953 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.565963 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.565973 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.565980 7fbe462be700 10 mds.0.cache.ino(100000003f0) auth_pin by 0x28ebee00 on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360] now 1+0
2015-03-31 11:02:24.565987 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566012 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566036 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566057 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.566066 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.566075 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566082 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566100 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566106 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566119 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407637 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.566123 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407637 getattr Xs #100000003f0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.566134 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.566137 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.566142 7fbe462be700 10 mds.0.cache.ino(100000003f0) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.566144 7fbe462be700 10 mds.0.cache.ino(100000003f0) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.566158 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407637 cr=0x26d3af80)
2015-03-31 11:02:24.566177 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566193 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566207 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566218 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566228 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.566237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.566257 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566264 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566271 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566278 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b5360]
2015-03-31 11:02:24.566283 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.566298 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.566309 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.566318 7fbe462be700 10 mds.0.cache.ino(100000003f0) auth_unpin by 0x28ebee00 on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b5360] now 0+0
2015-03-31 11:02:24.566692 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407638 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.566714 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407638 cr=0x26d3df00)
2015-03-31 11:02:24.566717 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407638 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.566720 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407638 cr=0x26d3df00) #1000006026a
2015-03-31 11:02:24.566722 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.566723 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.566724 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.566742 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407638 cr=0x26d3df00)
2015-03-31 11:02:24.566745 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566761 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566772 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.566789 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566803 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.566817 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566827 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.566838 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.566848 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.566860 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566874 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.566889 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566899 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.566919 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.566941 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.566951 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.566961 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31368} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.566977 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407638 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.566981 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407638 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.566992 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.566995 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.566999 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31369
2015-03-31 11:02:24.567001 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31369 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.567015 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407638 cr=0x26d3df00)
2015-03-31 11:02:24.567034 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567050 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567064 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567085 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567097 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567119 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567139 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.567153 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.567164 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.567555 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407639 create #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.567575 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407639 cr=0xaee8c80)
2015-03-31 11:02:24.567578 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407639 create #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.567581 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1004
2015-03-31 11:02:24.567582 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407639 cr=0xaee8c80) #1000006026a/blarg1004
2015-03-31 11:02:24.567584 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1004
2015-03-31 11:02:24.567586 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.567587 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.567589 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178683 v=178677 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.567599 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178683 v=178677 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.567608 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1004 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178683 v=178677 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.567619 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407639 cr=0xaee8c80)
2015-03-31 11:02:24.567624 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567643 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567654 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567665 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock) v=177666 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770720]
2015-03-31 11:02:24.567672 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567686 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.567701 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567711 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.567722 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567732 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.567743 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock) v=177666 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770720]
2015-03-31 11:02:24.567748 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1004) auth_pin by 0x28ebee00 on [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock) v=177666 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720] now 1+0
2015-03-31 11:02:24.567755 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock) v=177666 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.567759 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177666 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.567775 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177666 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.567779 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177666 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.567800 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177666 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.567804 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1004) auth_pin by 0x6770878 on [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177666 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720] now 2+0
2015-03-31 11:02:24.567809 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28ebee00) [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dn xlock x=1 by 0x28ebee00) (dversion lock w=1 last_client=708310) v=177666 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.567815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567829 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567843 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567856 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.567868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567878 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567887 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567897 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.567906 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567916 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567925 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567935 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567944 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567954 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567963 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567973 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567982 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.567991 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568010 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c0 ([1000006b2c1~362], 866 left)
2015-03-31 11:02:24.568012 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.568014 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c0 [2,head] #1000006b2c0 auth v1 s=0 n() (iversion lock) 0x3f33c2e8]
2015-03-31 11:02:24.568018 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178684
2015-03-31 11:02:24.568019 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1004)  pre_dirty [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dn xlock x=1 by 0x28ebee00) (dversion lock w=1 last_client=708310) pv=178684 v=177666 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.568027 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f33c2e8]
2015-03-31 11:02:24.568033 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28ebee00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178684 v=178677 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:24.568042 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x39546d0
2015-03-31 11:02:24.568044 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178685
2015-03-31 11:02:24.568045 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178677 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.568051 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178677 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.568057 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f33c2e8]
2015-03-31 11:02:24.568063 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.568064 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295254 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568078 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295256
2015-03-31 11:02:24.568079 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295256 v=3295248 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.568083 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295256 (current v 3295248)
2015-03-31 11:02:24.568084 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178677 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=46+1558,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.568091 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.568093 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28ebee00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295256 v=3295249 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382349=382342+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:24.568102 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x26948840
2015-03-31 11:02:24.568103 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295257
2015-03-31 11:02:24.568104 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568116 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568126 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568137 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.568138 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.73936 < 1, stopping
2015-03-31 11:02:24.568142 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568152 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.568156 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295256 v=3295248 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.568161 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31369} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568175 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f33c2e8]
2015-03-31 11:02:24.568182 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.568185 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568233 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.568235 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568244 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568251 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568257 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568263 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568269 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568276 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568283 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568289 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568295 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568302 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568308 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568315 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568321 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568328 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568338 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.568339 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.568341 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f33c2e8 tracedn 0x6770720
2015-03-31 11:02:24.568343 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28ebee00) [dentry #1/test_small/small5/blarg1004 [2,head] auth NULL (dn xlock x=1 by 0x28ebee00) (dversion lock w=1 last_client=708310) pv=178684 v=177666 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770720]
2015-03-31 11:02:24.568350 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407639 create #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.568358 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.568362 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31370
2015-03-31 11:02:24.568364 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31370 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.568369 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.568373 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.568375 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) including xattrs version 0
2015-03-31 11:02:24.568412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.568441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.568456 7fbe406af700  5 mds.0.log _submit_thread 5419591988~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.568457 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.568469 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.568494 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568506 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568516 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568526 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568537 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568549 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568560 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568571 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568582 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568592 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568839 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407640 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.568858 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407640 cr=0x2a509900)
2015-03-31 11:02:24.568860 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407640 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.568864 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407640 cr=0x2a509900) #1000006b2c0
2015-03-31 11:02:24.568866 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c0 snap head
2015-03-31 11:02:24.568867 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.568868 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568881 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407640 cr=0x2a509900)
2015-03-31 11:02:24.568884 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.568899 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568910 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568921 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f33c2e8]
2015-03-31 11:02:24.568930 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.568944 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:24.568958 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.568968 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:24.568978 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.568989 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:24.568999 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f33c2e8]
2015-03-31 11:02:24.569008 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_pin by 0x242ce900 on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f33c2e8] now 1+0
2015-03-31 11:02:24.569018 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569033 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569047 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569058 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569068 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569079 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569101 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.569122 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.569137 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407640 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.569141 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407640 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.569151 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.569154 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.569158 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.569161 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.569173 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407640 cr=0x2a509900)
2015-03-31 11:02:24.569193 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569209 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569222 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569233 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569243 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569253 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.569286 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.569296 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.569310 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.569321 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.569331 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_unpin by 0x242ce900 on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33c2e8] now 0+0
2015-03-31 11:02:24.569591 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407641 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.569609 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407641 cr=0x2a508c80)
2015-03-31 11:02:24.569611 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407641 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.569614 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407641 cr=0x2a508c80) #1000006b2c0
2015-03-31 11:02:24.569616 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c0 snap head
2015-03-31 11:02:24.569617 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.569619 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.569632 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407641 cr=0x2a508c80)
2015-03-31 11:02:24.569634 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569649 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569660 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569670 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.569679 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569693 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:24.569707 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569716 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:24.569726 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569736 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:24.569747 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.569756 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_pin by 0x242ce900 on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8] now 1+0
2015-03-31 11:02:24.569766 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569780 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569799 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569809 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569819 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569830 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.569850 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.569872 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.569888 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407641 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.569891 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407641 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.569902 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.569905 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.569909 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.569911 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.569923 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407641 cr=0x2a508c80)
2015-03-31 11:02:24.569942 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569958 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.569972 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.569983 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.570004 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.570015 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.570026 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.570036 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.570046 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.570060 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.570071 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.570081 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_unpin by 0x242ce900 on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33c2e8] now 0+0
2015-03-31 11:02:24.574081 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f0 follows 0 op update
2015-03-31 11:02:24.574085 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574096 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.574097 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.574115 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.574116 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574122 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574130 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.574131 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574142 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574162 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574169 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.574172 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574180 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574182 7fbe406af700  5 mds.0.log _submit_thread 5419593627~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.574186 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574191 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574198 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574205 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574210 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574217 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.574227 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.614025 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407642 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614046 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407642 cr=0x37d5500)
2015-03-31 11:02:24.614050 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407642 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614055 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407642 cr=0x37d5500) #1000006b2c0
2015-03-31 11:02:24.614056 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c0 snap head
2015-03-31 11:02:24.614058 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.614059 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.614075 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407642 cr=0x37d5500)
2015-03-31 11:02:24.614078 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614096 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614108 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614120 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.614130 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614145 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:24.614159 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614169 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:24.614180 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614190 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:24.614201 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.614211 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_pin by 0x242ce900 on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8] now 1+0
2015-03-31 11:02:24.614221 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614237 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614251 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614262 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614273 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614296 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.614314 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.614330 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407642 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614334 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407642 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614345 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.614348 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.614352 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:24.614355 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.614368 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407642 cr=0x37d5500)
2015-03-31 11:02:24.614387 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614404 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614418 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614428 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614460 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.614481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.614491 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.614506 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.614516 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.614527 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_unpin by 0x242ce900 on [inode 1000006b2c0 [2,head] {#1000006b2c0 /test_small/small5/blarg1004} auth v178684 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33c2e8] now 0+0
2015-03-31 11:02:24.614565 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407643 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614583 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407643 cr=0x37d7580)
2015-03-31 11:02:24.614586 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407643 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614589 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407643 cr=0x37d7580) #1000006026a
2015-03-31 11:02:24.614591 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.614592 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.614593 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614607 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407643 cr=0x37d7580)
2015-03-31 11:02:24.614610 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614624 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614634 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614644 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614657 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:24.614671 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614680 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:24.614691 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614710 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:24.614721 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614734 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614748 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614757 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614767 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614777 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614793 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614803 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31370} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614819 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407643 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614821 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407643 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.614843 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.614845 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.614850 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31371
2015-03-31 11:02:24.614852 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31371 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.614864 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407643 cr=0x37d7580)
2015-03-31 11:02:24.614883 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614898 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.614912 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614923 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.614933 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614944 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614965 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614975 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.614985 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.614998 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.615009 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.615270 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407644 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.615291 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407644 cr=0x37d2580)
2015-03-31 11:02:24.615294 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407644 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.615297 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407644 cr=0x37d2580) #1000006026a
2015-03-31 11:02:24.615299 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.615300 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.615301 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615316 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407644 cr=0x37d2580)
2015-03-31 11:02:24.615319 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.615333 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.615343 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615353 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.615366 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:24.615380 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.615389 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:24.615400 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615410 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:24.615420 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.615434 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.615448 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.615458 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.615468 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615479 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615489 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615499 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615510 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:24.615531 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.615553 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x28006f30 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:24.615555 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631051 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:24.631057 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:24.631066 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:24.631068 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) mark_dirty [inode 1000006b2bd [2,head] /test_small/small5/blarg10037 auth v178677 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.631084 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10037)  mark_dirty [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178678 v=177660 ap=2+0 inode=0x3f3338a0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180]
2015-03-31 11:02:24.631093 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178678 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 46=46+0) hs=47+1557,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178678
2015-03-31 11:02:24.631103 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) mark_dirty_parent
2015-03-31 11:02:24.631105 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295248 pv3295256 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 46=46+0) n(v1 rc2015-03-31 11:03:01.000000 47=46+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631120 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295256 v=3295248 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.631124 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295250 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382349=382342+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295250
2015-03-31 11:02:24.631135 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178679 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 47=47+0) hs=47+1557,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178679
2015-03-31 11:02:24.631142 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295251 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382350=382343+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295251
2015-03-31 11:02:24.631151 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2bd [2,head] /test_small/small5/blarg10037 auth v178678 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3338a0]
2015-03-31 11:02:24.631162 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:24.631165 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27520 client_caps(grant ino 1000006b2bd 1851506 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:24.631186 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178678 ap=2+0 inode=0x3f3338a0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180]
2015-03-31 11:02:24.631196 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407609 create #1000006026a/blarg10037 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.631208 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2bd
2015-03-31 11:02:24.631212 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178678 ap=2+0 inode=0x3f3338a0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180]
2015-03-31 11:02:24.631221 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178678 ap=2+0 inode=0x3f3338a0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180]
2015-03-31 11:02:24.631228 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178678 ap=2+0 inode=0x3f3338a0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180]
2015-03-31 11:02:24.631233 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10037) auth_unpin by 0x67702d8 on [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178678 ap=1+0 inode=0x3f3338a0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180] now 1+0
2015-03-31 11:02:24.631240 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178678 ap=1+0 inode=0x3f3338a0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180]
2015-03-31 11:02:24.631246 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.631262 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295250 pv3295256 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 48=47+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631275 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295250 pv3295256 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 48=47+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631287 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295250 pv3295256 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 48=47+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631299 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178678 ap=1+0 inode=0x3f3338a0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770180]
2015-03-31 11:02:24.631325 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407609 cr=0x9ae0a00)
2015-03-31 11:02:24.631333 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d500 on [inode 1 [...2,head] / auth v53470 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.631350 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d500 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.631361 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367d500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295251 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382350=382343+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:24.631371 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367d500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178679 cv=170705/170705 ap=3+7+7 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 47=47+0) hs=47+1557,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 7
2015-03-31 11:02:24.631379 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295250 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 48=47+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:24.631391 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10037) auth_unpin by 0x2367d500 on [dentry #1/test_small/small5/blarg10037 [2,head] auth (dn sync l=1) (dversion lock) v=178678 inode=0x3f3338a0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770180] now 0+0
2015-03-31 11:02:24.631414 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:24.631415 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:24.631420 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:24.631421 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) mark_dirty [inode 1000006b2be [2,head] /test_small/small5/blarg10038 auth v178679 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.631443 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10038)  mark_dirty [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178680 v=177662 ap=2+0 inode=0x3f3ac890 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360]
2015-03-31 11:02:24.631451 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178680 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 47=47+0) hs=48+1556,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178680
2015-03-31 11:02:24.631460 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) mark_dirty_parent
2015-03-31 11:02:24.631461 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295250 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 47=47+0) n(v1 rc2015-03-31 11:03:01.000000 48=47+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631474 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295256 v=3295250 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.631478 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295252 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382350=382343+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295252
2015-03-31 11:02:24.631488 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178681 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 48=48+0) hs=48+1556,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178681
2015-03-31 11:02:24.631495 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295253 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382351=382344+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295253
2015-03-31 11:02:24.631504 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2be [2,head] /test_small/small5/blarg10038 auth v178680 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ac890]
2015-03-31 11:02:24.631514 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:24.631516 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27521 client_caps(grant ino 1000006b2be 1851507 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:24.631534 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178680 ap=2+0 inode=0x3f3ac890 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360]
2015-03-31 11:02:24.631543 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407619 create #1000006026a/blarg10038 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.631553 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2be
2015-03-31 11:02:24.631556 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178680 ap=2+0 inode=0x3f3ac890 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360]
2015-03-31 11:02:24.631564 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178680 ap=2+0 inode=0x3f3ac890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360]
2015-03-31 11:02:24.631570 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178680 ap=2+0 inode=0x3f3ac890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360]
2015-03-31 11:02:24.631575 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10038) auth_unpin by 0x67704b8 on [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178680 ap=1+0 inode=0x3f3ac890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360] now 1+0
2015-03-31 11:02:24.631581 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178680 ap=1+0 inode=0x3f3ac890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360]
2015-03-31 11:02:24.631587 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.631600 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295252 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 49=48+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631613 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295252 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 49=48+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631624 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295252 pv3295256 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 49=48+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631635 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178680 ap=1+0 inode=0x3f3ac890 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770360]
2015-03-31 11:02:24.631650 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407619 cr=0x26d3c600)
2015-03-31 11:02:24.631658 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242c8f00 on [inode 1 [...2,head] / auth v53470 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.631675 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c8f00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.631686 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242c8f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295253 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382351=382344+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:24.631696 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242c8f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178681 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 48=48+0) hs=48+1556,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:24.631704 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c8f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295252 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 49=48+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.631716 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10038) auth_unpin by 0x242c8f00 on [dentry #1/test_small/small5/blarg10038 [2,head] auth (dn sync l=1) (dversion lock) v=178680 inode=0x3f3ac890 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770360] now 0+0
2015-03-31 11:02:24.631737 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:24.631739 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:24.631754 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:24.631755 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) mark_dirty [inode 1000006b2bf [2,head] /test_small/small5/blarg10039 auth v178681 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.631777 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10039)  mark_dirty [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178682 v=177664 ap=2+0 inode=0x3f491468 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540]
2015-03-31 11:02:24.631801 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178682 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 48=48+0) hs=49+1555,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178682
2015-03-31 11:02:24.631810 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) mark_dirty_parent
2015-03-31 11:02:24.631812 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295252 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 48=48+0) n(v1 rc2015-03-31 11:03:01.000000 49=48+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631825 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295256 v=3295252 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.631829 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295254 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382351=382344+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295254
2015-03-31 11:02:24.631839 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178683 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 49=49+0) hs=49+1555,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178683
2015-03-31 11:02:24.631847 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295255 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382352=382345+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295255
2015-03-31 11:02:24.631855 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2bf [2,head] /test_small/small5/blarg10039 auth v178682 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f491468]
2015-03-31 11:02:24.631865 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:24.631868 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27522 client_caps(grant ino 1000006b2bf 1851508 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:24.631887 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178682 ap=2+0 inode=0x3f491468 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540]
2015-03-31 11:02:24.631895 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407629 create #1000006026a/blarg10039 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.631906 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2bf
2015-03-31 11:02:24.631910 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178682 ap=2+0 inode=0x3f491468 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540]
2015-03-31 11:02:24.631918 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178682 ap=2+0 inode=0x3f491468 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540]
2015-03-31 11:02:24.631924 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178682 ap=2+0 inode=0x3f491468 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540]
2015-03-31 11:02:24.631928 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10039) auth_unpin by 0x6770698 on [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178682 ap=1+0 inode=0x3f491468 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540] now 1+0
2015-03-31 11:02:24.631935 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178682 ap=1+0 inode=0x3f491468 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540]
2015-03-31 11:02:24.631940 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.631954 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295254 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 50=49+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631966 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295254 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 50=49+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631978 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295254 pv3295256 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 50=49+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.631989 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178682 ap=1+0 inode=0x3f491468 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770540]
2015-03-31 11:02:24.632003 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407629 cr=0x26459b80)
2015-03-31 11:02:24.632011 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cc100 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.632028 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cc100 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.632039 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cc100 on [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295255 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382352=382345+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:24.632060 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cc100 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178683 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 49=49+0) hs=49+1555,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:24.632067 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cc100 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295254 pv3295256 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 50=49+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.632079 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10039) auth_unpin by 0x242cc100 on [dentry #1/test_small/small5/blarg10039 [2,head] auth (dn sync l=1) (dversion lock) v=178682 inode=0x3f491468 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770540] now 0+0
2015-03-31 11:02:24.632100 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:24.632101 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:24.632106 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:24.632119 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) mark_dirty [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178683 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.632130 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1004)  mark_dirty [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178684 v=177666 ap=2+0 inode=0x3f33c2e8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720]
2015-03-31 11:02:24.632137 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178684 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 49=49+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178684
2015-03-31 11:02:24.632145 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) mark_dirty_parent
2015-03-31 11:02:24.632147 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295254 pv3295256 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 49=49+0) n(v1 rc2015-03-31 11:03:01.000000 50=49+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.632159 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295256 v=3295254 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.632163 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295256 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382352=382345+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295256
2015-03-31 11:02:24.632172 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178685 v=178685 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178685
2015-03-31 11:02:24.632180 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295257 v=3295257 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382353=382346+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295257
2015-03-31 11:02:24.632189 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.632199 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:24.632200 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27523 client_caps(grant ino 1000006b2c0 1851509 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:24.632217 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178684 ap=2+0 inode=0x3f33c2e8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720]
2015-03-31 11:02:24.632225 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407639 create #1000006026a/blarg1004 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.632235 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c0
2015-03-31 11:02:24.632238 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178684 ap=2+0 inode=0x3f33c2e8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720]
2015-03-31 11:02:24.632245 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178684 ap=2+0 inode=0x3f33c2e8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720]
2015-03-31 11:02:24.632251 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178684 ap=2+0 inode=0x3f33c2e8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720]
2015-03-31 11:02:24.632256 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1004) auth_unpin by 0x6770878 on [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178684 ap=1+0 inode=0x3f33c2e8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720] now 1+0
2015-03-31 11:02:24.632262 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178684 ap=1+0 inode=0x3f33c2e8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720]
2015-03-31 11:02:24.632268 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.632282 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.632294 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.632306 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.632317 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.632328 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:24.632331 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.632342 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.632353 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:24.632354 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407644 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.632358 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407644 cr=0x37d2580) #1000006026a
2015-03-31 11:02:24.632360 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.632362 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.632363 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632374 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407644 cr=0x37d2580)
2015-03-31 11:02:24.632377 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.632402 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.632413 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632422 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.632435 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.632445 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632455 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.632469 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.632479 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632489 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632511 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632532 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632541 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632550 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632560 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632569 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632578 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31371} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632594 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407644 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.632599 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407644 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.632609 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.632611 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.632616 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31372
2015-03-31 11:02:24.632618 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31372 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.632630 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407644 cr=0x37d2580)
2015-03-31 11:02:24.632648 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.632664 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.632677 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.632687 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.632697 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632707 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632729 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632739 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632750 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632760 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632771 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632780 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632795 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632804 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632813 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242ce900 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.632827 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ce900 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.632837 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ce900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.632863 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632874 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632885 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632894 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178684 ap=1+0 inode=0x3f33c2e8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770720]
2015-03-31 11:02:24.632902 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.632924 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407639 cr=0xaee8c80)
2015-03-31 11:02:24.632931 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebee00 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.632945 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebee00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.632956 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28ebee00 on [dir 10000000000 /test_small/ [2,head] auth v=3295257 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382353=382346+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:24.632966 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28ebee00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178685 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:24.632974 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.632984 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1004) auth_unpin by 0x28ebee00 on [dentry #1/test_small/small5/blarg1004 [2,head] auth (dn sync l=1) (dversion lock) v=178684 inode=0x3f33c2e8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770720] now 0+0
2015-03-31 11:02:24.633031 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f0 follows 0 op update
2015-03-31 11:02:24.633040 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633055 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.633057 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.633077 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.633078 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633086 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633094 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.633096 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633101 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633109 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633115 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.633116 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633124 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633131 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633136 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633142 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.633143 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.633144 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003f0 [2,head] /test_small/small1/blarg1004 auth v59070 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5360]
2015-03-31 11:02:24.633151 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.633170 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407645 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633192 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407645 cr=0x6884880)
2015-03-31 11:02:24.633196 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407645 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633200 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407645 cr=0x6884880) #1000006b2c0
2015-03-31 11:02:24.633202 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c0 snap head
2015-03-31 11:02:24.633203 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.633205 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.633218 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407645 cr=0x6884880)
2015-03-31 11:02:24.633221 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.633238 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.633249 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.633260 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.633270 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.633294 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.633309 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.633318 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.633340 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.633360 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.633370 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f33c2e8]
2015-03-31 11:02:24.633379 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_pin by 0x28ebd000 on [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f33c2e8] now 1+0
2015-03-31 11:02:24.633388 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.633401 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.633414 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.633424 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.633433 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633442 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633452 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.633460 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.633475 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407645 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633479 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407645 getattr Xs #1000006b2c0 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633490 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.633493 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.633498 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:24.633500 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.633514 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407645 cr=0x6884880)
2015-03-31 11:02:24.633533 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.633549 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.633563 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.633574 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.633584 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633594 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633615 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.633625 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f33c2e8]
2015-03-31 11:02:24.633634 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.633649 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.633660 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.633670 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) auth_unpin by 0x28ebd000 on [inode 1000006b2c0 [2,head] /test_small/small5/blarg1004 auth v178684 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f33c2e8] now 0+0
2015-03-31 11:02:24.633708 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407646 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633726 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407646 cr=0x6883980)
2015-03-31 11:02:24.633728 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407646 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633731 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407646 cr=0x6883980) #1000006026a
2015-03-31 11:02:24.633733 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.633734 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.633735 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.633748 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407646 cr=0x6883980)
2015-03-31 11:02:24.633751 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.633765 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.633775 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.633789 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.633803 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.633818 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.633827 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.633849 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.633858 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.633868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.633881 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.633895 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.633905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.633915 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633924 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633934 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633944 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31372} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.633961 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407646 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633965 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407646 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.633975 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.633977 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.633981 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31373
2015-03-31 11:02:24.633983 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31373 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.634007 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407646 cr=0x6883980)
2015-03-31 11:02:24.634026 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634041 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634055 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.634065 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.634075 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.634097 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.634106 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.634116 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.634125 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.634139 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.634149 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.634241 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407647 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.634258 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407647 cr=0x6883200)
2015-03-31 11:02:24.634261 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407647 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.634264 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407647 cr=0x6883200) #10000004e49
2015-03-31 11:02:24.634266 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e49 snap head
2015-03-31 11:02:24.634267 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.634268 7fbe462be700 10 mds.0.server ref is [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.634278 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407647 cr=0x6883200)
2015-03-31 11:02:24.634281 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.634296 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.634306 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.634314 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.634321 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.634334 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.634348 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.634358 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.634369 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.634377 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebd000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.634386 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.634392 7fbe462be700 10 mds.0.cache.ino(10000004e49) auth_pin by 0x28ebd000 on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90] now 1+0
2015-03-31 11:02:24.634399 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634414 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634428 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.634438 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.634449 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.634458 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.634467 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634473 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634479 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634485 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634520 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407647 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.634524 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407647 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.634535 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.634538 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.634542 7fbe462be700 10 mds.0.cache.ino(10000004e49) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.634544 7fbe462be700 10 mds.0.cache.ino(10000004e49) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.634557 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407647 cr=0x6883200)
2015-03-31 11:02:24.634576 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634591 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634605 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.634615 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.634625 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.634634 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.634654 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634661 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634668 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634674 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.634680 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.634694 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.634704 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebd000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.634713 7fbe462be700 10 mds.0.cache.ino(10000004e49) auth_unpin by 0x28ebd000 on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9baf90] now 0+0
2015-03-31 11:02:24.634817 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407648 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.634835 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407648 cr=0x968b480)
2015-03-31 11:02:24.634837 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407648 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.634840 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407648 cr=0x968b480) #1000006026a
2015-03-31 11:02:24.634842 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.634843 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.634844 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.634856 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407648 cr=0x968b480)
2015-03-31 11:02:24.634859 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.634873 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.634883 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.634892 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.634906 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.634920 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.634929 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.634940 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.634949 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.634960 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634974 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.634988 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.634998 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.635009 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635018 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635029 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635039 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31373} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635055 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407648 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.635059 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407648 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.635081 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.635084 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.635089 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31374
2015-03-31 11:02:24.635091 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31374 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.635103 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407648 cr=0x968b480)
2015-03-31 11:02:24.635122 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.635136 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.635150 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.635160 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.635170 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635180 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635210 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.635219 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.635233 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.635243 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.635344 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407649 lookup #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.635360 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407649 cr=0x4a0c100)
2015-03-31 11:02:24.635363 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407649 lookup #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.635366 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407649 cr=0x4a0c100) #1000006026a/blarg10040
2015-03-31 11:02:24.635367 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.635370 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10040 [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock) v=177668 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770900]
2015-03-31 11:02:24.635378 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.635380 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407649 lookup #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.635389 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.635400 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407649 cr=0x4a0c100)
2015-03-31 11:02:24.675005 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407650 lookup #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675026 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407650 cr=0x237c6400)
2015-03-31 11:02:24.675030 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407650 lookup #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675034 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407650 cr=0x237c6400) #1000006026a/blarg10040
2015-03-31 11:02:24.675035 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.675038 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10040 [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock) v=177668 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770900]
2015-03-31 11:02:24.675048 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.675050 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407650 lookup #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675062 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.675074 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407650 cr=0x237c6400)
2015-03-31 11:02:24.675107 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407651 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675124 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407651 cr=0x237c2300)
2015-03-31 11:02:24.675126 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407651 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675129 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407651 cr=0x237c2300) #1000006026a
2015-03-31 11:02:24.675130 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.675132 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.675133 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.675149 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407651 cr=0x237c2300)
2015-03-31 11:02:24.675152 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.675168 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.675179 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.675189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.675203 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.675218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.675227 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.675238 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.675248 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.675259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675273 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675287 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675318 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675328 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675338 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31374} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675356 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407651 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675361 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407651 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675371 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.675375 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.675380 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31375
2015-03-31 11:02:24.675382 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31375 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.675396 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407651 cr=0x237c2300)
2015-03-31 11:02:24.675405 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675457 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675467 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675496 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.675510 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.675521 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.675556 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407652 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675573 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407652 cr=0x237c5f00)
2015-03-31 11:02:24.675575 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407652 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675578 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407652 cr=0x237c5f00) #1000006026a
2015-03-31 11:02:24.675580 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.675581 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.675583 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.675595 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407652 cr=0x237c5f00)
2015-03-31 11:02:24.675598 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.675612 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.675621 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.675631 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.675644 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.675658 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.675667 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.675688 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.675697 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.675718 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675731 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675744 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675762 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675771 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675780 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675795 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31375} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675811 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407652 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675814 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407652 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.675824 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.675828 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.675832 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31376
2015-03-31 11:02:24.675834 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31376 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.675846 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407652 cr=0x237c5f00)
2015-03-31 11:02:24.675865 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675880 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.675894 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675904 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.675913 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675922 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675943 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675952 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.675962 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.675975 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.675986 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.676023 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407653 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.676040 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407653 cr=0x237c5500)
2015-03-31 11:02:24.676041 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407653 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.676044 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407653 cr=0x237c5500) #10000004e49
2015-03-31 11:02:24.676046 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e49 snap head
2015-03-31 11:02:24.676047 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.676048 7fbe462be700 10 mds.0.server ref is [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.676056 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407653 cr=0x237c5500)
2015-03-31 11:02:24.676059 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.676073 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.676083 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.676091 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.676097 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.676111 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.676125 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.676134 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.676145 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.676153 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebd000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.676162 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.676179 7fbe462be700 10 mds.0.cache.ino(10000004e49) auth_pin by 0x28ebd000 on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90] now 1+0
2015-03-31 11:02:24.676186 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.676200 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.676213 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.676223 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.676233 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.676242 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.676251 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676258 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676263 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676269 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676282 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407653 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.676298 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407653 getattr Xs #10000004e49 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.676307 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.676309 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.676313 7fbe462be700 10 mds.0.cache.ino(10000004e49) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.676315 7fbe462be700 10 mds.0.cache.ino(10000004e49) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.676327 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407653 cr=0x237c5500)
2015-03-31 11:02:24.676345 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.676360 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.676374 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.676385 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.676406 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.676415 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.676425 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676432 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9baf90]
2015-03-31 11:02:24.676451 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.676466 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.676476 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebd000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.676485 7fbe462be700 10 mds.0.cache.ino(10000004e49) auth_unpin by 0x28ebd000 on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9baf90] now 0+0
2015-03-31 11:02:24.676729 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407654 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.676746 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407654 cr=0x237c7a80)
2015-03-31 11:02:24.676749 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407654 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.676752 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407654 cr=0x237c7a80) #1000006026a
2015-03-31 11:02:24.676754 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.676755 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.676756 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.676769 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407654 cr=0x237c7a80)
2015-03-31 11:02:24.676772 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.676790 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.676800 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.676810 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.676823 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.676837 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.676847 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.676857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.676866 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.676877 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.676891 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.676905 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.676915 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.676925 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.676934 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.676944 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.676954 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31376} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.676970 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407654 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.676974 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407654 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.677011 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.677013 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.677017 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31377
2015-03-31 11:02:24.677019 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31377 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.677032 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407654 cr=0x237c7a80)
2015-03-31 11:02:24.677051 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.677066 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.677080 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.677090 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.677100 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31377} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677110 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31377} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677131 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31377} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677141 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31377} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677150 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.677164 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.677175 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31377} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.677449 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407655 create #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.677465 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407655 cr=0x237c3480)
2015-03-31 11:02:24.677468 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677481 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:24.677482 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677492 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.677493 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677504 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677513 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677523 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677532 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.677533 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407655 create #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.677536 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10040
2015-03-31 11:02:24.677537 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407655 cr=0x237c3480) #1000006026a/blarg10040
2015-03-31 11:02:24.677539 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10040
2015-03-31 11:02:24.677541 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.677542 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.677543 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178685 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.677551 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178685 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.677557 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10040 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178685 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.677566 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407655 cr=0x237c3480)
2015-03-31 11:02:24.677571 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.677586 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.677596 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677605 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock) v=177668 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770900]
2015-03-31 11:02:24.677611 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.677624 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.677638 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.677648 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.677658 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.677667 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.677677 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock) v=177668 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770900]
2015-03-31 11:02:24.677681 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10040) auth_pin by 0x28ebd000 on [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock) v=177668 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900] now 1+0
2015-03-31 11:02:24.677688 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock) v=177668 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.677693 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177668 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.677714 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177668 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.677718 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177668 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.677735 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177668 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.677739 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10040) auth_pin by 0x6770a58 on [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177668 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900] now 2+0
2015-03-31 11:02:24.677745 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28ebd000) [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dn xlock x=1 by 0x28ebd000) (dversion lock w=1 last_client=708310) v=177668 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.677750 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.677765 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.677778 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.677795 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.677808 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.677817 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.677827 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.677836 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.677844 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677861 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677870 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677880 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677889 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677899 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677908 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677918 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677927 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677936 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.677953 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c1 ([1000006b2c2~361], 865 left)
2015-03-31 11:02:24.677956 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.677958 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c1 [2,head] #1000006b2c1 auth v1 s=0 n() (iversion lock) 0x3f3e0640]
2015-03-31 11:02:24.677962 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178686
2015-03-31 11:02:24.677963 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10040)  pre_dirty [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dn xlock x=1 by 0x28ebd000) (dversion lock w=1 last_client=708310) pv=178686 v=177668 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.677972 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3e0640]
2015-03-31 11:02:24.677979 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28ebd000 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178685 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:24.677988 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9323440
2015-03-31 11:02:24.677990 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178687
2015-03-31 11:02:24.677991 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178687 v=178685 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.677997 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178687 v=178685 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.678003 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3e0640]
2015-03-31 11:02:24.678009 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.678011 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678024 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295258
2015-03-31 11:02:24.678025 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295258 v=3295256 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.678029 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295258 (current v 3295256)
2015-03-31 11:02:24.678030 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178687 v=178685 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=50+1554,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.678038 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.678039 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28ebd000 on [dir 10000000000 /test_small/ [2,head] auth v=3295257 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382353=382346+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:24.678048 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9324e60
2015-03-31 11:02:24.678050 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295259
2015-03-31 11:02:24.678051 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678062 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678072 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678083 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.678084 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.849304 < 1, stopping
2015-03-31 11:02:24.678089 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678099 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.678102 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295258 v=3295256 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.678108 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31377} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678121 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3e0640]
2015-03-31 11:02:24.678128 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.678131 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678138 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.678140 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678148 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678154 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678161 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678167 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678173 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678180 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678187 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678193 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678199 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678205 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678212 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678218 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678225 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678231 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e0640]
2015-03-31 11:02:24.678241 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.678242 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.678244 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3e0640 tracedn 0x6770900
2015-03-31 11:02:24.678246 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28ebd000) [dentry #1/test_small/small5/blarg10040 [2,head] auth NULL (dn xlock x=1 by 0x28ebd000) (dversion lock w=1 last_client=708310) pv=178686 v=177668 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770900]
2015-03-31 11:02:24.678252 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407655 create #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.678259 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.678263 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31378
2015-03-31 11:02:24.678265 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31378 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.678270 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.678273 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.678275 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) including xattrs version 0
2015-03-31 11:02:24.678312 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678340 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678356 7fbe406af700  5 mds.0.log _submit_thread 5419594485~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.678355 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678367 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678403 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678414 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678424 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678434 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678446 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678478 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678488 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678547 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407656 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.678567 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407656 cr=0x237c5780)
2015-03-31 11:02:24.678569 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407656 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.678573 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407656 cr=0x237c5780) #1000006026a
2015-03-31 11:02:24.678575 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.678576 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.678577 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678591 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407656 cr=0x237c5780)
2015-03-31 11:02:24.678594 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678609 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678620 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678630 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678654 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.678668 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678677 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.678688 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678697 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.678708 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678722 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678736 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678756 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678767 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678777 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678792 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31378} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678830 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407656 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.678834 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407656 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.678844 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.678847 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.678851 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31379
2015-03-31 11:02:24.678853 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31379 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.678866 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407656 cr=0x237c5780)
2015-03-31 11:02:24.678885 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678900 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.678914 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678925 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.678934 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678945 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678966 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678976 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.678986 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.679000 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.679010 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.679100 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407657 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.679118 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407657 cr=0x237c1400)
2015-03-31 11:02:24.679120 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407657 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.679123 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407657 cr=0x237c1400) #1000006b2c1
2015-03-31 11:02:24.679125 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c1 snap head
2015-03-31 11:02:24.679126 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.679127 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3e0640]
2015-03-31 11:02:24.679141 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407657 cr=0x237c1400)
2015-03-31 11:02:24.679144 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.679158 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.679169 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.679180 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3e0640]
2015-03-31 11:02:24.679189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.679202 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.679217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.679226 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.679236 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.679246 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.679256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3e0640]
2015-03-31 11:02:24.679265 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_pin by 0x242cb700 on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3e0640] now 1+0
2015-03-31 11:02:24.679275 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.679290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.679304 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.679314 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.679324 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.679335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.679346 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.679365 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.679392 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407657 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.679396 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407657 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.679406 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.679409 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.679413 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.679415 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.679428 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407657 cr=0x237c1400)
2015-03-31 11:02:24.679447 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.679462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.679476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.679486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.679496 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.679506 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.679527 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.679538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.679548 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.679563 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.679573 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.679584 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_unpin by 0x242cb700 on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e0640] now 0+0
2015-03-31 11:02:24.719037 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407658 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.719058 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407658 cr=0x236ba580)
2015-03-31 11:02:24.719062 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407658 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.719066 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407658 cr=0x236ba580) #1000006b2c1
2015-03-31 11:02:24.719068 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c1 snap head
2015-03-31 11:02:24.719070 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.719071 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.719087 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407658 cr=0x236ba580)
2015-03-31 11:02:24.719090 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719108 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719120 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719131 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.719142 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719156 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.719171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719180 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.719192 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719202 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.719213 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.719222 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_pin by 0x242cb700 on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e0640] now 1+0
2015-03-31 11:02:24.719233 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719248 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719263 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719274 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719284 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719295 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.719336 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.719351 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407658 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.719355 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407658 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.719366 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.719370 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.719374 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.719377 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.719391 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407658 cr=0x236ba580)
2015-03-31 11:02:24.719410 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719426 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719440 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719493 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.719504 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.719514 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.719529 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.719539 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.719549 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_unpin by 0x242cb700 on [inode 1000006b2c1 [2,head] {#1000006b2c1 /test_small/small5/blarg10040} auth v178686 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e0640] now 0+0
2015-03-31 11:02:24.719586 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407659 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.719602 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407659 cr=0x3b0be80)
2015-03-31 11:02:24.719604 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407659 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.719607 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407659 cr=0x3b0be80) #1000006026a
2015-03-31 11:02:24.719609 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.719610 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.719611 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719625 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407659 cr=0x3b0be80)
2015-03-31 11:02:24.719628 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719643 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719653 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719664 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719677 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.719690 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719700 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.719710 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719730 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.719740 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719765 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.719777 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719794 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.719804 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719813 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719823 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719832 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719842 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.719852 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.719861 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x265a4740 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:24.719863 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.723372 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e49 follows 0 op update
2015-03-31 11:02:24.723375 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723386 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.723388 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.723406 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.723407 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723414 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723422 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.723424 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723435 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723455 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723462 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.723464 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723472 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723475 7fbe406af700  5 mds.0.log _submit_thread 5419596125~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.723479 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723484 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723490 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723496 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723502 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723507 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.723515 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.734071 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:24.734077 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:24.734086 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:24.734091 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) mark_dirty [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178685 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.734106 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10040)  mark_dirty [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178686 v=177668 ap=2+0 inode=0x3f3e0640 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900]
2015-03-31 11:02:24.734115 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178687 v=178686 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 50=50+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178686
2015-03-31 11:02:24.734125 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) mark_dirty_parent
2015-03-31 11:02:24.734127 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295256 pv3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 50=50+0) n(v1 rc2015-03-31 11:03:01.000000 51=50+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.734141 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295258 v=3295256 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.734146 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295259 v=3295258 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382353=382346+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295258
2015-03-31 11:02:24.734156 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178687 v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178687
2015-03-31 11:02:24.734165 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295259 v=3295259 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295259
2015-03-31 11:02:24.734173 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.734184 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:24.734186 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27524 client_caps(grant ino 1000006b2c1 1851510 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:24.734208 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178686 ap=2+0 inode=0x3f3e0640 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900]
2015-03-31 11:02:24.734217 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407655 create #1000006026a/blarg10040 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.734229 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c1
2015-03-31 11:02:24.734232 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178686 ap=2+0 inode=0x3f3e0640 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900]
2015-03-31 11:02:24.734241 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178686 ap=2+0 inode=0x3f3e0640 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900]
2015-03-31 11:02:24.734248 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178686 ap=2+0 inode=0x3f3e0640 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900]
2015-03-31 11:02:24.734253 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10040) auth_unpin by 0x6770a58 on [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178686 ap=1+0 inode=0x3f3e0640 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900] now 1+0
2015-03-31 11:02:24.734260 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178686 ap=1+0 inode=0x3f3e0640 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900]
2015-03-31 11:02:24.734266 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.734282 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.734294 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.734308 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.734319 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.734340 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:24.734343 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:24.734354 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.734364 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:24.734366 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407659 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.734369 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407659 cr=0x3b0be80) #1000006026a
2015-03-31 11:02:24.734371 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.734372 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.734373 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734384 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407659 cr=0x3b0be80)
2015-03-31 11:02:24.734388 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.734403 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.734413 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734422 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.734436 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.734446 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734468 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.734483 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.734502 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734513 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734524 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734534 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734544 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31379} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.734560 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:24.734563 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178687 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.734571 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:24.734576 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:24.734580 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734585 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:24.734589 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734593 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:24.734595 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734598 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:24.734600 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734603 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:24.734605 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734608 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:24.734609 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734612 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.734614 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734617 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.734619 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734622 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.734624 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734626 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.734628 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734631 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.734633 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734636 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.734638 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734641 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:24.734643 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734645 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.734647 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734650 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.734652 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734655 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.734657 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734660 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.734661 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734664 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.734666 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734669 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.734670 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734673 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:24.734675 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734678 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.734680 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734683 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.734685 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734687 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.734689 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734692 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.734694 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734696 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.734698 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734701 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:24.734703 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734706 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.734707 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734710 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.734712 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734715 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.734717 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734720 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.734722 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734735 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.734737 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734740 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.734741 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734754 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:24.734756 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734758 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.734760 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734763 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.734765 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734767 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.734780 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734788 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.734790 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734792 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.734794 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734797 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:24.734798 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734801 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.734803 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734805 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.734807 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734809 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.734811 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734813 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.734815 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734818 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.734819 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734822 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.734823 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734826 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:24.734828 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734830 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.734831 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734834 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.734835 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734838 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.734839 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734842 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.734844 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734846 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:24.734848 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734891 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407659 readdir #1000006026a 2015-03-31 11:03:01.000000) v2 readdir num=51 bytes=13924 end=1 complete=1
2015-03-31 11:02:24.734895 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407659 readdir #1000006026a 2015-03-31 11:03:01.000000) v2 readdir num=51 end=1 complete=1
2015-03-31 11:02:24.734898 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407659 readdir #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.734907 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.734909 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.734912 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31380
2015-03-31 11:02:24.734914 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31380 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.734925 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407659 cr=0x3b0be80)
2015-03-31 11:02:24.734943 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.734959 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.734973 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.734984 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.734994 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735004 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735015 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735036 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735047 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735056 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735066 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb700 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.735080 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb700 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.735091 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.735115 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735126 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735136 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735145 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178686 ap=1+0 inode=0x3f3e0640 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770900]
2015-03-31 11:02:24.735154 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735175 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407655 cr=0x237c3480)
2015-03-31 11:02:24.735182 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebd000 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.735197 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebd000 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.735208 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28ebd000 on [dir 10000000000 /test_small/ [2,head] auth v=3295259 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:24.735218 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28ebd000 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178687 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:24.735226 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebd000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.735237 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10040) auth_unpin by 0x28ebd000 on [dentry #1/test_small/small5/blarg10040 [2,head] auth (dn sync l=1) (dversion lock) v=178686 inode=0x3f3e0640 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770900] now 0+0
2015-03-31 11:02:24.735287 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407660 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.735319 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407660 cr=0x3b0e180)
2015-03-31 11:02:24.735323 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407660 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.735326 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407660 cr=0x3b0e180) #1000006b2c1
2015-03-31 11:02:24.735328 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c1 snap head
2015-03-31 11:02:24.735330 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.735331 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.735349 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407660 cr=0x3b0e180)
2015-03-31 11:02:24.735352 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.735370 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.735383 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.735394 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.735404 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.735419 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.735435 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.735445 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.735456 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.735477 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.735487 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.735496 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_pin by 0x242cbc00 on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640] now 1+0
2015-03-31 11:02:24.735506 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.735522 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.735546 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.735556 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.735567 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735577 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735587 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.735596 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.735623 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407660 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.735627 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407660 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.735638 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.735641 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.735646 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:24.735648 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.735663 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407660 cr=0x3b0e180)
2015-03-31 11:02:24.735683 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.735699 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.735713 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.735724 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.735745 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735755 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.735765 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.735775 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.735790 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.735805 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.735816 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.735826 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_unpin by 0x242cbc00 on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640] now 0+0
2015-03-31 11:02:24.737091 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e49 follows 0 op update
2015-03-31 11:02:24.737094 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737106 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.737107 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.737125 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.737126 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737133 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737142 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.737143 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737149 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737156 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737163 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.737164 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737170 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737177 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737183 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737189 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.737190 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.737191 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e49 [2,head] /test_small/small1/blarg10040 auth v136898 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9baf90]
2015-03-31 11:02:24.737199 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.777043 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407661 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.777067 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407661 cr=0x3b08f00)
2015-03-31 11:02:24.777071 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407661 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.777075 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407661 cr=0x3b08f00) #1000006b2c1
2015-03-31 11:02:24.777077 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c1 snap head
2015-03-31 11:02:24.777079 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.777080 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.777096 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407661 cr=0x3b08f00)
2015-03-31 11:02:24.777099 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.777116 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.777127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.777137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.777147 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.777161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.777176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.777186 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.777197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.777207 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.777217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640]
2015-03-31 11:02:24.777227 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_pin by 0x242cbc00 on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640] now 1+0
2015-03-31 11:02:24.777237 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.777252 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.777267 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.777287 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.777308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.777317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.777326 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.777335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.777349 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407661 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.777351 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407661 getattr Xs #1000006b2c1 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.777362 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.777365 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.777369 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:24.777372 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.777386 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407661 cr=0x3b08f00)
2015-03-31 11:02:24.777405 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.777421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.777435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.777446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.777455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.777465 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.777486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.777496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3e0640]
2015-03-31 11:02:24.777506 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.777520 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.777531 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=0+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:24.777541 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) auth_unpin by 0x242cbc00 on [inode 1000006b2c1 [2,head] /test_small/small5/blarg10040 auth v178686 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e0640] now 0+0
2015-03-31 11:02:24.777912 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407662 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.777934 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407662 cr=0xa256900)
2015-03-31 11:02:24.777937 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407662 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.777941 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407662 cr=0xa256900) #10000004e46
2015-03-31 11:02:24.777943 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e46 snap head
2015-03-31 11:02:24.777945 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.777946 7fbe462be700 10 mds.0.server ref is [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.777960 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407662 cr=0xa256900)
2015-03-31 11:02:24.777963 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.777981 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.777992 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.778001 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.778007 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.778021 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.778036 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.778046 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.778057 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.778066 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cbc00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.778075 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.778081 7fbe462be700 10 mds.0.cache.ino(10000004e46) auth_pin by 0x242cbc00 on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658] now 1+0
2015-03-31 11:02:24.778089 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.778113 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.778138 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.778148 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.778157 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.778165 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.778174 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778180 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778186 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778191 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778205 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407662 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.778209 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407662 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.778220 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.778223 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.778227 7fbe462be700 10 mds.0.cache.ino(10000004e46) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.778230 7fbe462be700 10 mds.0.cache.ino(10000004e46) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.778243 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407662 cr=0xa256900)
2015-03-31 11:02:24.778264 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.778279 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.778293 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.778304 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.778314 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.778323 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.778344 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778351 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778358 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778364 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.778369 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.778383 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.778394 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cbc00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.778403 7fbe462be700 10 mds.0.cache.ino(10000004e46) auth_unpin by 0x242cbc00 on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ba658] now 0+0
2015-03-31 11:02:24.778774 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407663 lookup #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.778799 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407663 cr=0xa251180)
2015-03-31 11:02:24.778803 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407663 lookup #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.778806 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407663 cr=0xa251180) #1000006026a/blarg10041
2015-03-31 11:02:24.778808 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.778811 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10041 [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock) v=177670 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.778820 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.778821 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407663 lookup #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.778833 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.778845 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407663 cr=0xa251180)
2015-03-31 11:02:24.779321 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407664 lookup #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.779342 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407664 cr=0xa253700)
2015-03-31 11:02:24.779344 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407664 lookup #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.779347 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407664 cr=0xa253700) #1000006026a/blarg10041
2015-03-31 11:02:24.779349 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.779352 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10041 [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock) v=177670 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.779360 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.779361 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407664 lookup #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.779373 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.779386 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407664 cr=0xa253700)
2015-03-31 11:02:24.779849 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407665 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.779871 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407665 cr=0xa250c80)
2015-03-31 11:02:24.779873 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407665 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.779877 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407665 cr=0xa250c80) #10000004e46
2015-03-31 11:02:24.779879 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e46 snap head
2015-03-31 11:02:24.779880 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.779881 7fbe462be700 10 mds.0.server ref is [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.779894 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407665 cr=0xa250c80)
2015-03-31 11:02:24.779897 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.779914 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.779926 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.779935 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.779942 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.779956 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.779970 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.779980 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.779992 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.780000 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cbc00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.780010 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.780016 7fbe462be700 10 mds.0.cache.ino(10000004e46) auth_pin by 0x242cbc00 on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658] now 1+0
2015-03-31 11:02:24.780023 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780052 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780062 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780073 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.780096 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.780116 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780122 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780127 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780132 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780145 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407665 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.780148 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407665 getattr Xs #10000004e46 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.780158 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.780161 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.780166 7fbe462be700 10 mds.0.cache.ino(10000004e46) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.780168 7fbe462be700 10 mds.0.cache.ino(10000004e46) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.780181 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407665 cr=0xa250c80)
2015-03-31 11:02:24.780201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780232 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780242 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780252 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.780261 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.780281 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780288 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780294 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780300 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ba658]
2015-03-31 11:02:24.780306 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.780320 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.780331 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cbc00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.780340 7fbe462be700 10 mds.0.cache.ino(10000004e46) auth_unpin by 0x242cbc00 on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9ba658] now 0+0
2015-03-31 11:02:24.780612 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407666 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.780630 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407666 cr=0x9ae5f00)
2015-03-31 11:02:24.780632 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407666 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.780635 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407666 cr=0x9ae5f00) #1000006026a
2015-03-31 11:02:24.780637 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.780638 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.780640 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.780654 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407666 cr=0x9ae5f00)
2015-03-31 11:02:24.780657 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.780671 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.780681 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.780691 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.780705 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.780720 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.780729 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.780740 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.780749 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.780759 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780773 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780792 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780803 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780813 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.780823 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.780833 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.780843 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31380} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.780873 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407666 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.780877 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407666 getattr Xs #1000006026a 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.780899 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.780901 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.780906 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31381
2015-03-31 11:02:24.780907 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31381 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.780921 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407666 cr=0x9ae5f00)
2015-03-31 11:02:24.780939 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780955 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.780969 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780979 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.780989 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31381} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.780999 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31381} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781020 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31381} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781030 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31381} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781038 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:24.781052 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:24.781063 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31381} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:24.781347 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407667 create #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.781363 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407667 cr=0x9ae2a80)
2015-03-31 11:02:24.781366 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781379 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:24.781381 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781391 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.781392 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781402 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781412 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781421 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781430 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.781432 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407667 create #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.781435 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10041
2015-03-31 11:02:24.781436 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407667 cr=0x9ae2a80) #1000006026a/blarg10041
2015-03-31 11:02:24.781438 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10041
2015-03-31 11:02:24.781439 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.781441 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.781442 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178687 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.781449 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178687 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.781456 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10041 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178687 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:24.781465 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407667 cr=0x9ae2a80)
2015-03-31 11:02:24.781470 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.781485 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.781495 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781504 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock) v=177670 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781510 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:24.781524 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.781538 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:24.781548 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:24.781558 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:24.781567 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+0 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:24.781577 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock) v=177670 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781582 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10041) auth_pin by 0x242cbc00 on [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock) v=177670 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0] now 1+0
2015-03-31 11:02:24.781588 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock) v=177670 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781608 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177670 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781614 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177670 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781630 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177670 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781634 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177670 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781638 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10041) auth_pin by 0x6770c38 on [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177670 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0] now 2+0
2015-03-31 11:02:24.781644 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cbc00) [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dn xlock x=1 by 0x242cbc00) (dversion lock w=1 last_client=708310) v=177670 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781650 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.781664 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.781677 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.781689 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.781702 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.781712 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.781721 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.781730 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.781740 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781749 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781758 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781767 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781777 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781790 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781799 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781809 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781818 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781828 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781837 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781855 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c2 ([1000006b2c3~360], 864 left)
2015-03-31 11:02:24.781858 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.781859 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c2 [2,head] #1000006b2c2 auth v1 s=0 n() (iversion lock) 0x3f3b4068]
2015-03-31 11:02:24.781863 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178688
2015-03-31 11:02:24.781864 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10041)  pre_dirty [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dn xlock x=1 by 0x242cbc00) (dversion lock w=1 last_client=708310) pv=178688 v=177670 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.781873 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3b4068]
2015-03-31 11:02:24.781879 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cbc00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:24.781888 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3c35f90
2015-03-31 11:02:24.781890 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178689
2015-03-31 11:02:24.781891 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178689 v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.781897 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178689 v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.781903 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3b4068]
2015-03-31 11:02:24.781909 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.781911 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781922 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295260
2015-03-31 11:02:24.781923 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295260 v=3295258 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.781929 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295260 (current v 3295258)
2015-03-31 11:02:24.781930 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178689 v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.781937 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.781940 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cbc00 on [dir 10000000000 /test_small/ [2,head] auth v=3295259 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:24.781949 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9249ad0
2015-03-31 11:02:24.781950 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295261
2015-03-31 11:02:24.781951 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.781962 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.781972 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.781982 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.781984 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.953205 < 1, stopping
2015-03-31 11:02:24.781988 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.781998 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.782001 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295260 v=3295258 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.782006 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31381} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782020 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3b4068]
2015-03-31 11:02:24.782026 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.782029 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782037 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.782038 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782046 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782052 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782059 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782065 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782070 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782077 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782083 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782089 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782095 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782102 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782109 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782115 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782121 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782128 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b4068]
2015-03-31 11:02:24.782137 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.782138 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.782140 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3b4068 tracedn 0x6770ae0
2015-03-31 11:02:24.782142 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cbc00) [dentry #1/test_small/small5/blarg10041 [2,head] auth NULL (dn xlock x=1 by 0x242cbc00) (dversion lock w=1 last_client=708310) pv=178688 v=177670 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ae0]
2015-03-31 11:02:24.782149 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407667 create #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.782157 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.782160 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31382
2015-03-31 11:02:24.782163 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31382 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.782168 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.782171 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.782173 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) including xattrs version 0
2015-03-31 11:02:24.782210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782239 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782255 7fbe406af700  5 mds.0.log _submit_thread 5419596984~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.782254 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782267 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782292 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782305 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782316 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782326 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782336 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782349 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782360 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782371 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782382 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782392 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782532 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407668 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.782562 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407668 cr=0x9ae4380)
2015-03-31 11:02:24.782564 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407668 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.782568 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407668 cr=0x9ae4380) #1000006b2c2
2015-03-31 11:02:24.782570 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c2 snap head
2015-03-31 11:02:24.782571 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.782573 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3b4068]
2015-03-31 11:02:24.782586 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407668 cr=0x9ae4380)
2015-03-31 11:02:24.782588 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782604 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782615 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782625 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3b4068]
2015-03-31 11:02:24.782634 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782648 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.782662 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782672 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.782683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782693 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.782704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3b4068]
2015-03-31 11:02:24.782713 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_pin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3b4068] now 1+0
2015-03-31 11:02:24.782723 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782738 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782753 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782764 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782774 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782810 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782820 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.782829 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.782844 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407668 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.782848 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407668 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.782858 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.782861 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.782865 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.782868 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.782880 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407668 cr=0x9ae4380)
2015-03-31 11:02:24.782900 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782916 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.782930 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782940 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.782950 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782960 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.782982 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.782992 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.783002 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.783017 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.783027 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.783038 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_unpin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068] now 0+0
2015-03-31 11:02:24.783202 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407669 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.783219 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407669 cr=0x9ae3c00)
2015-03-31 11:02:24.783222 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407669 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.783225 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407669 cr=0x9ae3c00) #1000006b2c2
2015-03-31 11:02:24.783227 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c2 snap head
2015-03-31 11:02:24.783228 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.783229 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.783242 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407669 cr=0x9ae3c00)
2015-03-31 11:02:24.783245 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.783260 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.783270 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.783281 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.783290 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.783304 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.783318 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.783327 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.783338 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.783348 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.783358 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.783368 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_pin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068] now 1+0
2015-03-31 11:02:24.783378 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.783392 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.783407 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.783417 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.783428 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.783438 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.783458 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.783479 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.783493 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407669 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.783497 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407669 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.783507 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.783511 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.783515 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.783517 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.783530 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407669 cr=0x9ae3c00)
2015-03-31 11:02:24.783549 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.783564 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.783578 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.783589 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.783598 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.783608 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.783630 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.783640 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.783649 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.783664 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.783674 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.783684 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_unpin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068] now 0+0
2015-03-31 11:02:24.788434 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e46 follows 0 op update
2015-03-31 11:02:24.788438 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788449 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.788450 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.788468 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.788470 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788476 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788484 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.788486 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788497 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788517 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788524 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.788526 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788534 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788537 7fbe406af700  5 mds.0.log _submit_thread 5419598624~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.788540 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788546 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788551 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788558 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788565 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788571 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.788581 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.828048 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407670 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.828072 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407670 cr=0x9ae1e00)
2015-03-31 11:02:24.828075 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407670 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.828079 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407670 cr=0x9ae1e00) #1000006b2c2
2015-03-31 11:02:24.828081 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c2 snap head
2015-03-31 11:02:24.828082 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.828083 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.828100 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407670 cr=0x9ae1e00)
2015-03-31 11:02:24.828103 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.828120 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.828132 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.828144 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.828154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.828168 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.828183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.828192 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.828204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.828214 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.828225 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.828235 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_pin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068] now 1+0
2015-03-31 11:02:24.828245 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.828261 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.828285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.828307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.828317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.828327 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.828336 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.828346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.828361 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407670 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.828365 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407670 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.828375 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.828379 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.828383 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:24.828386 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.828399 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407670 cr=0x9ae1e00)
2015-03-31 11:02:24.828419 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.828435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.828449 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.828460 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.828471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.828492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.828503 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.828514 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.828524 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.828539 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.828550 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.828560 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_unpin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068] now 0+0
2015-03-31 11:02:24.829840 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e46 follows 0 op update
2015-03-31 11:02:24.829843 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829855 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.829857 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.829876 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.829877 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829884 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829893 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.829895 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829901 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829908 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829915 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.829917 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829923 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829930 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829936 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829942 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.829943 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.829944 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e46 [2,head] /test_small/small1/blarg10041 auth v136900 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ba658]
2015-03-31 11:02:24.829952 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.869044 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407671 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.869068 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407671 cr=0x9ae4b00)
2015-03-31 11:02:24.869071 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407671 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.869074 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407671 cr=0x9ae4b00) #1000006b2c2
2015-03-31 11:02:24.869076 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c2 snap head
2015-03-31 11:02:24.869077 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.869079 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.869094 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407671 cr=0x9ae4b00)
2015-03-31 11:02:24.869097 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869115 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869126 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.869138 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.869148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869162 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.869177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869186 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.869197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.869208 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.869218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:24.869228 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_pin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068] now 1+0
2015-03-31 11:02:24.869238 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869268 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869301 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.869320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.869330 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.869339 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.869354 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407671 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.869358 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407671 getattr Xs #1000006b2c2 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:24.869368 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.869370 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.869374 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:24.869378 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.869391 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407671 cr=0x9ae4b00)
2015-03-31 11:02:24.869410 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869426 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.869472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.869493 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.869504 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b4068]
2015-03-31 11:02:24.869514 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.869528 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.869539 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.869550 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) auth_unpin by 0x2b0c1e00 on [inode 1000006b2c2 [2,head] {#1000006b2c2 /test_small/small5/blarg10041} auth v178688 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b4068] now 0+0
2015-03-31 11:02:24.869830 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407672 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.869846 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407672 cr=0x9ae4d80)
2015-03-31 11:02:24.869849 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407672 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.869852 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407672 cr=0x9ae4d80) #10000004e48
2015-03-31 11:02:24.869854 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e48 snap head
2015-03-31 11:02:24.869855 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.869856 7fbe462be700 10 mds.0.server ref is [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.869868 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407672 cr=0x9ae4d80)
2015-03-31 11:02:24.869871 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869886 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869897 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.869906 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.869911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.869925 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.869939 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.869948 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.869959 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.869968 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.869977 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.869983 7fbe462be700 10 mds.0.cache.ino(10000004e48) auth_pin by 0x2b0c1e00 on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20] now 1+0
2015-03-31 11:02:24.869990 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.870005 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.870018 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.870029 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.870039 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.870048 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.870058 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870064 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870070 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870076 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870100 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407672 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.870116 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407672 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.870126 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.870129 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.870133 7fbe462be700 10 mds.0.cache.ino(10000004e48) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.870136 7fbe462be700 10 mds.0.cache.ino(10000004e48) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.870148 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407672 cr=0x9ae4d80)
2015-03-31 11:02:24.870167 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.870183 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.870196 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.870207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.870217 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.870226 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.870246 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870253 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870260 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870266 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.870272 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.870286 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.870297 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.870306 7fbe462be700 10 mds.0.cache.ino(10000004e48) auth_unpin by 0x2b0c1e00 on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b9d20] now 0+0
2015-03-31 11:02:24.870677 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407673 lookup #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.870697 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407673 cr=0x9ae1680)
2015-03-31 11:02:24.870700 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407673 lookup #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.870703 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407673 cr=0x9ae1680) #1000006026a/blarg10042
2015-03-31 11:02:24.870705 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.870707 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10042 [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock) v=177672 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.870716 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.870718 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407673 lookup #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.870728 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.870741 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407673 cr=0x9ae1680)
2015-03-31 11:02:24.871206 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407674 lookup #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.871225 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407674 cr=0x9ae3200)
2015-03-31 11:02:24.871228 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407674 lookup #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.871231 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407674 cr=0x9ae3200) #1000006026a/blarg10042
2015-03-31 11:02:24.871233 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.871235 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10042 [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock) v=177672 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.871244 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.871245 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407674 lookup #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.871257 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.871269 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407674 cr=0x9ae3200)
2015-03-31 11:02:24.871691 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407675 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.871713 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407675 cr=0x9ae7300)
2015-03-31 11:02:24.871715 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407675 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.871718 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407675 cr=0x9ae7300) #10000004e48
2015-03-31 11:02:24.871720 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e48 snap head
2015-03-31 11:02:24.871722 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.871723 7fbe462be700 10 mds.0.server ref is [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.871735 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407675 cr=0x9ae7300)
2015-03-31 11:02:24.871738 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.871755 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.871767 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.871776 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.871789 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.871804 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.871818 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.871828 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.871840 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.871849 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.871858 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.871863 7fbe462be700 10 mds.0.cache.ino(10000004e48) auth_pin by 0x2b0c1e00 on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20] now 1+0
2015-03-31 11:02:24.871870 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.871885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.871909 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.871920 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.871941 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.871950 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.871958 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.871965 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.871971 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.871976 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.871990 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407675 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.871993 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407675 getattr Xs #10000004e48 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.872004 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.872008 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.872012 7fbe462be700 10 mds.0.cache.ino(10000004e48) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.872015 7fbe462be700 10 mds.0.cache.ino(10000004e48) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.872029 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407675 cr=0x9ae7300)
2015-03-31 11:02:24.872049 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872065 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872079 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872090 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872100 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.872109 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.872129 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.872135 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.872142 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.872148 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b9d20]
2015-03-31 11:02:24.872154 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.872169 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.872179 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.872189 7fbe462be700 10 mds.0.cache.ino(10000004e48) auth_unpin by 0x2b0c1e00 on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b9d20] now 0+0
2015-03-31 11:02:24.872460 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407676 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.872478 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407676 cr=0x9ae3e80)
2015-03-31 11:02:24.872480 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407676 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.872483 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407676 cr=0x9ae3e80) #1000006026a
2015-03-31 11:02:24.872485 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.872487 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.872488 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872503 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407676 cr=0x9ae3e80)
2015-03-31 11:02:24.872506 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872520 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872531 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872541 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872554 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.872568 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872577 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.872588 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872597 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.872609 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872623 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872636 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872647 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872657 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872668 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872679 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872689 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31382} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872706 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407676 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.872725 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407676 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.872746 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.872749 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.872753 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31383
2015-03-31 11:02:24.872755 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31383 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.872768 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407676 cr=0x9ae3e80)
2015-03-31 11:02:24.872790 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872806 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.872820 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872830 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.872840 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872862 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872872 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872882 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.872892 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:24.872906 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:24.872916 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:24.873298 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407677 create #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.873318 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407677 cr=0x9f7c100)
2015-03-31 11:02:24.873321 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407677 create #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.873324 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10042
2015-03-31 11:02:24.873325 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407677 cr=0x9f7c100) #1000006026a/blarg10042
2015-03-31 11:02:24.873327 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10042
2015-03-31 11:02:24.873329 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.873330 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.873332 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178689 v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.873342 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178689 v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.873349 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10042 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178689 v=178687 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.873360 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407677 cr=0x9f7c100)
2015-03-31 11:02:24.873365 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873384 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873395 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873406 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock) v=177672 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873414 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873427 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.873442 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873452 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.873462 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=1+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873472 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.873482 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock) v=177672 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873487 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10042) auth_pin by 0x2b0c1e00 on [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock) v=177672 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0] now 1+0
2015-03-31 11:02:24.873494 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock) v=177672 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873499 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177672 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873504 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177672 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873519 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177672 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873525 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177672 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873530 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10042) auth_pin by 0x6770e18 on [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177672 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0] now 2+0
2015-03-31 11:02:24.873547 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2b0c1e00) [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dn xlock x=1 by 0x2b0c1e00) (dversion lock w=1 last_client=708310) v=177672 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873553 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873567 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873580 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873593 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873606 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873615 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873625 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873634 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873643 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873653 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873662 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873673 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873682 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873692 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873701 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873711 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873720 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873730 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873748 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c3 ([1000006b2c4~35f], 863 left)
2015-03-31 11:02:24.873751 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.873752 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c3 [2,head] #1000006b2c3 auth v1 s=0 n() (iversion lock) 0x3f33d558]
2015-03-31 11:02:24.873756 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178690
2015-03-31 11:02:24.873757 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10042)  pre_dirty [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dn xlock x=1 by 0x2b0c1e00) (dversion lock w=1 last_client=708310) pv=178690 v=177672 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.873765 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f33d558]
2015-03-31 11:02:24.873771 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2b0c1e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178690 v=178687 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:24.873780 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3c32ec0
2015-03-31 11:02:24.873787 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178691
2015-03-31 11:02:24.873788 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178691 v=178687 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.873795 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178691 v=178687 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.873800 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f33d558]
2015-03-31 11:02:24.873806 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.873809 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295260 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873822 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295262
2015-03-31 11:02:24.873823 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295262 v=3295258 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.873827 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295262 (current v 3295258)
2015-03-31 11:02:24.873828 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178691 v=178687 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.873835 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.873837 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2b0c1e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295262 v=3295259 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:24.873845 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924cfc0
2015-03-31 11:02:24.873846 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295263
2015-03-31 11:02:24.873847 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873857 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873867 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.873878 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.873879 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.0451 ago, continuing
2015-03-31 11:02:24.873883 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120414 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873893 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120416
2015-03-31 11:02:24.873894 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120416 v=120414 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:24.873898 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120416 (current v 120414)
2015-03-31 11:02:24.873899 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295263 v=3295259 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:24.873906 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.873907 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x2b0c1e00 on [dir 1 / [2,head] auth v=120415 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:00.000000 b422190196760 382364=382355+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 3
2015-03-31 11:02:24.873917 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x3c351d0
2015-03-31 11:02:24.873918 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120417
2015-03-31 11:02:24.873919 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873933 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873946 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873956 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.873957 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.0451 ago, continuing
2015-03-31 11:02:24.873959 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53470 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.873979 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120416 v=120414 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:24.873983 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.873995 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295262 v=3295258 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.873999 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31383} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874014 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f33d558]
2015-03-31 11:02:24.874021 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.874024 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f33d558]
2015-03-31 11:02:24.874031 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.874033 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874041 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874048 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874054 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874061 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874068 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874074 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874081 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874086 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874092 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874099 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874106 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874113 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874119 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874125 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f33d558]
2015-03-31 11:02:24.874135 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.874136 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.874138 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f33d558 tracedn 0x6770cc0
2015-03-31 11:02:24.874140 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2b0c1e00) [dentry #1/test_small/small5/blarg10042 [2,head] auth NULL (dn xlock x=1 by 0x2b0c1e00) (dversion lock w=1 last_client=708310) pv=178690 v=177672 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770cc0]
2015-03-31 11:02:24.874147 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407677 create #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.874155 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.874159 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31384
2015-03-31 11:02:24.874161 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31384 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.874166 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.874170 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.874172 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) including xattrs version 0
2015-03-31 11:02:24.874208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874252 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874261 7fbe406af700  5 mds.0.log _submit_thread 5419599483~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:24.874266 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874291 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874303 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874315 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874325 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874336 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874348 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874359 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874370 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874380 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874390 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874641 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407678 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.874661 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407678 cr=0x9f7c380)
2015-03-31 11:02:24.874663 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407678 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.874667 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407678 cr=0x9f7c380) #1000006b2c3
2015-03-31 11:02:24.874669 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c3 snap head
2015-03-31 11:02:24.874671 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.874672 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f33d558]
2015-03-31 11:02:24.874686 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407678 cr=0x9f7c380)
2015-03-31 11:02:24.874688 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874704 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874715 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874725 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f33d558]
2015-03-31 11:02:24.874735 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874749 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.874764 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874774 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.874789 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874799 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.874810 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f33d558]
2015-03-31 11:02:24.874819 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_pin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f33d558] now 1+0
2015-03-31 11:02:24.874830 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874846 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.874860 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874871 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.874882 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.874928 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.874937 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.874952 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407678 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.874956 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407678 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.874965 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.874970 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.874973 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.874977 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.874990 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407678 cr=0x9f7c380)
2015-03-31 11:02:24.875009 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875025 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875040 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875050 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875060 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875070 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875091 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.875102 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.875112 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.875127 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.875137 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.875148 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_unpin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558] now 0+0
2015-03-31 11:02:24.875407 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407679 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.875425 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407679 cr=0x9f7d780)
2015-03-31 11:02:24.875427 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407679 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.875430 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407679 cr=0x9f7d780) #1000006b2c3
2015-03-31 11:02:24.875432 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c3 snap head
2015-03-31 11:02:24.875433 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.875434 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.875447 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407679 cr=0x9f7d780)
2015-03-31 11:02:24.875450 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875466 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875477 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875488 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.875497 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875511 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.875526 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875536 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.875547 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875557 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.875567 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.875577 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_pin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558] now 1+0
2015-03-31 11:02:24.875587 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875602 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875616 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875626 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875637 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875648 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875668 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.875690 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.875706 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407679 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.875710 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407679 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.875720 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.875723 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.875727 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.875730 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.875743 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407679 cr=0x9f7d780)
2015-03-31 11:02:24.875762 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875778 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.875795 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875806 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.875828 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875839 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.875849 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.875859 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.875869 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.875884 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.875894 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.875905 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_unpin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558] now 0+0
2015-03-31 11:02:24.879925 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e48 follows 0 op update
2015-03-31 11:02:24.879929 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.879940 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.879942 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.879960 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.879961 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.879968 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.879976 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.879978 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.879988 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880008 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880015 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.880017 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880024 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880030 7fbe406af700  5 mds.0.log _submit_thread 5419602273~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.880032 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880037 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880043 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880049 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880056 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880062 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.880072 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.920032 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407680 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.920053 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407680 cr=0x9f7a300)
2015-03-31 11:02:24.920057 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407680 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.920061 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407680 cr=0x9f7a300) #1000006b2c3
2015-03-31 11:02:24.920063 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c3 snap head
2015-03-31 11:02:24.920064 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.920065 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.920082 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407680 cr=0x9f7a300)
2015-03-31 11:02:24.920085 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.920103 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.920115 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.920127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.920137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.920152 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.920166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.920176 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.920188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.920198 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.920209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.920219 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_pin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558] now 1+0
2015-03-31 11:02:24.920229 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.920245 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.920270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.920293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.920302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.920312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.920322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.920331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.920346 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407680 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.920350 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407680 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.920361 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.920364 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.920369 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:24.920371 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.920385 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407680 cr=0x9f7a300)
2015-03-31 11:02:24.920404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.920421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.920435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.920446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.920457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.920479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.920489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.920500 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.920510 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.920525 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.920536 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.920547 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_unpin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558] now 0+0
2015-03-31 11:02:24.921799 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e48 follows 0 op update
2015-03-31 11:02:24.921803 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921814 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.921816 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.921834 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.921835 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921842 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921851 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:24.921852 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921858 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921866 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921872 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:24.921873 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921880 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921887 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921892 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921898 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:24.921899 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:24.921900 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e48 [2,head] /test_small/small1/blarg10042 auth v136902 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b9d20]
2015-03-31 11:02:24.921907 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.961029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407681 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.961053 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407681 cr=0x9f7af80)
2015-03-31 11:02:24.961055 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407681 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.961059 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407681 cr=0x9f7af80) #1000006b2c3
2015-03-31 11:02:24.961061 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c3 snap head
2015-03-31 11:02:24.961062 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.961063 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.961080 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407681 cr=0x9f7af80)
2015-03-31 11:02:24.961083 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961113 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.961124 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.961135 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961150 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.961165 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961175 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.961186 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.961196 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.961207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:24.961217 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_pin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558] now 1+0
2015-03-31 11:02:24.961227 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961242 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961267 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961289 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961299 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.961309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.961319 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.961328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.961342 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407681 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.961346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407681 getattr Xs #1000006b2c3 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.961356 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.961360 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.961364 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:24.961367 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.961380 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407681 cr=0x9f7af80)
2015-03-31 11:02:24.961399 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961416 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961431 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961442 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.961463 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.961484 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.961495 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f33d558]
2015-03-31 11:02:24.961505 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.961521 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.961532 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.961542 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) auth_unpin by 0x23dd1e00 on [inode 1000006b2c3 [2,head] {#1000006b2c3 /test_small/small5/blarg10042} auth v178690 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f33d558] now 0+0
2015-03-31 11:02:24.961831 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407682 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.961849 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407682 cr=0x9f7e400)
2015-03-31 11:02:24.961851 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407682 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.961854 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407682 cr=0x9f7e400) #10000004e4c
2015-03-31 11:02:24.961856 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4c snap head
2015-03-31 11:02:24.961857 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.961858 7fbe462be700 10 mds.0.server ref is [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.961868 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407682 cr=0x9f7e400)
2015-03-31 11:02:24.961871 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961887 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961898 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.961907 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.961913 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.961927 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.961941 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.961951 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.961962 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.961970 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.961980 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.961985 7fbe462be700 10 mds.0.cache.ino(10000004e4c) auth_pin by 0x23dd1e00 on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8] now 1+0
2015-03-31 11:02:24.961992 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.962007 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.962021 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.962032 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.962043 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.962052 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.962062 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962069 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962076 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962092 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962117 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407682 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.962121 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407682 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.962131 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.962134 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.962138 7fbe462be700 10 mds.0.cache.ino(10000004e4c) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:24.962140 7fbe462be700 10 mds.0.cache.ino(10000004e4c) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.962153 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407682 cr=0x9f7e400)
2015-03-31 11:02:24.962171 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.962187 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.962201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.962212 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.962222 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.962231 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.962251 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962258 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962265 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962272 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.962277 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.962292 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.962302 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.962312 7fbe462be700 10 mds.0.cache.ino(10000004e4c) auth_unpin by 0x23dd1e00 on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b93e8] now 0+0
2015-03-31 11:02:24.962682 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407683 lookup #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.962702 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407683 cr=0x9f7c600)
2015-03-31 11:02:24.962705 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407683 lookup #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.962708 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407683 cr=0x9f7c600) #1000006026a/blarg10043
2015-03-31 11:02:24.962710 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.962713 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10043 [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock) v=177674 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.962722 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.962723 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407683 lookup #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.962735 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.962748 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407683 cr=0x9f7c600)
2015-03-31 11:02:24.963214 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407684 lookup #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.963233 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407684 cr=0x9f79b80)
2015-03-31 11:02:24.963235 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407684 lookup #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.963238 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407684 cr=0x9f79b80) #1000006026a/blarg10043
2015-03-31 11:02:24.963240 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.963243 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10043 [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock) v=177674 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.963251 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:24.963253 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407684 lookup #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.963263 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.963275 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407684 cr=0x9f79b80)
2015-03-31 11:02:24.963737 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407685 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.963758 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407685 cr=0x9f78f00)
2015-03-31 11:02:24.963762 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407685 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.963765 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407685 cr=0x9f78f00) #10000004e4c
2015-03-31 11:02:24.963767 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4c snap head
2015-03-31 11:02:24.963769 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.963770 7fbe462be700 10 mds.0.server ref is [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.963788 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407685 cr=0x9f78f00)
2015-03-31 11:02:24.963793 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.963811 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.963823 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.963833 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.963840 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.963854 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.963869 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.963879 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.963890 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:24.963899 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:24.963909 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.963915 7fbe462be700 10 mds.0.cache.ino(10000004e4c) auth_pin by 0x23dd1e00 on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8] now 1+0
2015-03-31 11:02:24.963923 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.963939 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.963964 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.963987 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.963997 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.964005 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.964014 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964020 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964026 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964032 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964045 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407685 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.964049 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407685 getattr Xs #10000004e4c 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.964060 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.964063 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.964067 7fbe462be700 10 mds.0.cache.ino(10000004e4c) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:24.964069 7fbe462be700 10 mds.0.cache.ino(10000004e4c) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.964083 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407685 cr=0x9f78f00)
2015-03-31 11:02:24.964102 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964119 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964133 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964166 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.964175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:24.964185 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964192 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964199 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964205 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b93e8]
2015-03-31 11:02:24.964211 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.964226 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.964237 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:24.964246 7fbe462be700 10 mds.0.cache.ino(10000004e4c) auth_unpin by 0x23dd1e00 on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b93e8] now 0+0
2015-03-31 11:02:24.964510 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407686 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.964528 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407686 cr=0x929cb00)
2015-03-31 11:02:24.964530 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407686 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.964533 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407686 cr=0x929cb00) #1000006026a
2015-03-31 11:02:24.964535 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.964537 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.964538 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964553 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407686 cr=0x929cb00)
2015-03-31 11:02:24.964555 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964570 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964581 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964591 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964604 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.964618 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964628 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.964639 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964648 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.964659 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964673 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964687 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964697 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964707 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964728 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964738 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31384} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964754 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407686 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.964758 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407686 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.964798 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.964803 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.964806 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31385
2015-03-31 11:02:24.964808 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31385 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.964820 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407686 cr=0x929cb00)
2015-03-31 11:02:24.964839 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964855 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.964870 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964880 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.964890 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964901 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964922 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964932 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.964942 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:24.964956 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:24.964966 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:24.965350 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407687 create #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.965370 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407687 cr=0x9298500)
2015-03-31 11:02:24.965372 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407687 create #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.965375 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10043
2015-03-31 11:02:24.965377 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407687 cr=0x9298500) #1000006026a/blarg10043
2015-03-31 11:02:24.965379 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10043
2015-03-31 11:02:24.965380 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:24.965381 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.965383 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178691 v=178687 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.965393 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178691 v=178687 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.965401 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10043 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178691 v=178687 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.965412 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407687 cr=0x9298500)
2015-03-31 11:02:24.965418 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.965437 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965449 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965460 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock) v=177674 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965467 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.965482 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.965497 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965507 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.965518 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=2+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.965539 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock) v=177674 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965544 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10043) auth_pin by 0x23dd1e00 on [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock) v=177674 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0] now 1+0
2015-03-31 11:02:24.965549 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock) v=177674 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965554 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177674 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965571 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177674 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965576 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177674 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965581 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177674 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965598 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10043) auth_pin by 0x6770ff8 on [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177674 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0] now 2+0
2015-03-31 11:02:24.965603 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd1e00) [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dn xlock x=1 by 0x23dd1e00) (dversion lock w=1 last_client=708310) v=177674 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965608 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.965623 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.965637 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.965651 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.965664 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965674 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965684 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965694 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965703 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965713 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965723 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965733 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965742 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965752 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965762 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965771 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965781 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965795 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965813 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c4 ([1000006b2c5~35e], 862 left)
2015-03-31 11:02:24.965816 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:24.965818 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c4 [2,head] #1000006b2c4 auth v1 s=0 n() (iversion lock) 0x3f3dfd08]
2015-03-31 11:02:24.965822 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178692
2015-03-31 11:02:24.965823 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10043)  pre_dirty [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dn xlock x=1 by 0x23dd1e00) (dversion lock w=1 last_client=708310) pv=178692 v=177674 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.965831 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3dfd08]
2015-03-31 11:02:24.965838 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd1e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178692 v=178687 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:24.965847 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3c35ac0
2015-03-31 11:02:24.965850 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178693
2015-03-31 11:02:24.965851 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178693 v=178687 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.965857 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178693 v=178687 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.965864 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3dfd08]
2015-03-31 11:02:24.965870 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.965872 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295262 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965885 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295264
2015-03-31 11:02:24.965886 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295264 v=3295258 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.965890 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295264 (current v 3295258)
2015-03-31 11:02:24.965892 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178693 v=178687 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:24.965899 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:24.965901 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd1e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295264 v=3295259 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:24.965909 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc6ac00
2015-03-31 11:02:24.965910 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295265
2015-03-31 11:02:24.965911 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965921 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965932 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965942 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:24.965944 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.092066 < 1, stopping
2015-03-31 11:02:24.965948 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.965958 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:24.965962 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295264 v=3295258 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:24.965967 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31385} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.965980 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3dfd08]
2015-03-31 11:02:24.965987 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:24.965990 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.965998 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.965999 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966007 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966014 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966021 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966028 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966034 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966041 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966048 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966054 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966060 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966067 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966073 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966079 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966085 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966091 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966101 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:24.966102 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:24.966104 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3dfd08 tracedn 0x6770ea0
2015-03-31 11:02:24.966106 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd1e00) [dentry #1/test_small/small5/blarg10043 [2,head] auth NULL (dn xlock x=1 by 0x23dd1e00) (dversion lock w=1 last_client=708310) pv=178692 v=177674 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6770ea0]
2015-03-31 11:02:24.966113 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407687 create #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.966121 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.966124 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31386
2015-03-31 11:02:24.966126 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31386 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.966132 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:24.966135 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:24.966138 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) including xattrs version 0
2015-03-31 11:02:24.966175 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966204 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966219 7fbe406af700  5 mds.0.log _submit_thread 5419603132~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:24.966219 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966233 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966258 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966270 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966281 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966291 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966302 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966314 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966325 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966335 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966346 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966356 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966606 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407688 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.966626 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407688 cr=0x9299e00)
2015-03-31 11:02:24.966628 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407688 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.966631 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407688 cr=0x9299e00) #1000006b2c4
2015-03-31 11:02:24.966633 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c4 snap head
2015-03-31 11:02:24.966635 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.966636 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966650 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407688 cr=0x9299e00)
2015-03-31 11:02:24.966652 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966668 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966679 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966690 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966699 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966714 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.966729 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966739 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.966749 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966759 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.966770 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3dfd08]
2015-03-31 11:02:24.966778 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_pin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3dfd08] now 1+0
2015-03-31 11:02:24.966792 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966808 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966822 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966833 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.966843 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966867 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.966889 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.966898 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.966914 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407688 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.966917 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407688 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.966927 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.966931 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.966935 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:24.966938 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.966951 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407688 cr=0x9299e00)
2015-03-31 11:02:24.966970 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.966986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.967000 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967011 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967021 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967031 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967052 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.967063 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.967073 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.967088 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.967098 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.967109 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_unpin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08] now 0+0
2015-03-31 11:02:24.967366 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407689 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.967384 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407689 cr=0x9298280)
2015-03-31 11:02:24.967386 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407689 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.967389 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407689 cr=0x9298280) #1000006b2c4
2015-03-31 11:02:24.967391 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c4 snap head
2015-03-31 11:02:24.967392 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:24.967393 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:24.967406 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407689 cr=0x9298280)
2015-03-31 11:02:24.967409 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.967425 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967436 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967447 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:24.967456 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.967470 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:24.967485 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967495 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:24.967506 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967516 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:24.967527 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:24.967536 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_pin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08] now 1+0
2015-03-31 11:02:24.967546 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.967561 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.967576 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967587 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967597 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967608 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967628 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.967650 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.967665 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407689 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.967669 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407689 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:24.967679 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:24.967682 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:24.967687 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:24.967689 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:24.967702 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407689 cr=0x9298280)
2015-03-31 11:02:24.967721 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.967737 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.967751 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967762 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:24.967788 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967798 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:24.967808 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.967820 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:24.967829 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:24.967844 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:24.967855 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:24.967865 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_unpin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08] now 0+0
2015-03-31 11:02:24.971437 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4c follows 0 op update
2015-03-31 11:02:24.971441 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971452 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:24.971453 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:24.971472 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:24.971473 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971479 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971487 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:24.971489 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971500 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971508 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971525 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:24.971526 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971534 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971541 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971542 7fbe406af700  5 mds.0.log _submit_thread 5419604772~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:24.971547 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971552 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971558 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971563 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971570 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:24.971579 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.011032 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407690 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.011054 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407690 cr=0x9299900)
2015-03-31 11:02:25.011058 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407690 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.011063 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407690 cr=0x9299900) #1000006b2c4
2015-03-31 11:02:25.011065 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c4 snap head
2015-03-31 11:02:25.011066 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.011067 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.011084 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407690 cr=0x9299900)
2015-03-31 11:02:25.011087 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.011105 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.011117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.011128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.011139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.011153 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.011168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.011179 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.011190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.011200 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.011211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.011221 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_pin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08] now 1+0
2015-03-31 11:02:25.011231 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.011247 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.011271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.011293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.011303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.011313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.011322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.011332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.011347 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407690 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.011351 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407690 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.011360 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.011364 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.011368 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.011371 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.011384 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407690 cr=0x9299900)
2015-03-31 11:02:25.011404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.011420 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.011435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.011446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.011456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.011478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.011488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.011499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.011508 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.011523 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.011534 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.011544 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_unpin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08] now 0+0
2015-03-31 11:02:25.012817 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4c follows 0 op update
2015-03-31 11:02:25.012820 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012832 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.012834 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.012852 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.012853 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012860 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012869 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.012871 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012876 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012883 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012889 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.012890 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012896 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012903 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012908 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012914 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.012915 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.012916 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e4c [2,head] /test_small/small1/blarg10043 auth v136904 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b93e8]
2015-03-31 11:02:25.012923 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.052025 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407691 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.052049 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407691 cr=0x929da00)
2015-03-31 11:02:25.052052 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407691 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.052055 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407691 cr=0x929da00) #1000006b2c4
2015-03-31 11:02:25.052057 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c4 snap head
2015-03-31 11:02:25.052058 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.052060 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.052076 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407691 cr=0x929da00)
2015-03-31 11:02:25.052079 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052097 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052110 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.052121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.052132 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052147 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.052162 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052172 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.052183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.052194 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.052204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.052214 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_pin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08] now 1+0
2015-03-31 11:02:25.052225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052240 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052265 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052287 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052297 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.052307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.052317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.052326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.052342 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407691 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.052346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407691 getattr Xs #1000006b2c4 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.052356 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.052360 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.052364 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.052367 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.052381 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407691 cr=0x929da00)
2015-03-31 11:02:25.052400 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052417 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052431 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052442 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052452 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.052474 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.052484 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.052496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dfd08]
2015-03-31 11:02:25.052505 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.052521 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.052531 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.052542 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) auth_unpin by 0x242ca300 on [inode 1000006b2c4 [2,head] {#1000006b2c4 /test_small/small5/blarg10043} auth v178692 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dfd08] now 0+0
2015-03-31 11:02:25.052820 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407692 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.052837 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407692 cr=0x9298a00)
2015-03-31 11:02:25.052839 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407692 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.052842 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407692 cr=0x9298a00) #10000004e47
2015-03-31 11:02:25.052844 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e47 snap head
2015-03-31 11:02:25.052846 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.052847 7fbe462be700 10 mds.0.server ref is [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.052859 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407692 cr=0x9298a00)
2015-03-31 11:02:25.052861 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052877 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052888 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.052897 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.052903 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052917 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.052931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.052941 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.052952 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.052961 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.052970 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.052976 7fbe462be700 10 mds.0.cache.ino(10000004e47) auth_pin by 0x242ca300 on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0] now 1+0
2015-03-31 11:02:25.052983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.052998 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.053012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.053023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.053033 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.053043 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.053052 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053065 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053088 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053113 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407692 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.053117 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407692 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.053127 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.053131 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.053135 7fbe462be700 10 mds.0.cache.ino(10000004e47) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.053137 7fbe462be700 10 mds.0.cache.ino(10000004e47) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.053150 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407692 cr=0x9298a00)
2015-03-31 11:02:25.053168 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.053184 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.053198 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.053209 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.053218 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.053227 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.053247 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053254 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053261 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053267 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.053273 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.053287 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.053298 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.053307 7fbe462be700 10 mds.0.cache.ino(10000004e47) auth_unpin by 0x242ca300 on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b8ab0] now 0+0
2015-03-31 11:02:25.053592 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407693 lookup #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.053609 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407693 cr=0x929e680)
2015-03-31 11:02:25.053611 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407693 lookup #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.053614 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407693 cr=0x929e680) #1000006026a/blarg10044
2015-03-31 11:02:25.053616 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.053619 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10044 [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock) v=177676 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771080]
2015-03-31 11:02:25.053627 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.053629 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407693 lookup #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.053638 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.053649 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407693 cr=0x929e680)
2015-03-31 11:02:25.054113 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407694 lookup #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.054133 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407694 cr=0x9299400)
2015-03-31 11:02:25.054135 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407694 lookup #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.054138 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407694 cr=0x9299400) #1000006026a/blarg10044
2015-03-31 11:02:25.054140 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.054143 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10044 [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock) v=177676 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771080]
2015-03-31 11:02:25.054151 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.054152 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407694 lookup #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.054164 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.054176 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407694 cr=0x9299400)
2015-03-31 11:02:25.054641 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407695 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.054663 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407695 cr=0x929cd80)
2015-03-31 11:02:25.054665 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407695 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.054669 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407695 cr=0x929cd80) #10000004e47
2015-03-31 11:02:25.054671 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e47 snap head
2015-03-31 11:02:25.054672 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.054673 7fbe462be700 10 mds.0.server ref is [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.054684 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407695 cr=0x929cd80)
2015-03-31 11:02:25.054687 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.054706 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.054718 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.054727 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.054734 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.054749 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.054764 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.054775 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.054793 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.054802 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.054812 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.054817 7fbe462be700 10 mds.0.cache.ino(10000004e47) auth_pin by 0x242ca300 on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0] now 1+0
2015-03-31 11:02:25.054825 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.054840 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.054865 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.054887 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.054897 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.054905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.054914 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.054919 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.054925 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.054932 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.054945 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407695 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.054948 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407695 getattr Xs #10000004e47 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.054959 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.054963 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.054966 7fbe462be700 10 mds.0.cache.ino(10000004e47) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.054969 7fbe462be700 10 mds.0.cache.ino(10000004e47) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.054983 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407695 cr=0x929cd80)
2015-03-31 11:02:25.055002 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055019 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055035 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055045 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055056 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.055076 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.055085 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.055092 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.055099 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.055106 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b8ab0]
2015-03-31 11:02:25.055111 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.055126 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.055138 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.055147 7fbe462be700 10 mds.0.cache.ino(10000004e47) auth_unpin by 0x242ca300 on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b8ab0] now 0+0
2015-03-31 11:02:25.055405 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407696 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.055423 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407696 cr=0x929a300)
2015-03-31 11:02:25.055426 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407696 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.055429 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407696 cr=0x929a300) #1000006026a
2015-03-31 11:02:25.055431 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.055432 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.055433 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055448 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407696 cr=0x929a300)
2015-03-31 11:02:25.055451 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055465 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055476 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055487 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055500 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.055514 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055524 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.055534 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055543 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.055554 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055568 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055582 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055593 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055603 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055614 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055625 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055635 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31386} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055669 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407696 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.055673 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407696 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.055694 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.055697 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.055702 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31387
2015-03-31 11:02:25.055703 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31387 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.055716 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407696 cr=0x929a300)
2015-03-31 11:02:25.055734 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055750 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.055764 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055775 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.055788 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055809 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055820 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055829 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.055839 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.055853 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.055864 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.056245 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407697 create #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.056265 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407697 cr=0x9f79680)
2015-03-31 11:02:25.056268 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407697 create #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.056271 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10044
2015-03-31 11:02:25.056272 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407697 cr=0x9f79680) #1000006026a/blarg10044
2015-03-31 11:02:25.056274 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10044
2015-03-31 11:02:25.056275 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.056277 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.056278 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178693 v=178687 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.056288 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178693 v=178687 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.056296 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10044 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178693 v=178687 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.056307 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407697 cr=0x9f79680)
2015-03-31 11:02:25.056312 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.056332 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056344 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056355 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock) v=177676 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771080]
2015-03-31 11:02:25.056362 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.056377 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca300 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.056392 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056403 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.056414 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=3+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056425 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.056435 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock) v=177676 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771080]
2015-03-31 11:02:25.056440 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10044) auth_pin by 0x242ca300 on [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock) v=177676 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080] now 1+0
2015-03-31 11:02:25.056447 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock) v=177676 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.056452 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177676 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.056468 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177676 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.056473 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177676 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.056477 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177676 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.056493 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10044) auth_pin by 0x67711d8 on [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177676 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080] now 2+0
2015-03-31 11:02:25.056499 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242ca300) [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dn xlock x=1 by 0x242ca300) (dversion lock w=1 last_client=708310) v=177676 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.056505 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.056520 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.056534 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.056547 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.056560 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056570 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056580 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056590 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056599 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056609 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056619 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056628 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056637 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056647 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056657 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056666 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056676 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056685 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056704 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c5 ([1000006b2c6~35d], 861 left)
2015-03-31 11:02:25.056707 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.056709 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c5 [2,head] #1000006b2c5 auth v1 s=0 n() (iversion lock) 0x3f3e5938]
2015-03-31 11:02:25.056713 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178694
2015-03-31 11:02:25.056714 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10044)  pre_dirty [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dn xlock x=1 by 0x242ca300) (dversion lock w=1 last_client=708310) pv=178694 v=177676 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.056721 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3e5938]
2015-03-31 11:02:25.056728 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242ca300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178694 v=178687 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:25.056737 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3c34a40
2015-03-31 11:02:25.056739 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178695
2015-03-31 11:02:25.056740 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178695 v=178687 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.056746 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178695 v=178687 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.056752 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3e5938]
2015-03-31 11:02:25.056758 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.056760 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295264 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056773 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295266
2015-03-31 11:02:25.056774 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295266 v=3295258 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.056778 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295266 (current v 3295258)
2015-03-31 11:02:25.056779 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178695 v=178687 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.056791 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.056792 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242ca300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295266 v=3295259 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:25.056802 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc6ca40
2015-03-31 11:02:25.056803 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295267
2015-03-31 11:02:25.056804 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056816 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056826 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056837 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.056838 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.182956 < 1, stopping
2015-03-31 11:02:25.056842 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.056853 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.056856 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295266 v=3295258 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.056862 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31387} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.056876 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3e5938]
2015-03-31 11:02:25.056882 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.056885 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056893 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.056896 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056903 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056908 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056914 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056921 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056927 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056934 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056940 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056946 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056953 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056959 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056966 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056972 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056979 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056984 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3e5938]
2015-03-31 11:02:25.056994 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.056995 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.056997 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3e5938 tracedn 0x6771080
2015-03-31 11:02:25.057000 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242ca300) [dentry #1/test_small/small5/blarg10044 [2,head] auth NULL (dn xlock x=1 by 0x242ca300) (dversion lock w=1 last_client=708310) pv=178694 v=177676 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771080]
2015-03-31 11:02:25.057006 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407697 create #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.057015 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.057018 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31388
2015-03-31 11:02:25.057020 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31388 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.057026 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.057029 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.057032 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) including xattrs version 0
2015-03-31 11:02:25.057069 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057098 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057114 7fbe406af700  5 mds.0.log _submit_thread 5419605631~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.057114 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057127 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057152 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057164 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057175 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057185 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057196 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057208 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057220 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057241 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057251 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057490 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407698 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.057510 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407698 cr=0x2a509900)
2015-03-31 11:02:25.057512 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407698 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.057516 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407698 cr=0x2a509900) #1000006b2c5
2015-03-31 11:02:25.057518 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c5 snap head
2015-03-31 11:02:25.057519 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.057520 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3e5938]
2015-03-31 11:02:25.057534 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407698 cr=0x2a509900)
2015-03-31 11:02:25.057537 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057553 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057564 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057574 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3e5938]
2015-03-31 11:02:25.057584 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057598 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.057612 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057622 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.057633 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057643 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.057653 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3e5938]
2015-03-31 11:02:25.057662 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_pin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3e5938] now 1+0
2015-03-31 11:02:25.057673 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057688 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057703 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057714 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057724 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057735 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057760 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.057785 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.057800 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407698 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.057804 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407698 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.057814 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.057818 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.057823 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.057825 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.057838 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407698 cr=0x2a509900)
2015-03-31 11:02:25.057857 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057874 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.057888 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057899 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.057910 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057920 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.057941 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.057951 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.057961 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.057976 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.057987 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.057997 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_unpin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938] now 0+0
2015-03-31 11:02:25.058261 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407699 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.058279 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407699 cr=0x26d3df00)
2015-03-31 11:02:25.058281 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407699 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.058284 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407699 cr=0x26d3df00) #1000006b2c5
2015-03-31 11:02:25.058286 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c5 snap head
2015-03-31 11:02:25.058288 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.058289 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.058302 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407699 cr=0x26d3df00)
2015-03-31 11:02:25.058304 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.058320 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.058331 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.058342 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.058351 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.058365 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.058379 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.058389 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.058399 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.058409 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.058420 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.058429 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_pin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938] now 1+0
2015-03-31 11:02:25.058439 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.058454 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.058468 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.058479 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.058490 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.058500 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.058521 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.058543 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.058557 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407699 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.058561 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407699 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.058571 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.058575 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.058579 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.058581 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.058594 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407699 cr=0x26d3df00)
2015-03-31 11:02:25.058613 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.058629 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.058643 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.058653 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.058675 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.058685 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.058695 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.058706 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.058716 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.058731 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.058742 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.058752 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_unpin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938] now 0+0
2015-03-31 11:02:25.063483 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e47 follows 0 op update
2015-03-31 11:02:25.063486 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063497 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.063499 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.063518 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.063519 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063525 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063532 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.063534 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063545 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063565 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063571 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.063573 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063581 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063586 7fbe406af700  5 mds.0.log _submit_thread 5419607271~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.063588 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063603 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063610 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063616 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063622 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063628 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.063638 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.103034 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407700 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.103055 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407700 cr=0x26d3af80)
2015-03-31 11:02:25.103060 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407700 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.103064 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407700 cr=0x26d3af80) #1000006b2c5
2015-03-31 11:02:25.103066 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c5 snap head
2015-03-31 11:02:25.103067 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.103069 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.103085 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407700 cr=0x26d3af80)
2015-03-31 11:02:25.103088 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.103106 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.103119 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.103129 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.103140 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.103154 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.103169 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.103179 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.103189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.103200 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.103211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.103221 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_pin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938] now 1+0
2015-03-31 11:02:25.103231 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.103246 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.103261 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.103283 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.103292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.103302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.103311 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.103320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.103335 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407700 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.103339 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407700 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.103350 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.103353 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.103357 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.103360 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.103373 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407700 cr=0x26d3af80)
2015-03-31 11:02:25.103393 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.103410 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.103424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.103435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.103446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.103467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.103478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.103488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.103498 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.103513 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.103524 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.103534 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_unpin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938] now 0+0
2015-03-31 11:02:25.104822 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e47 follows 0 op update
2015-03-31 11:02:25.104826 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104837 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.104839 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.104858 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.104858 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104866 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104874 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.104876 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104881 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104889 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104895 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.104896 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104903 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104909 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104913 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104919 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.104921 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.104922 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e47 [2,head] /test_small/small1/blarg10044 auth v136906 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8ab0]
2015-03-31 11:02:25.104929 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.144029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407701 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.144052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407701 cr=0x26d39900)
2015-03-31 11:02:25.144054 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407701 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.144058 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407701 cr=0x26d39900) #1000006b2c5
2015-03-31 11:02:25.144060 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c5 snap head
2015-03-31 11:02:25.144061 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.144062 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.144079 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407701 cr=0x26d39900)
2015-03-31 11:02:25.144082 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144100 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144112 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.144123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.144133 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144148 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.144163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144173 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.144184 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.144194 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.144205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.144215 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_pin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938] now 1+0
2015-03-31 11:02:25.144225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144241 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144288 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.144307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.144316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.144325 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.144340 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407701 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.144343 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407701 getattr Xs #1000006b2c5 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.144354 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.144357 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.144362 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.144364 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.144377 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407701 cr=0x26d39900)
2015-03-31 11:02:25.144397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144413 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144428 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144439 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144449 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.144470 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.144481 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.144491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3e5938]
2015-03-31 11:02:25.144501 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.144516 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.144526 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.144537 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) auth_unpin by 0x2a625a00 on [inode 1000006b2c5 [2,head] {#1000006b2c5 /test_small/small5/blarg10044} auth v178694 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3e5938] now 0+0
2015-03-31 11:02:25.144816 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407702 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.144835 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407702 cr=0x26d3e180)
2015-03-31 11:02:25.144837 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407702 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.144840 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407702 cr=0x26d3e180) #10000004e53
2015-03-31 11:02:25.144842 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e53 snap head
2015-03-31 11:02:25.144843 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.144844 7fbe462be700 10 mds.0.server ref is [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.144854 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407702 cr=0x26d3e180)
2015-03-31 11:02:25.144857 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144873 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.144893 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.144900 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144914 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.144928 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.144938 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.144949 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.144958 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a625a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.144967 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.144972 7fbe462be700 10 mds.0.cache.ino(10000004e53) auth_pin by 0x2a625a00 on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178] now 1+0
2015-03-31 11:02:25.144980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.144994 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.145008 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.145019 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.145029 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.145038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.145048 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145055 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145061 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145079 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145104 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407702 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.145108 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407702 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.145118 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.145121 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.145125 7fbe462be700 10 mds.0.cache.ino(10000004e53) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.145127 7fbe462be700 10 mds.0.cache.ino(10000004e53) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.145140 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407702 cr=0x26d3e180)
2015-03-31 11:02:25.145160 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.145176 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.145190 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.145200 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.145211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.145219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.145240 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145247 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145254 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145260 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.145267 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.145281 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.145292 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a625a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.145301 7fbe462be700 10 mds.0.cache.ino(10000004e53) auth_unpin by 0x2a625a00 on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b8178] now 0+0
2015-03-31 11:02:25.145669 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407703 lookup #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.145689 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407703 cr=0x9cc4880)
2015-03-31 11:02:25.145692 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407703 lookup #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.145695 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407703 cr=0x9cc4880) #1000006026a/blarg10045
2015-03-31 11:02:25.145697 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.145700 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10045 [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock) v=177678 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771260]
2015-03-31 11:02:25.145708 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.145710 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407703 lookup #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.145722 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.145736 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407703 cr=0x9cc4880)
2015-03-31 11:02:25.146199 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407704 lookup #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.146218 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407704 cr=0x43d2800)
2015-03-31 11:02:25.146220 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407704 lookup #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.146223 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407704 cr=0x43d2800) #1000006026a/blarg10045
2015-03-31 11:02:25.146225 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.146228 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10045 [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock) v=177678 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771260]
2015-03-31 11:02:25.146236 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.146237 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407704 lookup #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.146249 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.146261 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407704 cr=0x43d2800)
2015-03-31 11:02:25.146682 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407705 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.146704 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407705 cr=0x60afa80)
2015-03-31 11:02:25.146706 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407705 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.146709 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407705 cr=0x60afa80) #10000004e53
2015-03-31 11:02:25.146711 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e53 snap head
2015-03-31 11:02:25.146713 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.146714 7fbe462be700 10 mds.0.server ref is [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.146725 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407705 cr=0x60afa80)
2015-03-31 11:02:25.146728 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.146747 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.146759 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.146768 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.146774 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.146798 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.146813 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.146824 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.146835 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.146844 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a625a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.146854 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.146861 7fbe462be700 10 mds.0.cache.ino(10000004e53) auth_pin by 0x2a625a00 on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178] now 1+0
2015-03-31 11:02:25.146868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.146883 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.146907 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.146929 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.146939 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.146948 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.146957 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.146963 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.146980 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.146986 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.147000 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407705 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.147004 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407705 getattr Xs #10000004e53 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.147015 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.147030 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.147035 7fbe462be700 10 mds.0.cache.ino(10000004e53) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.147038 7fbe462be700 10 mds.0.cache.ino(10000004e53) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.147053 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407705 cr=0x60afa80)
2015-03-31 11:02:25.147062 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147079 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147095 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147118 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147129 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.147139 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.147149 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.147156 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.147163 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.147169 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b8178]
2015-03-31 11:02:25.147176 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.147192 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.147203 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a625a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.147213 7fbe462be700 10 mds.0.cache.ino(10000004e53) auth_unpin by 0x2a625a00 on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b8178] now 0+0
2015-03-31 11:02:25.147518 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407706 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.147536 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407706 cr=0x60aa300)
2015-03-31 11:02:25.147538 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407706 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.147541 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407706 cr=0x60aa300) #1000006026a
2015-03-31 11:02:25.147543 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.147544 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.147545 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147560 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407706 cr=0x60aa300)
2015-03-31 11:02:25.147563 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147578 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147588 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147599 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147612 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.147627 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147636 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.147647 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147657 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.147668 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147682 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147696 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147707 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147717 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147728 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147738 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147748 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31388} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147779 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407706 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.147799 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407706 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.147809 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.147812 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.147817 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31389
2015-03-31 11:02:25.147819 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31389 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.147831 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407706 cr=0x60aa300)
2015-03-31 11:02:25.147850 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147867 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.147881 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147892 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.147902 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147913 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147934 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147944 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.147953 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.147968 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.147978 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.148363 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407707 create #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.148383 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407707 cr=0x60ab480)
2015-03-31 11:02:25.148385 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407707 create #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.148388 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10045
2015-03-31 11:02:25.148389 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407707 cr=0x60ab480) #1000006026a/blarg10045
2015-03-31 11:02:25.148392 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10045
2015-03-31 11:02:25.148393 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.148394 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.148396 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178695 v=178687 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.148406 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178695 v=178687 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.148413 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10045 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178695 v=178687 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.148424 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407707 cr=0x60ab480)
2015-03-31 11:02:25.148430 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.148449 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148461 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148472 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock) v=177678 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771260]
2015-03-31 11:02:25.148479 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.148494 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625a00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.148508 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148518 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.148529 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=4+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148538 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.148549 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock) v=177678 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771260]
2015-03-31 11:02:25.148554 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10045) auth_pin by 0x2a625a00 on [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock) v=177678 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260] now 1+0
2015-03-31 11:02:25.148561 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock) v=177678 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.148565 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177678 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.148571 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177678 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.148586 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177678 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.148592 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177678 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.148597 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10045) auth_pin by 0x67713b8 on [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177678 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260] now 2+0
2015-03-31 11:02:25.148614 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2a625a00) [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dn xlock x=1 by 0x2a625a00) (dversion lock w=1 last_client=708310) v=177678 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.148618 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.148633 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.148646 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.148659 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.148672 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148683 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148692 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148702 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148711 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148721 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148730 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148740 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148749 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148758 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148767 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148777 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148790 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148800 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148819 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c6 ([1000006b2c7~35c], 860 left)
2015-03-31 11:02:25.148822 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.148823 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c6 [2,head] #1000006b2c6 auth v1 s=0 n() (iversion lock) 0x3f4b7e10]
2015-03-31 11:02:25.148827 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178696
2015-03-31 11:02:25.148829 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10045)  pre_dirty [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dn xlock x=1 by 0x2a625a00) (dversion lock w=1 last_client=708310) pv=178696 v=177678 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.148837 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4b7e10]
2015-03-31 11:02:25.148845 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2a625a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178696 v=178687 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:25.148854 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc6f9b0
2015-03-31 11:02:25.148855 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178697
2015-03-31 11:02:25.148856 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178697 v=178687 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.148863 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178697 v=178687 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.148870 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4b7e10]
2015-03-31 11:02:25.148875 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.148876 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295266 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148890 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295268
2015-03-31 11:02:25.148891 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295268 v=3295258 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.148895 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295268 (current v 3295258)
2015-03-31 11:02:25.148897 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178697 v=178687 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.148905 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.148906 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2a625a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295268 v=3295259 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:25.148915 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9321760
2015-03-31 11:02:25.148917 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295269
2015-03-31 11:02:25.148918 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148929 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148940 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148950 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.148952 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.27507 < 1, stopping
2015-03-31 11:02:25.148956 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.148966 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.148970 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295268 v=3295258 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.148975 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31389} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.148990 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4b7e10]
2015-03-31 11:02:25.148996 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.148999 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149007 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.149009 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149017 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149024 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149030 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149037 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149044 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149050 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149056 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149062 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149068 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149074 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149081 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149087 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149092 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149098 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149108 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.149109 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.149111 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4b7e10 tracedn 0x6771260
2015-03-31 11:02:25.149114 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2a625a00) [dentry #1/test_small/small5/blarg10045 [2,head] auth NULL (dn xlock x=1 by 0x2a625a00) (dversion lock w=1 last_client=708310) pv=178696 v=177678 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771260]
2015-03-31 11:02:25.149120 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407707 create #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.149129 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.149132 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31390
2015-03-31 11:02:25.149135 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31390 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.149140 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.149142 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.149145 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) including xattrs version 0
2015-03-31 11:02:25.149182 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149212 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149226 7fbe406af700  5 mds.0.log _submit_thread 5419608130~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.149228 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149240 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149266 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149278 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149290 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149300 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149310 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149322 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149334 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149344 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149355 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149365 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149613 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407708 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.149631 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407708 cr=0xb267080)
2015-03-31 11:02:25.149633 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407708 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.149637 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407708 cr=0xb267080) #1000006b2c6
2015-03-31 11:02:25.149639 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c6 snap head
2015-03-31 11:02:25.149640 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.149641 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149654 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407708 cr=0xb267080)
2015-03-31 11:02:25.149657 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149673 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149684 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149695 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149718 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.149733 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149743 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.149754 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149764 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.149775 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4b7e10]
2015-03-31 11:02:25.149789 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_pin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4b7e10] now 1+0
2015-03-31 11:02:25.149799 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149814 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149829 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149840 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.149851 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149876 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.149897 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.149906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.149922 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407708 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.149926 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407708 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.149936 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.149939 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.149944 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.149946 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.149959 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407708 cr=0xb267080)
2015-03-31 11:02:25.149978 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.149995 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.150009 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150020 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150040 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150062 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.150072 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.150082 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.150097 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.150108 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.150119 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_unpin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10] now 0+0
2015-03-31 11:02:25.150378 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407709 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.150398 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407709 cr=0xb264880)
2015-03-31 11:02:25.150400 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407709 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.150403 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407709 cr=0xb264880) #1000006b2c6
2015-03-31 11:02:25.150405 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c6 snap head
2015-03-31 11:02:25.150407 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.150408 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.150421 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407709 cr=0xb264880)
2015-03-31 11:02:25.150423 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.150439 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150450 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150460 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.150470 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.150483 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.150498 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150507 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.150518 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.150539 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.150548 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_pin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10] now 1+0
2015-03-31 11:02:25.150558 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.150573 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.150588 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150598 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150609 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150619 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150646 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.150667 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.150682 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407709 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.150686 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407709 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.150696 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.150699 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.150703 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.150705 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.150718 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407709 cr=0xb264880)
2015-03-31 11:02:25.150737 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.150752 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.150766 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150777 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.150791 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150812 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.150822 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.150833 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.150842 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.150857 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.150869 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.150879 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_unpin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10] now 0+0
2015-03-31 11:02:25.154874 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e53 follows 0 op update
2015-03-31 11:02:25.154877 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154888 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.154890 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.154909 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.154910 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154917 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154925 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.154927 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154937 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154957 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154963 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.154964 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154971 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154978 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154984 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154977 7fbe406af700  5 mds.0.log _submit_thread 5419609770~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.154990 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.154995 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.155000 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.155008 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.155017 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.194035 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407710 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.194056 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407710 cr=0x5e8c380)
2015-03-31 11:02:25.194060 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407710 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.194065 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407710 cr=0x5e8c380) #1000006b2c6
2015-03-31 11:02:25.194067 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c6 snap head
2015-03-31 11:02:25.194068 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.194069 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.194086 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407710 cr=0x5e8c380)
2015-03-31 11:02:25.194089 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.194107 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.194119 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.194130 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.194141 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.194156 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.194171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.194181 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.194193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.194203 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.194214 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.194224 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_pin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10] now 1+0
2015-03-31 11:02:25.194234 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.194267 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.194292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.194302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.194312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.194321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.194331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.194340 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.194355 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407710 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.194359 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407710 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.194370 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.194374 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.194378 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.194381 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.194394 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407710 cr=0x5e8c380)
2015-03-31 11:02:25.194414 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.194431 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.194446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.194457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.194468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.194489 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.194500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.194511 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.194521 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.194536 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.194547 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.194557 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_unpin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10] now 0+0
2015-03-31 11:02:25.195861 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e53 follows 0 op update
2015-03-31 11:02:25.195864 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195876 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.195878 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.195896 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.195897 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195904 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195912 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.195915 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195920 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195928 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195933 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.195934 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195941 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195948 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195953 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195959 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.195960 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.195961 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e53 [2,head] /test_small/small1/blarg10045 auth v136908 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b8178]
2015-03-31 11:02:25.195968 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.235019 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407711 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.235040 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407711 cr=0x25f4ee00)
2015-03-31 11:02:25.235045 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407711 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.235048 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407711 cr=0x25f4ee00) #1000006b2c6
2015-03-31 11:02:25.235051 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c6 snap head
2015-03-31 11:02:25.235052 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.235053 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.235070 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407711 cr=0x25f4ee00)
2015-03-31 11:02:25.235073 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235091 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235103 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.235115 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.235125 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235140 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.235154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235165 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.235176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.235187 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.235198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.235207 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_pin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10] now 1+0
2015-03-31 11:02:25.235218 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235233 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235289 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.235298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.235308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.235317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.235333 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407711 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.235336 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407711 getattr Xs #1000006b2c6 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.235347 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.235350 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.235355 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.235357 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.235371 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407711 cr=0x25f4ee00)
2015-03-31 11:02:25.235391 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235407 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235443 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.235464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.235475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.235486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4b7e10]
2015-03-31 11:02:25.235495 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.235511 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.235522 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.235532 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) auth_unpin by 0x242cad00 on [inode 1000006b2c6 [2,head] {#1000006b2c6 /test_small/small5/blarg10045} auth v178696 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4b7e10] now 0+0
2015-03-31 11:02:25.235807 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407712 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.235825 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407712 cr=0x26903700)
2015-03-31 11:02:25.235827 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407712 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.235830 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407712 cr=0x26903700) #10000004e50
2015-03-31 11:02:25.235832 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e50 snap head
2015-03-31 11:02:25.235834 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.235835 7fbe462be700 10 mds.0.server ref is [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.235845 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407712 cr=0x26903700)
2015-03-31 11:02:25.235848 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235864 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235875 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.235884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.235890 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235904 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.235918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.235929 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.235940 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.235949 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.235958 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.235964 7fbe462be700 10 mds.0.cache.ino(10000004e50) auth_pin by 0x242cad00 on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840] now 1+0
2015-03-31 11:02:25.235971 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.235986 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.236000 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.236010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.236021 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.236030 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.236040 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236069 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236074 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236099 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407712 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.236103 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407712 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.236113 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.236116 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.236119 7fbe462be700 10 mds.0.cache.ino(10000004e50) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.236122 7fbe462be700 10 mds.0.cache.ino(10000004e50) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.236134 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407712 cr=0x26903700)
2015-03-31 11:02:25.236153 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.236170 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.236184 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.236194 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.236205 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.236214 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.236234 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236241 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236248 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236254 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.236259 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.236274 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.236284 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.236294 7fbe462be700 10 mds.0.cache.ino(10000004e50) auth_unpin by 0x242cad00 on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b7840] now 0+0
2015-03-31 11:02:25.236663 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407713 lookup #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.236683 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407713 cr=0x5410f00)
2015-03-31 11:02:25.236686 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407713 lookup #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.236689 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407713 cr=0x5410f00) #1000006026a/blarg10046
2015-03-31 11:02:25.236690 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.236693 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10046 [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock) v=177680 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771440]
2015-03-31 11:02:25.236702 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.236704 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407713 lookup #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.236716 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.236728 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407713 cr=0x5410f00)
2015-03-31 11:02:25.237193 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407714 lookup #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.237212 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407714 cr=0x45a5c80)
2015-03-31 11:02:25.237216 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407714 lookup #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.237219 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407714 cr=0x45a5c80) #1000006026a/blarg10046
2015-03-31 11:02:25.237221 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.237224 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10046 [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock) v=177680 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771440]
2015-03-31 11:02:25.237231 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.237232 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407714 lookup #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.237243 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.237257 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407714 cr=0x45a5c80)
2015-03-31 11:02:25.237677 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407715 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.237698 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407715 cr=0x51da300)
2015-03-31 11:02:25.237700 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407715 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.237704 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407715 cr=0x51da300) #10000004e50
2015-03-31 11:02:25.237706 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e50 snap head
2015-03-31 11:02:25.237707 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.237708 7fbe462be700 10 mds.0.server ref is [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.237720 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407715 cr=0x51da300)
2015-03-31 11:02:25.237723 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.237741 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.237754 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.237763 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.237770 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.237790 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.237805 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.237815 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.237827 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.237836 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.237845 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.237852 7fbe462be700 10 mds.0.cache.ino(10000004e50) auth_pin by 0x242cad00 on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840] now 1+0
2015-03-31 11:02:25.237860 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.237876 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.237900 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.237911 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.237932 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.237941 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.237949 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.237955 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.237962 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.237968 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.237982 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407715 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.237985 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407715 getattr Xs #10000004e50 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.237996 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.238000 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.238004 7fbe462be700 10 mds.0.cache.ino(10000004e50) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.238006 7fbe462be700 10 mds.0.cache.ino(10000004e50) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.238020 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407715 cr=0x51da300)
2015-03-31 11:02:25.238040 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238057 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238072 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238083 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238094 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.238114 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.238123 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.238131 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.238138 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.238144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b7840]
2015-03-31 11:02:25.238149 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.238164 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.238175 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.238184 7fbe462be700 10 mds.0.cache.ino(10000004e50) auth_unpin by 0x242cad00 on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b7840] now 0+0
2015-03-31 11:02:25.238462 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407716 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.238481 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407716 cr=0x9f78280)
2015-03-31 11:02:25.238484 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407716 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.238487 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407716 cr=0x9f78280) #1000006026a
2015-03-31 11:02:25.238489 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.238490 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.238491 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238506 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407716 cr=0x9f78280)
2015-03-31 11:02:25.238509 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238524 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238535 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238545 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238558 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.238572 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238582 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.238593 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238603 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.238613 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238628 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238642 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238653 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238664 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238674 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238685 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238696 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31390} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238726 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407716 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.238730 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407716 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.238752 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.238756 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.238759 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31391
2015-03-31 11:02:25.238761 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31391 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.238773 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407716 cr=0x9f78280)
2015-03-31 11:02:25.238796 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238812 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.238826 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238837 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.238847 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238869 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238880 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238890 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.238900 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.238913 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.238924 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.239303 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407717 create #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.239325 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407717 cr=0xa255780)
2015-03-31 11:02:25.239328 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407717 create #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.239331 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10046
2015-03-31 11:02:25.239332 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407717 cr=0xa255780) #1000006026a/blarg10046
2015-03-31 11:02:25.239335 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10046
2015-03-31 11:02:25.239336 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.239337 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.239339 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178697 v=178687 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.239349 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178697 v=178687 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.239358 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10046 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178697 v=178687 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.239369 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407717 cr=0xa255780)
2015-03-31 11:02:25.239374 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.239394 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239406 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239417 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock) v=177680 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771440]
2015-03-31 11:02:25.239424 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.239439 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cad00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.239454 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239464 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.239475 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=5+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239485 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.239495 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock) v=177680 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771440]
2015-03-31 11:02:25.239500 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10046) auth_pin by 0x242cad00 on [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock) v=177680 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440] now 1+0
2015-03-31 11:02:25.239507 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock) v=177680 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.239512 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177680 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.239528 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177680 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.239532 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177680 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.239538 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177680 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.239553 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10046) auth_pin by 0x6771598 on [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177680 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440] now 2+0
2015-03-31 11:02:25.239559 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cad00) [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dn xlock x=1 by 0x242cad00) (dversion lock w=1 last_client=708310) v=177680 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.239565 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.239579 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.239593 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.239606 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.239619 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239629 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239638 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239648 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239658 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239667 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239677 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239687 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239696 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239705 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239715 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239724 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239733 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239743 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239761 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c7 ([1000006b2c8~35b], 859 left)
2015-03-31 11:02:25.239764 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.239765 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c7 [2,head] #1000006b2c7 auth v1 s=0 n() (iversion lock) 0x3f473e40]
2015-03-31 11:02:25.239769 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178698
2015-03-31 11:02:25.239770 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10046)  pre_dirty [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dn xlock x=1 by 0x242cad00) (dversion lock w=1 last_client=708310) pv=178698 v=177680 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.239778 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f473e40]
2015-03-31 11:02:25.239789 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cad00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178698 v=178687 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:25.239799 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc6e460
2015-03-31 11:02:25.239800 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178699
2015-03-31 11:02:25.239801 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178687 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.239807 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178687 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.239814 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f473e40]
2015-03-31 11:02:25.239821 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.239822 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295268 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239836 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295270
2015-03-31 11:02:25.239837 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295258 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.239841 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295270 (current v 3295258)
2015-03-31 11:02:25.239842 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178687 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=51+1553,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.239848 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.239850 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cad00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295270 v=3295259 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:25.239859 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9326460
2015-03-31 11:02:25.239860 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295271
2015-03-31 11:02:25.239861 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239873 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239883 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239894 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.239895 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.366013 < 1, stopping
2015-03-31 11:02:25.239899 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.239910 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.239914 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295258 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.239919 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31391} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.239933 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f473e40]
2015-03-31 11:02:25.239940 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.239943 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f473e40]
2015-03-31 11:02:25.239950 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.239951 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.239959 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.239966 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.239973 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.239980 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.239987 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.239993 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240000 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240006 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240012 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240018 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240024 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240031 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240037 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240043 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f473e40]
2015-03-31 11:02:25.240053 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.240054 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.240057 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f473e40 tracedn 0x6771440
2015-03-31 11:02:25.240059 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cad00) [dentry #1/test_small/small5/blarg10046 [2,head] auth NULL (dn xlock x=1 by 0x242cad00) (dversion lock w=1 last_client=708310) pv=178698 v=177680 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771440]
2015-03-31 11:02:25.240065 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407717 create #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.240074 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.240077 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31392
2015-03-31 11:02:25.240079 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31392 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.240085 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.240087 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.240089 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) including xattrs version 0
2015-03-31 11:02:25.240126 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240155 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240170 7fbe406af700  5 mds.0.log _submit_thread 5419610629~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.240171 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240186 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240224 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240236 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240247 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240258 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240269 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240281 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240291 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240302 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240312 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240502 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407718 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.240522 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407718 cr=0xa250f00)
2015-03-31 11:02:25.240525 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407718 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.240528 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407718 cr=0xa250f00) #1000006b2c7
2015-03-31 11:02:25.240530 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c7 snap head
2015-03-31 11:02:25.240531 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.240532 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f473e40]
2015-03-31 11:02:25.240546 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407718 cr=0xa250f00)
2015-03-31 11:02:25.240549 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240565 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240576 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240586 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f473e40]
2015-03-31 11:02:25.240596 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240610 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a627800 on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.240625 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240635 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.240645 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240656 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.240666 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f473e40]
2015-03-31 11:02:25.240676 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_pin by 0x2a627800 on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f473e40] now 1+0
2015-03-31 11:02:25.240686 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240700 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240715 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240725 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240736 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240788 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.240798 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.240813 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407718 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.240817 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407718 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.240827 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.240830 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.240834 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.240837 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.240850 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407718 cr=0xa250f00)
2015-03-31 11:02:25.240868 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240885 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.240899 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240910 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.240920 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.240952 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.240962 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.240972 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a627800 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.240987 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.240998 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.241008 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_unpin by 0x2a627800 on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f473e40] now 0+0
2015-03-31 11:02:25.241208 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407719 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.241226 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407719 cr=0xa251e00)
2015-03-31 11:02:25.241228 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407719 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.241231 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407719 cr=0xa251e00) #1000006b2c7
2015-03-31 11:02:25.241233 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c7 snap head
2015-03-31 11:02:25.241234 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.241235 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.241247 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407719 cr=0xa251e00)
2015-03-31 11:02:25.241249 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.241265 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.241276 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.241286 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.241296 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.241309 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a627800 on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.241324 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.241334 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.241344 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.241354 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.241365 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.241374 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_pin by 0x2a627800 on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f473e40] now 1+0
2015-03-31 11:02:25.241384 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.241399 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.241413 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.241424 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.241435 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.241455 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.241465 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.241486 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.241501 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407719 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.241505 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407719 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.241515 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.241518 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.241522 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.241526 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.241538 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407719 cr=0xa251e00)
2015-03-31 11:02:25.241558 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.241573 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.241587 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.241598 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.241619 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.241629 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.241639 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.241650 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.241659 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a627800 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.241674 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.241685 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.241695 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_unpin by 0x2a627800 on [inode 1000006b2c7 [2,head] {#1000006b2c7 /test_small/small5/blarg10046} auth v178698 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f473e40] now 0+0
2015-03-31 11:02:25.242165 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407720 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.242188 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407720 cr=0x940f080)
2015-03-31 11:02:25.242191 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407720 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.242195 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407720 cr=0x940f080) #1000006026a
2015-03-31 11:02:25.242196 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.242198 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.242199 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242217 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407720 cr=0x940f080)
2015-03-31 11:02:25.242220 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242237 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242249 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242274 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a627800 on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.242289 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242299 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.242310 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242320 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.242331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242360 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242371 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242391 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242413 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242423 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242433 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31392} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242449 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407720 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.242453 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407720 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.242463 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.242467 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.242471 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31393
2015-03-31 11:02:25.242473 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31393 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.242486 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407720 cr=0x940f080)
2015-03-31 11:02:25.242506 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242537 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242548 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242570 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242581 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242591 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242601 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242612 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a627800 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.242626 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.242636 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.242779 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407721 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.242804 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407721 cr=0xa928f00)
2015-03-31 11:02:25.242806 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407721 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.242810 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407721 cr=0xa928f00) #1000006026a
2015-03-31 11:02:25.242812 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.242814 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.242815 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242829 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407721 cr=0xa928f00)
2015-03-31 11:02:25.242832 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242846 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242857 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242867 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242880 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a627800 on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.242895 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242905 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.242916 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242925 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.242936 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242950 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53470 pv53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.242964 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242975 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.242985 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.242995 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.243005 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.243016 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.243036 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=8+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:25.243058 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=8+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.243068 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x5ef1590 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:25.243070 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=8+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.265749 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.265755 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.265764 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.265769 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) mark_dirty [inode 1000006b2c2 [2,head] /test_small/small5/blarg10041 auth v178687 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:25.265812 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10041)  mark_dirty [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178688 v=177670 ap=2+0 inode=0x3f3b4068 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0]
2015-03-31 11:02:25.265823 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178688 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 51=51+0) hs=52+1552,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178688
2015-03-31 11:02:25.265835 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) mark_dirty_parent
2015-03-31 11:02:25.265837 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295258 pv3295270 ap=8+1 f(v0 m2015-03-31 11:03:01.000000 51=51+0) n(v1 rc2015-03-31 11:03:01.000000 52=51+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.265853 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295258 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.265857 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295260 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382354=382347+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295260
2015-03-31 11:02:25.265869 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178689 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 52=52+0) hs=52+1552,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178689
2015-03-31 11:02:25.265877 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295261 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382355=382348+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295261
2015-03-31 11:02:25.265887 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c2 [2,head] /test_small/small5/blarg10041 auth v178688 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3b4068]
2015-03-31 11:02:25.265899 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.265902 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27525 client_caps(grant ino 1000006b2c2 1851511 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:01.000000) v4
2015-03-31 11:02:25.265934 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178688 ap=2+0 inode=0x3f3b4068 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0]
2015-03-31 11:02:25.265955 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407667 create #1000006026a/blarg10041 2015-03-31 11:03:01.000000) v2
2015-03-31 11:02:25.265967 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c2
2015-03-31 11:02:25.265981 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178688 ap=2+0 inode=0x3f3b4068 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0]
2015-03-31 11:02:25.265990 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178688 ap=2+0 inode=0x3f3b4068 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0]
2015-03-31 11:02:25.265997 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178688 ap=2+0 inode=0x3f3b4068 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0]
2015-03-31 11:02:25.266012 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10041) auth_unpin by 0x6770c38 on [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178688 ap=1+0 inode=0x3f3b4068 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0] now 1+0
2015-03-31 11:02:25.266019 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178688 ap=1+0 inode=0x3f3b4068 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0]
2015-03-31 11:02:25.266025 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.266039 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295260 pv3295270 ap=8+1 f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 53=52+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266064 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295260 pv3295270 ap=8+1 f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 53=52+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266075 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295260 pv3295270 ap=8+1 f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 53=52+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266086 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178688 ap=1+0 inode=0x3f3b4068 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ae0]
2015-03-31 11:02:25.266103 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407667 cr=0x9ae2a80)
2015-03-31 11:02:25.266111 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cbc00 on [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.266127 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cbc00 on [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.266139 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cbc00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295261 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382355=382348+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:25.266149 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cbc00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178689 cv=170705/170705 ap=5+11+11 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 52=52+0) hs=52+1552,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 11
2015-03-31 11:02:25.266157 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cbc00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295260 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 53=52+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.266169 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10041) auth_unpin by 0x242cbc00 on [dentry #1/test_small/small5/blarg10041 [2,head] auth (dn sync l=1) (dversion lock) v=178688 inode=0x3f3b4068 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770ae0] now 0+0
2015-03-31 11:02:25.266194 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.266196 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.266201 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.266202 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) mark_dirty [inode 1000006b2c3 [2,head] /test_small/small5/blarg10042 auth v178689 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f33d558]
2015-03-31 11:02:25.266213 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10042)  mark_dirty [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178690 v=177672 ap=2+0 inode=0x3f33d558 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0]
2015-03-31 11:02:25.266231 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178690 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 52=52+0) hs=53+1551,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178690
2015-03-31 11:02:25.266240 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) mark_dirty_parent
2015-03-31 11:02:25.266242 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295260 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:01.000000 52=52+0) n(v1 rc2015-03-31 11:03:01.000000 53=52+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266255 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295260 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.266259 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295262 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:01.000000 b422190090565 382355=382348+7)/n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382347=382340+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295262
2015-03-31 11:02:25.266269 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120414 pv120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:00.000000 b422190090565 382348=382340+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.266280 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120416 v=120414 ap=0+7 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:25.266284 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120417 v=120416 cv=119911/119911 dir_auth=0 ap=1+6+7 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:00.000000 b422190196760 382364=382355+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120416
2015-03-31 11:02:25.266295 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53470 pv53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.266312 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178691 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 53=53+0) hs=53+1551,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178691
2015-03-31 11:02:25.266319 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295263 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295263
2015-03-31 11:02:25.266327 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120417 v=120417 cv=119911/119911 dir_auth=0 ap=1+6+7 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:02.000000 b422190196760 382373=382364+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120417
2015-03-31 11:02:25.266336 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c3 [2,head] /test_small/small5/blarg10042 auth v178690 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f33d558]
2015-03-31 11:02:25.266347 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.266349 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27526 client_caps(grant ino 1000006b2c3 1851512 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.266369 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178690 ap=2+0 inode=0x3f33d558 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0]
2015-03-31 11:02:25.266378 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407677 create #1000006026a/blarg10042 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.266389 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c3
2015-03-31 11:02:25.266392 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178690 ap=2+0 inode=0x3f33d558 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0]
2015-03-31 11:02:25.266400 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178690 ap=2+0 inode=0x3f33d558 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0]
2015-03-31 11:02:25.266406 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178690 ap=2+0 inode=0x3f33d558 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0]
2015-03-31 11:02:25.266411 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10042) auth_unpin by 0x6770e18 on [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178690 ap=1+0 inode=0x3f33d558 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0] now 1+0
2015-03-31 11:02:25.266418 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178690 ap=1+0 inode=0x3f33d558 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0]
2015-03-31 11:02:25.266423 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.266442 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.266458 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.266472 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.266484 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.266496 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295262 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 54=53+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266507 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295262 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 54=53+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266518 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295262 pv3295270 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 54=53+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266539 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178690 ap=1+0 inode=0x3f33d558 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770cc0]
2015-03-31 11:02:25.266554 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407677 cr=0x9f7c100)
2015-03-31 11:02:25.266561 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1e00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.266577 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.266588 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x2b0c1e00 on [dir 1 / [2,head] auth v=120417 cv=119911/119911 dir_auth=0 ap=0+5+6 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:02.000000 b422190196760 382373=382364+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 6
2015-03-31 11:02:25.266598 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2b0c1e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295263 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:25.266606 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2b0c1e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178691 cv=170705/170705 ap=4+9+9 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 53=53+0) hs=53+1551,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 9
2015-03-31 11:02:25.266614 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295262 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 54=53+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.266625 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10042) auth_unpin by 0x2b0c1e00 on [dentry #1/test_small/small5/blarg10042 [2,head] auth (dn sync l=1) (dversion lock) v=178690 inode=0x3f33d558 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770cc0] now 0+0
2015-03-31 11:02:25.266647 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.266649 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.266653 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.266666 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) mark_dirty [inode 1000006b2c4 [2,head] /test_small/small5/blarg10043 auth v178691 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.266679 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10043)  mark_dirty [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178692 v=177674 ap=2+0 inode=0x3f3dfd08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0]
2015-03-31 11:02:25.266686 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178692 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 53=53+0) hs=54+1550,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178692
2015-03-31 11:02:25.266695 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) mark_dirty_parent
2015-03-31 11:02:25.266696 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295262 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 53=53+0) n(v1 rc2015-03-31 11:03:02.000000 54=53+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266708 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295262 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.266712 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295264 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295264
2015-03-31 11:02:25.266721 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178693 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 54=54+0) hs=54+1550,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178693
2015-03-31 11:02:25.266728 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295265 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382350+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295265
2015-03-31 11:02:25.266737 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c4 [2,head] /test_small/small5/blarg10043 auth v178692 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3dfd08]
2015-03-31 11:02:25.266747 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.266749 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27527 client_caps(grant ino 1000006b2c4 1851513 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.266768 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178692 ap=2+0 inode=0x3f3dfd08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0]
2015-03-31 11:02:25.266776 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407687 create #1000006026a/blarg10043 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.266790 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c4
2015-03-31 11:02:25.266792 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178692 ap=2+0 inode=0x3f3dfd08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0]
2015-03-31 11:02:25.266800 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178692 ap=2+0 inode=0x3f3dfd08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0]
2015-03-31 11:02:25.266806 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178692 ap=2+0 inode=0x3f3dfd08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0]
2015-03-31 11:02:25.266811 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10043) auth_unpin by 0x6770ff8 on [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178692 ap=1+0 inode=0x3f3dfd08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0] now 1+0
2015-03-31 11:02:25.266818 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178692 ap=1+0 inode=0x3f3dfd08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0]
2015-03-31 11:02:25.266823 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.266836 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295264 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 55=54+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266849 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295264 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 55=54+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266861 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295264 pv3295270 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 55=54+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.266871 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178692 ap=1+0 inode=0x3f3dfd08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6770ea0]
2015-03-31 11:02:25.266886 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407687 cr=0x9298500)
2015-03-31 11:02:25.266893 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1e00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.266909 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1e00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.266920 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd1e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295265 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382350+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:25.266931 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd1e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178693 cv=170705/170705 ap=3+7+7 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 54=54+0) hs=54+1550,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 7
2015-03-31 11:02:25.266949 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295264 pv3295270 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 55=54+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.266959 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10043) auth_unpin by 0x23dd1e00 on [dentry #1/test_small/small5/blarg10043 [2,head] auth (dn sync l=1) (dversion lock) v=178692 inode=0x3f3dfd08 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6770ea0] now 0+0
2015-03-31 11:02:25.266982 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.266984 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.267001 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.267002 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) mark_dirty [inode 1000006b2c5 [2,head] /test_small/small5/blarg10044 auth v178693 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.267013 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10044)  mark_dirty [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178694 v=177676 ap=2+0 inode=0x3f3e5938 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080]
2015-03-31 11:02:25.267020 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178694 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 54=54+0) hs=55+1549,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178694
2015-03-31 11:02:25.267028 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) mark_dirty_parent
2015-03-31 11:02:25.267029 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295264 pv3295270 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 54=54+0) n(v1 rc2015-03-31 11:03:02.000000 55=54+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267042 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295264 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.267046 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295266 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382350+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295266
2015-03-31 11:02:25.267056 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178695 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 55=55+0) hs=55+1549,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178695
2015-03-31 11:02:25.267063 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295267 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382358=382351+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295267
2015-03-31 11:02:25.267072 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c5 [2,head] /test_small/small5/blarg10044 auth v178694 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3e5938]
2015-03-31 11:02:25.267082 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.267085 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27528 client_caps(grant ino 1000006b2c5 1851514 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.267104 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178694 ap=2+0 inode=0x3f3e5938 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080]
2015-03-31 11:02:25.267112 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407697 create #1000006026a/blarg10044 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.267122 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c5
2015-03-31 11:02:25.267124 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178694 ap=2+0 inode=0x3f3e5938 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080]
2015-03-31 11:02:25.267132 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178694 ap=2+0 inode=0x3f3e5938 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080]
2015-03-31 11:02:25.267138 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178694 ap=2+0 inode=0x3f3e5938 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080]
2015-03-31 11:02:25.267143 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10044) auth_unpin by 0x67711d8 on [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178694 ap=1+0 inode=0x3f3e5938 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080] now 1+0
2015-03-31 11:02:25.267149 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178694 ap=1+0 inode=0x3f3e5938 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080]
2015-03-31 11:02:25.267154 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.267168 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295266 pv3295270 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 56=55+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267180 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295266 pv3295270 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 56=55+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267192 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295266 pv3295270 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 56=55+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267202 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178694 ap=1+0 inode=0x3f3e5938 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771080]
2015-03-31 11:02:25.267217 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407697 cr=0x9f79680)
2015-03-31 11:02:25.267224 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca300 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.267240 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca300 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.267251 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242ca300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295267 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382358=382351+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:25.267262 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242ca300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178695 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 55=55+0) hs=55+1549,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:25.267269 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295266 pv3295270 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 56=55+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.267291 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10044) auth_unpin by 0x242ca300 on [dentry #1/test_small/small5/blarg10044 [2,head] auth (dn sync l=1) (dversion lock) v=178694 inode=0x3f3e5938 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771080] now 0+0
2015-03-31 11:02:25.267314 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.267316 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.267332 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.267334 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) mark_dirty [inode 1000006b2c6 [2,head] /test_small/small5/blarg10045 auth v178695 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.267345 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10045)  mark_dirty [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178696 v=177678 ap=2+0 inode=0x3f4b7e10 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260]
2015-03-31 11:02:25.267352 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178696 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 55=55+0) hs=56+1548,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178696
2015-03-31 11:02:25.267360 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) mark_dirty_parent
2015-03-31 11:02:25.267362 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295266 pv3295270 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 55=55+0) n(v1 rc2015-03-31 11:03:02.000000 56=55+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267373 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295266 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.267377 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295268 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382358=382351+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295268
2015-03-31 11:02:25.267386 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178697 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 56=56+0) hs=56+1548,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178697
2015-03-31 11:02:25.267393 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295269 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382359=382352+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295269
2015-03-31 11:02:25.267402 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c6 [2,head] /test_small/small5/blarg10045 auth v178696 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4b7e10]
2015-03-31 11:02:25.267412 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.267415 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27529 client_caps(grant ino 1000006b2c6 1851515 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.267433 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178696 ap=2+0 inode=0x3f4b7e10 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260]
2015-03-31 11:02:25.267441 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407707 create #1000006026a/blarg10045 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.267452 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c6
2015-03-31 11:02:25.267454 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178696 ap=2+0 inode=0x3f4b7e10 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260]
2015-03-31 11:02:25.267462 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178696 ap=2+0 inode=0x3f4b7e10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260]
2015-03-31 11:02:25.267468 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178696 ap=2+0 inode=0x3f4b7e10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260]
2015-03-31 11:02:25.267473 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10045) auth_unpin by 0x67713b8 on [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178696 ap=1+0 inode=0x3f4b7e10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260] now 1+0
2015-03-31 11:02:25.267478 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178696 ap=1+0 inode=0x3f4b7e10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260]
2015-03-31 11:02:25.267484 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.267498 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295268 pv3295270 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 57=56+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267510 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295268 pv3295270 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 57=56+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267521 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295268 pv3295270 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 57=56+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267532 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178696 ap=1+0 inode=0x3f4b7e10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771260]
2015-03-31 11:02:25.267546 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407707 cr=0x60ab480)
2015-03-31 11:02:25.267553 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625a00 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.267570 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625a00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.267580 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2a625a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295269 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382359=382352+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:25.267591 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2a625a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178697 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 56=56+0) hs=56+1548,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:25.267598 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295268 pv3295270 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 57=56+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.267620 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10045) auth_unpin by 0x2a625a00 on [dentry #1/test_small/small5/blarg10045 [2,head] auth (dn sync l=1) (dversion lock) v=178696 inode=0x3f4b7e10 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771260] now 0+0
2015-03-31 11:02:25.267640 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.267642 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.267646 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.267647 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) mark_dirty [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178697 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.267670 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10046)  mark_dirty [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178698 v=177680 ap=2+0 inode=0x3f473e40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440]
2015-03-31 11:02:25.267676 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178698 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 56=56+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178698
2015-03-31 11:02:25.267684 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) mark_dirty_parent
2015-03-31 11:02:25.267685 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295268 pv3295270 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 56=56+0) n(v1 rc2015-03-31 11:03:02.000000 57=56+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267698 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295270 v=3295268 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.267702 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295270 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382359=382352+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295270
2015-03-31 11:02:25.267712 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178699 v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178699
2015-03-31 11:02:25.267720 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295271 v=3295271 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295271
2015-03-31 11:02:25.267729 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.267739 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.267741 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27530 client_caps(grant ino 1000006b2c7 1851516 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.267759 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178698 ap=2+0 inode=0x3f473e40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440]
2015-03-31 11:02:25.267767 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407717 create #1000006026a/blarg10046 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.267777 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c7
2015-03-31 11:02:25.267779 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178698 ap=2+0 inode=0x3f473e40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440]
2015-03-31 11:02:25.267791 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178698 ap=2+0 inode=0x3f473e40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440]
2015-03-31 11:02:25.267796 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178698 ap=2+0 inode=0x3f473e40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440]
2015-03-31 11:02:25.267802 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10046) auth_unpin by 0x6771598 on [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178698 ap=1+0 inode=0x3f473e40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440] now 1+0
2015-03-31 11:02:25.267808 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178698 ap=1+0 inode=0x3f473e40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440]
2015-03-31 11:02:25.267812 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.267827 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.267838 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267850 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267862 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267873 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:25.267875 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.267886 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.267898 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:25.267899 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407721 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.267903 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407721 cr=0xa928f00) #1000006026a
2015-03-31 11:02:25.267905 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.267908 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.267909 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.267920 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407721 cr=0xa928f00)
2015-03-31 11:02:25.267923 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.267949 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.267959 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.267968 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.267982 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.267992 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268002 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.268016 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.268026 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268036 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268047 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268057 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268067 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268077 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268086 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268096 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268107 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31393} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268124 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407721 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.268129 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407721 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.268139 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.268143 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.268147 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31394
2015-03-31 11:02:25.268149 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31394 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.268172 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407721 cr=0xa928f00)
2015-03-31 11:02:25.268181 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.268196 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.268209 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.268231 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.268241 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268252 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268262 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268272 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268282 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268292 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268304 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268313 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268322 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268331 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268341 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a627800 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.268355 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a627800 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.268364 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a627800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.268391 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268402 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268412 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268422 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178698 ap=1+0 inode=0x3f473e40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771440]
2015-03-31 11:02:25.268430 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.268460 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407717 cr=0xa255780)
2015-03-31 11:02:25.268467 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cad00 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.268494 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cad00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.268504 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cad00 on [dir 10000000000 /test_small/ [2,head] auth v=3295271 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:25.268514 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cad00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178699 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:25.268522 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=0+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.268532 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10046) auth_unpin by 0x242cad00 on [dentry #1/test_small/small5/blarg10046 [2,head] auth (dn sync l=1) (dversion lock) v=178698 inode=0x3f473e40 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771440] now 0+0
2015-03-31 11:02:25.268581 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e50 follows 0 op update
2015-03-31 11:02:25.268592 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268606 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.268608 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.268628 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.268629 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268636 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268644 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.268646 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268658 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268667 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268673 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.268675 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268683 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268690 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268693 7fbe406af700  5 mds.0.log _submit_thread 5419612269~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.268696 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268711 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268718 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268723 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268730 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.268740 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.268759 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407722 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.268779 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407722 cr=0x2645ad00)
2015-03-31 11:02:25.268781 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407722 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.268793 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407722 cr=0x2645ad00) #1000006b2c7
2015-03-31 11:02:25.268795 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c7 snap head
2015-03-31 11:02:25.268797 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.268798 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.268812 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407722 cr=0x2645ad00)
2015-03-31 11:02:25.268815 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.268831 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.268842 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.268853 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.268862 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.268876 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.268891 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.268901 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.268912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.268922 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.268943 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.268962 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_pin by 0x23dd0000 on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40] now 1+0
2015-03-31 11:02:25.268972 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.268997 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.269010 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269020 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269029 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269047 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.269056 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.269072 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407722 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.269076 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407722 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.269087 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.269091 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.269094 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.269098 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.269112 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407722 cr=0x2645ad00)
2015-03-31 11:02:25.269131 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.269147 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.269161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269172 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269181 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269191 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.269221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.269230 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.269245 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.269256 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=0+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.269266 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_unpin by 0x23dd0000 on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40] now 0+0
2015-03-31 11:02:25.269302 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407723 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.269319 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407723 cr=0x9ae6400)
2015-03-31 11:02:25.269322 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407723 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.269325 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407723 cr=0x9ae6400) #1000006026a
2015-03-31 11:02:25.269326 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.269327 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.269328 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.269341 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407723 cr=0x9ae6400)
2015-03-31 11:02:25.269344 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.269357 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.269368 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.269377 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.269391 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.269405 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.269414 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.269425 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.269433 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.269454 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.269467 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.269481 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269490 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269500 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269509 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269519 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269529 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31394} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269544 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407723 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.269548 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407723 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.269558 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.269561 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.269566 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31395
2015-03-31 11:02:25.269580 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31395 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.269594 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407723 cr=0x9ae6400)
2015-03-31 11:02:25.269613 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.269629 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.269643 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269653 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.269662 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269672 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269693 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269703 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.269712 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.269726 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.269737 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.309048 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407724 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309070 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407724 cr=0x9ae1b80)
2015-03-31 11:02:25.309075 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407724 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309078 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407724 cr=0x9ae1b80) #1000006026a
2015-03-31 11:02:25.309081 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.309082 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.309083 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.309100 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407724 cr=0x9ae1b80)
2015-03-31 11:02:25.309103 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.309119 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.309130 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.309140 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.309154 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.309168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.309178 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.309189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.309198 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.309208 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.309223 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.309237 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.309247 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.309257 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309267 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309277 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309288 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31395} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309306 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407724 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309310 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407724 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309322 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.309325 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.309330 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31396
2015-03-31 11:02:25.309332 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31396 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.309368 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407724 cr=0x9ae1b80)
2015-03-31 11:02:25.309388 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.309404 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.309418 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.309429 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.309439 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309460 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309489 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.309504 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.309514 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.309555 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e50 follows 0 op update
2015-03-31 11:02:25.309557 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309566 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.309568 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.309583 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.309584 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309590 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309598 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.309600 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309605 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309613 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309618 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.309619 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309625 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309632 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309637 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309643 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.309644 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.309645 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e50 [2,head] /test_small/small1/blarg10046 auth v136910 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b7840]
2015-03-31 11:02:25.309652 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.309665 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407725 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309685 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407725 cr=0x9ae1400)
2015-03-31 11:02:25.309687 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407725 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309690 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407725 cr=0x9ae1400) #1000006b2c7
2015-03-31 11:02:25.309702 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c7 snap head
2015-03-31 11:02:25.309703 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.309704 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.309716 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407725 cr=0x9ae1400)
2015-03-31 11:02:25.309718 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.309743 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.309753 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.309762 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.309770 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.309789 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.309803 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.309812 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.309822 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.309830 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.309839 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40]
2015-03-31 11:02:25.309848 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_pin by 0x23dd0000 on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40] now 1+0
2015-03-31 11:02:25.309857 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.309870 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.309883 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.309892 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.309901 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309910 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.309919 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.309928 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.309942 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407725 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309945 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407725 getattr Xs #1000006b2c7 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.309954 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.309957 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.309962 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:25.309965 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.309978 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407725 cr=0x9ae1400)
2015-03-31 11:02:25.309997 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.310013 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.310027 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.310037 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.310047 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.310057 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.310078 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.310087 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f473e40]
2015-03-31 11:02:25.310097 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.310112 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.310122 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=0+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.310132 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) auth_unpin by 0x23dd0000 on [inode 1000006b2c7 [2,head] /test_small/small5/blarg10046 auth v178698 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f473e40] now 0+0
2015-03-31 11:02:25.310394 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407726 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.310412 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407726 cr=0x682d000)
2015-03-31 11:02:25.310414 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407726 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.310417 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407726 cr=0x682d000) #10000004e56
2015-03-31 11:02:25.310419 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e56 snap head
2015-03-31 11:02:25.310420 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.310421 7fbe462be700 10 mds.0.server ref is [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.310433 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407726 cr=0x682d000)
2015-03-31 11:02:25.310435 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.310450 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.310461 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.310470 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.310476 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.310490 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.310504 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.310514 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.310525 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.310533 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd0000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.310542 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.310547 7fbe462be700 10 mds.0.cache.ino(10000004e56) auth_pin by 0x23dd0000 on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08] now 1+0
2015-03-31 11:02:25.310555 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.310569 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.310583 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.310593 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.310604 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.310613 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.310622 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310629 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310636 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310652 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310677 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407726 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.310680 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407726 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.310690 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.310693 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.310698 7fbe462be700 10 mds.0.cache.ino(10000004e56) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.310700 7fbe462be700 10 mds.0.cache.ino(10000004e56) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.310712 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407726 cr=0x682d000)
2015-03-31 11:02:25.310731 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.310746 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.310759 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.310770 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.310780 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.310791 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.310812 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310819 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310825 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310830 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.310837 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.310852 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.310862 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd0000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.310871 7fbe462be700 10 mds.0.cache.ino(10000004e56) auth_unpin by 0x23dd0000 on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b6f08] now 0+0
2015-03-31 11:02:25.310915 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407727 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.310934 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407727 cr=0x23fbb700)
2015-03-31 11:02:25.310936 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407727 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.310939 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407727 cr=0x23fbb700) #1000006026a
2015-03-31 11:02:25.310941 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.310942 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.310943 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.310956 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407727 cr=0x23fbb700)
2015-03-31 11:02:25.310958 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.310972 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.310982 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.310992 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.311007 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.311022 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.311031 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.311042 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.311050 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.311061 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311075 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311088 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311099 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311109 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311118 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311128 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311138 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31396} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311154 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407727 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311158 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407727 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311178 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.311183 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.311197 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31397
2015-03-31 11:02:25.311200 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31397 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.311213 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407727 cr=0x23fbb700)
2015-03-31 11:02:25.311231 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311246 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311260 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311270 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311279 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311289 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311310 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311319 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311329 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.311343 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.311353 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.311440 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407728 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311458 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407728 cr=0x60a8500)
2015-03-31 11:02:25.311460 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407728 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311463 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407728 cr=0x60a8500) #1000006026a
2015-03-31 11:02:25.311465 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.311466 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.311468 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.311479 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407728 cr=0x60a8500)
2015-03-31 11:02:25.311482 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.311496 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.311505 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.311514 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.311527 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.311541 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.311550 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.311560 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.311568 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.311578 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311591 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311605 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311615 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311625 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311634 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311644 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311653 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31397} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311669 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407728 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311673 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407728 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311683 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.311686 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.311691 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31398
2015-03-31 11:02:25.311694 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31398 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.311707 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407728 cr=0x60a8500)
2015-03-31 11:02:25.311726 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311741 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.311755 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311765 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.311775 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311788 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311798 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311807 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.311828 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.311842 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.311852 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.311887 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407729 lookup #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311903 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407729 cr=0xaeeda00)
2015-03-31 11:02:25.311906 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407729 lookup #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311908 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407729 cr=0xaeeda00) #1000006026a/blarg10047
2015-03-31 11:02:25.311910 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.311912 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10047 [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock) v=177682 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771620]
2015-03-31 11:02:25.311920 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.311922 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407729 lookup #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.311931 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.311941 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407729 cr=0xaeeda00)
2015-03-31 11:02:25.352044 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407730 lookup #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352064 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407730 cr=0x9cc5c80)
2015-03-31 11:02:25.352069 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407730 lookup #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352072 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407730 cr=0x9cc5c80) #1000006026a/blarg10047
2015-03-31 11:02:25.352074 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.352077 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10047 [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock) v=177682 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771620]
2015-03-31 11:02:25.352085 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.352086 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407730 lookup #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352098 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.352111 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407730 cr=0x9cc5c80)
2015-03-31 11:02:25.352144 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407731 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352161 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407731 cr=0x25f4cd80)
2015-03-31 11:02:25.352172 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407731 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352176 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407731 cr=0x25f4cd80) #1000006026a
2015-03-31 11:02:25.352178 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.352179 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.352180 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.352197 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407731 cr=0x25f4cd80)
2015-03-31 11:02:25.352200 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.352216 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.352227 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.352237 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.352251 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.352266 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.352276 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.352287 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.352296 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.352307 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.352322 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.352336 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.352347 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.352357 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352367 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352377 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352387 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31398} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352405 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407731 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352421 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407731 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352430 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.352434 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.352438 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31399
2015-03-31 11:02:25.352440 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31399 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.352454 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407731 cr=0x25f4cd80)
2015-03-31 11:02:25.352473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.352489 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.352504 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.352515 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.352525 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352535 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352545 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352555 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.352564 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.352579 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.352590 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.352627 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407732 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352644 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407732 cr=0x968df00)
2015-03-31 11:02:25.352647 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407732 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352650 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407732 cr=0x968df00) #10000004e56
2015-03-31 11:02:25.352651 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e56 snap head
2015-03-31 11:02:25.352653 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.352654 7fbe462be700 10 mds.0.server ref is [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.352662 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407732 cr=0x968df00)
2015-03-31 11:02:25.352665 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.352679 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.352690 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.352699 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.352704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.352717 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.352731 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.352741 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.352752 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.352760 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd0000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.352769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.352775 7fbe462be700 10 mds.0.cache.ino(10000004e56) auth_pin by 0x23dd0000 on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08] now 1+0
2015-03-31 11:02:25.352803 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.352829 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.352842 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.352863 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.352873 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.352882 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.352891 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.352897 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.352904 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.352909 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.352932 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407732 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352936 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407732 getattr Xs #10000004e56 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.352947 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.352951 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.352955 7fbe462be700 10 mds.0.cache.ino(10000004e56) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.352957 7fbe462be700 10 mds.0.cache.ino(10000004e56) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.352971 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407732 cr=0x968df00)
2015-03-31 11:02:25.352979 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.352995 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.353010 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.353020 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.353031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.353039 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.353049 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.353056 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.353062 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.353068 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b6f08]
2015-03-31 11:02:25.353074 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.353088 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.353099 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd0000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.353108 7fbe462be700 10 mds.0.cache.ino(10000004e56) auth_unpin by 0x23dd0000 on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b6f08] now 0+0
2015-03-31 11:02:25.353141 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407733 readdir #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.353158 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407733 cr=0x8f08f00)
2015-03-31 11:02:25.353159 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407733 readdir #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.353162 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407733 cr=0x8f08f00) #1000006026a
2015-03-31 11:02:25.353164 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.353165 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.353166 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.353179 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407733 cr=0x8f08f00)
2015-03-31 11:02:25.353182 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.353196 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.353206 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.353216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.353230 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.353244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.353253 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.353263 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.353284 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.353294 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.353331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.353344 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.353354 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.353364 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353374 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353384 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353404 7fbe462be700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353415 7fbe462be700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353425 7fbe462be700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (idft sync r=1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31399} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353440 7fbe462be700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:25.353443 7fbe462be700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178699 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.353452 7fbe462be700 10 mds.0.server snapid head
2015-03-31 11:02:25.353456 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.353459 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353463 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.353465 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353470 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.353472 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353475 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.353477 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353480 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.353482 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353485 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.353486 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353489 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.353491 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353494 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.353495 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353498 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.353500 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353503 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.353505 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353508 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.353509 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353512 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.353514 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353517 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.353518 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353522 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.353524 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353527 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.353528 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353531 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.353533 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353536 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.353538 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353540 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.353542 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353545 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.353547 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353550 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.353551 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353554 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.353556 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353558 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.353560 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353563 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.353564 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353567 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.353569 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353572 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.353573 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353576 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.353578 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353580 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.353582 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353585 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.353587 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353589 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.353591 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353594 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.353595 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353598 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.353600 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353603 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.353604 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353607 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.353609 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353612 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.353613 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353616 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.353618 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353620 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.353622 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353624 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.353626 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353629 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.353630 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353633 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.353635 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353638 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.353640 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353642 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.353644 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353647 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.353649 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353651 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.353653 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353656 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.353658 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353660 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.353673 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353676 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.353677 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353680 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.353682 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353684 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.353686 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353700 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.353701 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353704 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.353705 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353708 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.353709 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353712 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.353713 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353716 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.353717 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353720 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.353721 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353724 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.353726 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353728 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.353729 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353732 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.353733 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353778 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407733 readdir #1000006026a 2015-03-31 11:03:02.000000) v2 readdir num=57 bytes=15562 end=1 complete=1
2015-03-31 11:02:25.353787 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407733 readdir #1000006026a 2015-03-31 11:03:02.000000) v2 readdir num=57 end=1 complete=1
2015-03-31 11:02:25.353790 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407733 readdir #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.353800 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.353802 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.353805 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31400
2015-03-31 11:02:25.353807 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31400 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.353819 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407733 cr=0x8f08f00)
2015-03-31 11:02:25.353836 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.353852 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.353864 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.353875 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.353885 7fbe462be700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353896 7fbe462be700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353906 7fbe462be700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353927 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353938 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353947 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.353957 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.353971 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.353982 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.354016 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407734 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.354034 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407734 cr=0xaee8a00)
2015-03-31 11:02:25.354036 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407734 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.354039 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407734 cr=0xaee8a00) #1000006026a
2015-03-31 11:02:25.354041 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.354042 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.354044 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354056 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407734 cr=0xaee8a00)
2015-03-31 11:02:25.354058 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.354072 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.354083 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354092 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.354106 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.354120 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.354129 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.354140 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354149 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.354170 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.354183 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.354197 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.354207 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.354217 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354226 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354236 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354246 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31400} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354263 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407734 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.354267 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407734 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.354277 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.354279 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.354283 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31401
2015-03-31 11:02:25.354285 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31401 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.354298 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407734 cr=0xaee8a00)
2015-03-31 11:02:25.354317 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.354344 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.354357 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.354367 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.354377 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31401} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354398 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31401} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354408 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31401} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354417 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31401} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.354426 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.354440 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.354450 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31401} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.354765 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407735 create #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.354785 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407735 cr=0x236b8000)
2015-03-31 11:02:25.354788 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354802 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:25.354803 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354814 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.354815 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354825 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354835 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354844 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354853 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.354854 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407735 create #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.354857 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10047
2015-03-31 11:02:25.354859 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407735 cr=0x236b8000) #1000006026a/blarg10047
2015-03-31 11:02:25.354861 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10047
2015-03-31 11:02:25.354862 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.354863 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.354865 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178699 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.354872 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178699 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.354878 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10047 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178699 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.354888 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407735 cr=0x236b8000)
2015-03-31 11:02:25.354893 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.354908 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.354918 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354927 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock) v=177682 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771620]
2015-03-31 11:02:25.354934 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.354948 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.354962 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.354971 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.354982 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.354991 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+0 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.355000 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock) v=177682 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771620]
2015-03-31 11:02:25.355015 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10047) auth_pin by 0x23dd0000 on [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock) v=177682 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620] now 1+0
2015-03-31 11:02:25.355021 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock) v=177682 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355026 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177682 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355043 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177682 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355048 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177682 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355053 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177682 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355058 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10047) auth_pin by 0x6771778 on [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177682 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620] now 2+0
2015-03-31 11:02:25.355064 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd0000) [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dn xlock x=1 by 0x23dd0000) (dversion lock w=1 last_client=708310) v=177682 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355069 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355083 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355097 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355110 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355123 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355132 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355142 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355151 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355160 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355169 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355178 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355187 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355196 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355206 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355215 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355224 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355234 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355243 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355252 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355270 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c8 ([1000006b2c9~35a], 858 left)
2015-03-31 11:02:25.355273 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.355275 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c8 [2,head] #1000006b2c8 auth v1 s=0 n() (iversion lock) 0x3f3ef5f0]
2015-03-31 11:02:25.355279 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178700
2015-03-31 11:02:25.355280 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10047)  pre_dirty [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dn xlock x=1 by 0x23dd0000) (dversion lock w=1 last_client=708310) pv=178700 v=177682 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355289 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ef5f0]
2015-03-31 11:02:25.355296 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd0000 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:25.355305 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9322680
2015-03-31 11:02:25.355307 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178701
2015-03-31 11:02:25.355308 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178701 v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.355314 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178701 v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.355321 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ef5f0]
2015-03-31 11:02:25.355327 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.355330 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355343 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295272
2015-03-31 11:02:25.355344 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295272 v=3295270 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.355348 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295272 (current v 3295270)
2015-03-31 11:02:25.355349 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178701 v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.355355 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.355357 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd0000 on [dir 10000000000 /test_small/ [2,head] auth v=3295271 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:25.355366 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2694e0f0
2015-03-31 11:02:25.355368 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295273
2015-03-31 11:02:25.355369 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355380 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355390 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355401 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.355402 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.481523 < 1, stopping
2015-03-31 11:02:25.355406 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355417 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.355421 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295272 v=3295270 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.355425 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31401} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355439 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3ef5f0]
2015-03-31 11:02:25.355446 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.355449 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355456 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.355457 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355465 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355472 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355479 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355485 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355492 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355499 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355505 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355512 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355517 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355523 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355530 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355536 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355543 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355550 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.355559 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.355561 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.355563 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3ef5f0 tracedn 0x6771620
2015-03-31 11:02:25.355565 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd0000) [dentry #1/test_small/small5/blarg10047 [2,head] auth NULL (dn xlock x=1 by 0x23dd0000) (dversion lock w=1 last_client=708310) pv=178700 v=177682 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771620]
2015-03-31 11:02:25.355572 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407735 create #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.355580 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.355583 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31402
2015-03-31 11:02:25.355585 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31402 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.355591 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.355594 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.355596 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) including xattrs version 0
2015-03-31 11:02:25.355632 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355660 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355680 7fbe406af700  5 mds.0.log _submit_thread 5419613128~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.355676 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355699 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.355725 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355736 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355747 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355757 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.355768 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355780 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355795 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355805 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355816 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355826 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.355999 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407736 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.356018 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407736 cr=0x5e8a080)
2015-03-31 11:02:25.356020 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407736 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.356024 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407736 cr=0x5e8a080) #1000006b2c8
2015-03-31 11:02:25.356026 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c8 snap head
2015-03-31 11:02:25.356028 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.356029 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.356042 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407736 cr=0x5e8a080)
2015-03-31 11:02:25.356044 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356059 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356070 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356080 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.356090 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356103 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.356117 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356127 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.356137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356147 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.356157 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ef5f0]
2015-03-31 11:02:25.356167 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_pin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ef5f0] now 1+0
2015-03-31 11:02:25.356177 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356191 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356205 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356216 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356226 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356247 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356257 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.356278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.356293 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407736 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.356297 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407736 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.356306 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.356310 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.356314 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.356316 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.356329 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407736 cr=0x5e8a080)
2015-03-31 11:02:25.356347 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356363 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356377 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356388 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.356439 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.356449 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.356464 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.356474 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.356485 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_unpin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0] now 0+0
2015-03-31 11:02:25.356711 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407737 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.356728 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407737 cr=0x26907080)
2015-03-31 11:02:25.356730 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407737 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.356733 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407737 cr=0x26907080) #1000006b2c8
2015-03-31 11:02:25.356735 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c8 snap head
2015-03-31 11:02:25.356736 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.356738 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.356749 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407737 cr=0x26907080)
2015-03-31 11:02:25.356752 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356767 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356778 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356792 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.356802 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356816 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.356831 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356840 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.356851 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356861 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.356871 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.356881 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_pin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0] now 1+0
2015-03-31 11:02:25.356891 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.356920 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356930 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.356941 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356951 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.356975 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.356997 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.357012 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407737 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.357015 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407737 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.357025 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.357028 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.357033 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.357035 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.357047 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407737 cr=0x26907080)
2015-03-31 11:02:25.357066 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.357082 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.357096 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.357107 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.357117 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.357139 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.357149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.357160 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.357169 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.357184 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.357195 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.357205 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_unpin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0] now 0+0
2015-03-31 11:02:25.360689 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e56 follows 0 op update
2015-03-31 11:02:25.360693 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360704 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.360705 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.360723 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.360724 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360731 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360738 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.360740 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360751 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360771 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360777 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.360779 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360792 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360799 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360806 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360812 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360816 7fbe406af700  5 mds.0.log _submit_thread 5419614768~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.360819 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360824 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360830 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.360839 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.400019 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407738 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.400040 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407738 cr=0x236b9180)
2015-03-31 11:02:25.400042 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407738 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.400046 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407738 cr=0x236b9180) #1000006b2c8
2015-03-31 11:02:25.400048 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c8 snap head
2015-03-31 11:02:25.400050 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.400051 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.400068 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407738 cr=0x236b9180)
2015-03-31 11:02:25.400071 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.400088 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.400100 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.400112 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.400122 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.400136 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.400151 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.400161 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.400172 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.400182 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.400193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.400203 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_pin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0] now 1+0
2015-03-31 11:02:25.400213 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.400229 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.400243 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.400265 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.400275 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.400285 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.400294 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.400303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.400319 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407738 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.400321 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407738 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.400332 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.400335 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.400340 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.400342 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.400355 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407738 cr=0x236b9180)
2015-03-31 11:02:25.400374 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.400391 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.400405 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.400416 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.400426 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.400436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.400457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.400468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.400478 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.400492 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.400503 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.400513 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_unpin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0] now 0+0
2015-03-31 11:02:25.401766 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e56 follows 0 op update
2015-03-31 11:02:25.401770 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401786 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.401789 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.401807 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.401808 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401815 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401823 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.401825 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401830 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401837 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401843 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.401844 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401850 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401857 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401863 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401869 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.401870 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.401871 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e56 [2,head] /test_small/small1/blarg10047 auth v136912 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b6f08]
2015-03-31 11:02:25.401878 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.441111 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407739 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.441133 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407739 cr=0x968a580)
2015-03-31 11:02:25.441137 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407739 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.441141 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407739 cr=0x968a580) #1000006b2c8
2015-03-31 11:02:25.441143 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c8 snap head
2015-03-31 11:02:25.441144 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.441145 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.441162 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407739 cr=0x968a580)
2015-03-31 11:02:25.441165 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441183 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.441195 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.441207 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.441217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441232 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.441246 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.441256 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.441267 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.441278 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.441289 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.441298 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_pin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0] now 1+0
2015-03-31 11:02:25.441309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441348 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.441370 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.441379 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.441389 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.441398 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.441408 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.441422 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407739 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.441426 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407739 getattr Xs #1000006b2c8 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.441437 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.441440 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.441445 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.441447 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.441461 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407739 cr=0x968a580)
2015-03-31 11:02:25.441480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441511 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.441522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.441532 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.441543 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.441564 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.441575 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ef5f0]
2015-03-31 11:02:25.441585 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.441600 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.441610 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.441621 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) auth_unpin by 0x296a6900 on [inode 1000006b2c8 [2,head] {#1000006b2c8 /test_small/small5/blarg10047} auth v178700 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ef5f0] now 0+0
2015-03-31 11:02:25.441905 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407740 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.441923 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407740 cr=0x25f49900)
2015-03-31 11:02:25.441925 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407740 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.441928 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407740 cr=0x25f49900) #10000004f00
2015-03-31 11:02:25.441930 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004f00 snap head
2015-03-31 11:02:25.441931 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.441932 7fbe462be700 10 mds.0.server ref is [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.441943 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407740 cr=0x25f49900)
2015-03-31 11:02:25.441946 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441961 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.441972 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.441981 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.441986 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.441999 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.442013 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.442023 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.442034 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.442043 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x296a6900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.442052 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.442057 7fbe462be700 10 mds.0.cache.ino(10000004f00) auth_pin by 0x296a6900 on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0] now 1+0
2015-03-31 11:02:25.442064 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.442078 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.442092 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.442102 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.442112 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.442122 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.442131 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442138 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442144 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442150 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442175 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407740 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.442190 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407740 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.442200 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.442203 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.442207 7fbe462be700 10 mds.0.cache.ino(10000004f00) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.442209 7fbe462be700 10 mds.0.cache.ino(10000004f00) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.442222 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407740 cr=0x25f49900)
2015-03-31 11:02:25.442240 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.442256 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.442270 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.442280 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.442290 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.442299 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.442320 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442327 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442332 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442339 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.442345 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.442360 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.442370 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x296a6900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.442379 7fbe462be700 10 mds.0.cache.ino(10000004f00) auth_unpin by 0x296a6900 on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b65d0] now 0+0
2015-03-31 11:02:25.442645 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407741 lookup #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.442662 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407741 cr=0x3b0e680)
2015-03-31 11:02:25.442664 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407741 lookup #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.442667 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407741 cr=0x3b0e680) #1000006026a/blarg10048
2015-03-31 11:02:25.442669 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.442671 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10048 [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock) v=177684 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771800]
2015-03-31 11:02:25.442679 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.442680 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407741 lookup #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.442689 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.442700 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407741 cr=0x3b0e680)
2015-03-31 11:02:25.443159 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407742 lookup #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.443178 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407742 cr=0x968af80)
2015-03-31 11:02:25.443180 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407742 lookup #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.443183 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407742 cr=0x968af80) #1000006026a/blarg10048
2015-03-31 11:02:25.443185 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.443188 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10048 [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock) v=177684 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771800]
2015-03-31 11:02:25.443196 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.443197 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407742 lookup #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.443208 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.443221 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407742 cr=0x968af80)
2015-03-31 11:02:25.443668 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407743 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.443690 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407743 cr=0xab83e80)
2015-03-31 11:02:25.443692 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407743 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.443696 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407743 cr=0xab83e80) #10000004f00
2015-03-31 11:02:25.443698 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004f00 snap head
2015-03-31 11:02:25.443699 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.443700 7fbe462be700 10 mds.0.server ref is [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.443713 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407743 cr=0xab83e80)
2015-03-31 11:02:25.443716 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.443733 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.443745 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.443754 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.443761 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.443775 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.443794 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.443804 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.443815 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.443824 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x296a6900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.443834 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.443841 7fbe462be700 10 mds.0.cache.ino(10000004f00) auth_pin by 0x296a6900 on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0] now 1+0
2015-03-31 11:02:25.443848 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.443863 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.443877 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.443888 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.443910 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.443930 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.443939 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.443945 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.443951 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.443957 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.443970 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407743 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.443974 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407743 getattr Xs #10000004f00 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.443985 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.443988 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.443993 7fbe462be700 10 mds.0.cache.ino(10000004f00) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.443995 7fbe462be700 10 mds.0.cache.ino(10000004f00) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.444009 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407743 cr=0xab83e80)
2015-03-31 11:02:25.444028 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444044 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444058 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444069 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444079 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.444088 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.444108 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.444116 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.444122 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.444129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b65d0]
2015-03-31 11:02:25.444135 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.444149 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.444160 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x296a6900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.444169 7fbe462be700 10 mds.0.cache.ino(10000004f00) auth_unpin by 0x296a6900 on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b65d0] now 0+0
2015-03-31 11:02:25.444436 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407744 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.444453 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407744 cr=0x49d3480)
2015-03-31 11:02:25.444456 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407744 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.444459 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407744 cr=0x49d3480) #1000006026a
2015-03-31 11:02:25.444461 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.444463 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.444464 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444479 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407744 cr=0x49d3480)
2015-03-31 11:02:25.444481 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444496 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444506 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444517 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444530 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.444544 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444553 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.444564 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444574 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.444585 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444599 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444613 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444624 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444634 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444644 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444654 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444665 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31402} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444682 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407744 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.444700 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407744 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.444722 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.444724 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.444727 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31403
2015-03-31 11:02:25.444729 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31403 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.444742 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407744 cr=0x49d3480)
2015-03-31 11:02:25.444761 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444776 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.444794 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444804 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.444814 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444825 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444835 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444856 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.444866 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.444881 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.444891 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.445282 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407745 create #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.445302 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407745 cr=0x43d3480)
2015-03-31 11:02:25.445305 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407745 create #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.445308 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10048
2015-03-31 11:02:25.445309 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407745 cr=0x43d3480) #1000006026a/blarg10048
2015-03-31 11:02:25.445311 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10048
2015-03-31 11:02:25.445313 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.445314 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.445316 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178701 v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.445325 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178701 v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.445334 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10048 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178701 v=178699 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.445344 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407745 cr=0x43d3480)
2015-03-31 11:02:25.445350 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.445368 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445380 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445392 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock) v=177684 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771800]
2015-03-31 11:02:25.445399 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.445413 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.445428 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445438 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.445449 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445460 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.445470 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock) v=177684 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771800]
2015-03-31 11:02:25.445475 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10048) auth_pin by 0x296a6900 on [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock) v=177684 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800] now 1+0
2015-03-31 11:02:25.445481 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock) v=177684 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.445487 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177684 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.445504 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177684 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.445509 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177684 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.445514 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177684 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.445532 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10048) auth_pin by 0x6771958 on [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177684 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800] now 2+0
2015-03-31 11:02:25.445537 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x296a6900) [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dn xlock x=1 by 0x296a6900) (dversion lock w=1 last_client=708310) v=177684 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.445543 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.445557 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.445571 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.445583 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.445596 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445606 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445616 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445625 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445635 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445644 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445654 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445664 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445673 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445682 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445692 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445702 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445711 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445720 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445739 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2c9 ([1000006b2ca~359], 857 left)
2015-03-31 11:02:25.445741 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.445743 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2c9 [2,head] #1000006b2c9 auth v1 s=0 n() (iversion lock) 0x3f46a188]
2015-03-31 11:02:25.445747 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178702
2015-03-31 11:02:25.445748 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10048)  pre_dirty [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dn xlock x=1 by 0x296a6900) (dversion lock w=1 last_client=708310) pv=178702 v=177684 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.445756 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f46a188]
2015-03-31 11:02:25.445763 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x296a6900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178702 v=178699 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:25.445771 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0xa06b910
2015-03-31 11:02:25.445773 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178703
2015-03-31 11:02:25.445774 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178703 v=178699 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.445780 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178703 v=178699 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.445792 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f46a188]
2015-03-31 11:02:25.445798 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.445800 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295272 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445814 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295274
2015-03-31 11:02:25.445815 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295274 v=3295270 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.445819 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295274 (current v 3295270)
2015-03-31 11:02:25.445821 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178703 v=178699 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.445827 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.445828 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x296a6900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295274 v=3295271 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:25.445836 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa06f380
2015-03-31 11:02:25.445837 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295275
2015-03-31 11:02:25.445838 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445848 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445859 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445869 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.445870 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.571991 < 1, stopping
2015-03-31 11:02:25.445875 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.445885 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.445889 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295274 v=3295270 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.445893 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31403} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.445906 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f46a188]
2015-03-31 11:02:25.445913 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.445916 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f46a188]
2015-03-31 11:02:25.445923 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.445925 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445932 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445939 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445945 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445952 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445959 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445965 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445972 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445978 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445984 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445990 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.445997 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.446004 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.446010 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.446015 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f46a188]
2015-03-31 11:02:25.446025 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.446026 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.446028 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f46a188 tracedn 0x6771800
2015-03-31 11:02:25.446030 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x296a6900) [dentry #1/test_small/small5/blarg10048 [2,head] auth NULL (dn xlock x=1 by 0x296a6900) (dversion lock w=1 last_client=708310) pv=178702 v=177684 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771800]
2015-03-31 11:02:25.446037 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407745 create #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.446045 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.446049 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31404
2015-03-31 11:02:25.446051 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31404 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.446056 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.446059 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.446062 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) including xattrs version 0
2015-03-31 11:02:25.446098 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446127 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446142 7fbe406af700  5 mds.0.log _submit_thread 5419615627~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.446142 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446154 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446180 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446192 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446203 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446213 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446223 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446235 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446246 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446257 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446267 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446277 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446499 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407746 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.446518 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407746 cr=0x968e900)
2015-03-31 11:02:25.446521 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407746 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.446525 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407746 cr=0x968e900) #1000006b2c9
2015-03-31 11:02:25.446526 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c9 snap head
2015-03-31 11:02:25.446528 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.446529 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f46a188]
2015-03-31 11:02:25.446542 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407746 cr=0x968e900)
2015-03-31 11:02:25.446545 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446560 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446570 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446581 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f46a188]
2015-03-31 11:02:25.446590 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446604 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.446618 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446628 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.446639 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446649 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.446659 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f46a188]
2015-03-31 11:02:25.446669 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_pin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f46a188] now 1+0
2015-03-31 11:02:25.446678 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446693 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446707 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446729 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446739 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446764 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.446789 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.446805 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407746 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.446809 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407746 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.446819 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.446822 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.446826 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.446829 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.446842 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407746 cr=0x968e900)
2015-03-31 11:02:25.446861 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446877 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.446890 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446901 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.446910 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446921 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.446942 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.446952 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.446962 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.446976 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.446987 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.446997 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_unpin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188] now 0+0
2015-03-31 11:02:25.447236 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407747 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.447253 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407747 cr=0x25f48a00)
2015-03-31 11:02:25.447257 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407747 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.447260 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407747 cr=0x25f48a00) #1000006b2c9
2015-03-31 11:02:25.447261 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c9 snap head
2015-03-31 11:02:25.447263 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.447264 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.447277 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407747 cr=0x25f48a00)
2015-03-31 11:02:25.447279 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.447294 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.447305 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.447316 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.447325 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.447339 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.447353 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.447363 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.447373 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.447382 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.447393 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.447402 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_pin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188] now 1+0
2015-03-31 11:02:25.447412 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.447427 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.447441 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.447451 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.447462 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.447471 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.447481 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.447501 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.447529 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407747 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.447532 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407747 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.447541 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.447544 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.447547 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.447549 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.447562 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407747 cr=0x25f48a00)
2015-03-31 11:02:25.447581 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.447596 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.447610 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.447620 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.447641 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.447651 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.447662 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.447672 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.447682 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.447696 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.447707 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.447717 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_unpin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188] now 0+0
2015-03-31 11:02:25.451337 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004f00 follows 0 op update
2015-03-31 11:02:25.451340 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451351 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.451353 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.451371 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.451372 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451379 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451387 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.451389 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451400 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451420 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451427 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.451430 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451438 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451441 7fbe406af700  5 mds.0.log _submit_thread 5419617267~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.451445 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451452 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451457 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451463 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451469 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451475 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.451485 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.491024 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407748 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.491045 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407748 cr=0x26907580)
2015-03-31 11:02:25.491050 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407748 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.491054 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407748 cr=0x26907580) #1000006b2c9
2015-03-31 11:02:25.491056 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c9 snap head
2015-03-31 11:02:25.491058 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.491059 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.491075 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407748 cr=0x26907580)
2015-03-31 11:02:25.491078 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.491096 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.491108 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.491120 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.491130 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.491145 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.491159 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.491169 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.491180 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.491190 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.491201 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.491211 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_pin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188] now 1+0
2015-03-31 11:02:25.491221 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.491236 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.491261 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.491283 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.491293 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.491302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.491312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.491321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.491337 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407748 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.491341 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407748 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.491351 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.491354 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.491359 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.491362 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.491375 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407748 cr=0x26907580)
2015-03-31 11:02:25.491394 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.491410 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.491424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.491435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.491445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.491456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.491477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.491488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.491497 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.491512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.491523 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.491534 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_unpin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188] now 0+0
2015-03-31 11:02:25.492823 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004f00 follows 0 op update
2015-03-31 11:02:25.492827 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492838 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.492840 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.492858 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.492859 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492866 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492874 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.492876 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492881 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492889 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492894 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.492895 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492903 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492910 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492915 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492921 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.492922 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.492924 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004f00 [2,head] /test_small/small1/blarg10048 auth v136914 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b65d0]
2015-03-31 11:02:25.492931 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.532023 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407749 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.532044 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407749 cr=0x26903980)
2015-03-31 11:02:25.532049 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407749 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.532052 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407749 cr=0x26903980) #1000006b2c9
2015-03-31 11:02:25.532054 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2c9 snap head
2015-03-31 11:02:25.532056 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.532057 7fbe462be700 10 mds.0.server ref is [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.532073 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407749 cr=0x26903980)
2015-03-31 11:02:25.532076 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532094 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532106 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.532118 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.532128 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532142 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.532157 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532167 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.532178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.532188 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.532199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.532209 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_pin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188] now 1+0
2015-03-31 11:02:25.532220 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532234 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532260 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532281 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532291 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.532301 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.532310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.532319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.532335 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407749 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.532339 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407749 getattr Xs #1000006b2c9 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.532349 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.532353 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.532357 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.532360 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.532373 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407749 cr=0x26903980)
2015-03-31 11:02:25.532393 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532409 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532434 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532444 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.532466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.532477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.532488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f46a188]
2015-03-31 11:02:25.532497 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.532512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.532523 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.532533 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) auth_unpin by 0x23dd4600 on [inode 1000006b2c9 [2,head] {#1000006b2c9 /test_small/small5/blarg10048} auth v178702 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f46a188] now 0+0
2015-03-31 11:02:25.532808 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407750 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.532826 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407750 cr=0x25f4b980)
2015-03-31 11:02:25.532828 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407750 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.532831 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407750 cr=0x25f4b980) #10000004e5f
2015-03-31 11:02:25.532833 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5f snap head
2015-03-31 11:02:25.532834 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.532835 7fbe462be700 10 mds.0.server ref is [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.532847 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407750 cr=0x25f4b980)
2015-03-31 11:02:25.532850 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532865 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532875 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.532884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.532891 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532904 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.532918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.532928 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.532938 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.532947 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd4600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.532956 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.532961 7fbe462be700 10 mds.0.cache.ino(10000004e5f) auth_pin by 0x23dd4600 on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98] now 1+0
2015-03-31 11:02:25.532968 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532982 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.532996 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.533006 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.533016 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.533026 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.533035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533042 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533058 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533064 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533089 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407750 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.533093 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407750 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.533103 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.533106 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.533110 7fbe462be700 10 mds.0.cache.ino(10000004e5f) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.533112 7fbe462be700 10 mds.0.cache.ino(10000004e5f) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.533125 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407750 cr=0x25f4b980)
2015-03-31 11:02:25.533144 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.533160 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.533174 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.533185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.533195 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.533204 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.533224 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533231 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533238 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533244 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.533250 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.533265 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.533276 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd4600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.533285 7fbe462be700 10 mds.0.cache.ino(10000004e5f) auth_unpin by 0x23dd4600 on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b5c98] now 0+0
2015-03-31 11:02:25.533655 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407751 lookup #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.533676 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407751 cr=0x43d0280)
2015-03-31 11:02:25.533678 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407751 lookup #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.533681 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407751 cr=0x43d0280) #1000006026a/blarg10049
2015-03-31 11:02:25.533683 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.533686 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10049 [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock) v=177686 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67719e0]
2015-03-31 11:02:25.533695 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.533696 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407751 lookup #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.533708 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.533720 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407751 cr=0x43d0280)
2015-03-31 11:02:25.534186 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407752 lookup #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.534206 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407752 cr=0x2645aa80)
2015-03-31 11:02:25.534208 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407752 lookup #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.534211 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407752 cr=0x2645aa80) #1000006026a/blarg10049
2015-03-31 11:02:25.534213 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.534216 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10049 [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock) v=177686 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67719e0]
2015-03-31 11:02:25.534224 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.534225 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407752 lookup #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.534238 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.534250 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407752 cr=0x2645aa80)
2015-03-31 11:02:25.534714 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407753 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.534736 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407753 cr=0xab85000)
2015-03-31 11:02:25.534738 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407753 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.534741 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407753 cr=0xab85000) #10000004e5f
2015-03-31 11:02:25.534743 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5f snap head
2015-03-31 11:02:25.534745 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.534746 7fbe462be700 10 mds.0.server ref is [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.534757 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407753 cr=0xab85000)
2015-03-31 11:02:25.534760 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.534778 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.534794 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.534804 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.534810 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.534824 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.534839 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.534848 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.534860 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.534869 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd4600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.534878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.534884 7fbe462be700 10 mds.0.cache.ino(10000004e5f) auth_pin by 0x23dd4600 on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98] now 1+0
2015-03-31 11:02:25.534891 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.534906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.534920 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.534941 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.534963 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.534971 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.534979 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.534984 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.534989 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.534995 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.535008 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407753 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.535011 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407753 getattr Xs #10000004e5f 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.535022 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.535025 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.535030 7fbe462be700 10 mds.0.cache.ino(10000004e5f) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.535032 7fbe462be700 10 mds.0.cache.ino(10000004e5f) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.535046 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407753 cr=0xab85000)
2015-03-31 11:02:25.535065 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535081 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535095 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535106 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535116 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.535124 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.535144 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.535151 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.535158 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.535165 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b5c98]
2015-03-31 11:02:25.535170 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.535184 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.535195 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd4600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.535204 7fbe462be700 10 mds.0.cache.ino(10000004e5f) auth_unpin by 0x23dd4600 on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b5c98] now 0+0
2015-03-31 11:02:25.535574 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407754 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.535594 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407754 cr=0x26902f80)
2015-03-31 11:02:25.535598 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407754 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.535601 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407754 cr=0x26902f80) #1000006026a
2015-03-31 11:02:25.535603 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.535605 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.535606 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535624 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407754 cr=0x26902f80)
2015-03-31 11:02:25.535627 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535644 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535655 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535666 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535680 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.535694 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535704 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.535715 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535725 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.535736 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535751 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535765 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535776 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535801 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535811 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535832 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535842 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31404} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535858 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407754 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.535862 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407754 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.535873 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.535876 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.535880 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31405
2015-03-31 11:02:25.535882 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31405 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.535896 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407754 cr=0x26902f80)
2015-03-31 11:02:25.535915 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535931 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.535945 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535956 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.535966 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535988 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.535998 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536008 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536018 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.536032 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.536042 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.536424 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407755 create #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.536444 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407755 cr=0x43d3e80)
2015-03-31 11:02:25.536447 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407755 create #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.536450 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10049
2015-03-31 11:02:25.536451 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407755 cr=0x43d3e80) #1000006026a/blarg10049
2015-03-31 11:02:25.536453 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10049
2015-03-31 11:02:25.536454 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.536456 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.536457 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178703 v=178699 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.536467 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178703 v=178699 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.536474 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10049 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178703 v=178699 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.536485 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407755 cr=0x43d3e80)
2015-03-31 11:02:25.536491 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.536510 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536522 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536533 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock) v=177686 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536540 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.536555 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.536569 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536578 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.536589 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536599 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.536610 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock) v=177686 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536615 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10049) auth_pin by 0x23dd4600 on [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock) v=177686 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0] now 1+0
2015-03-31 11:02:25.536621 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock) v=177686 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536626 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177686 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536632 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177686 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536647 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177686 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536652 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177686 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536657 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10049) auth_pin by 0x6771b38 on [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177686 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0] now 2+0
2015-03-31 11:02:25.536674 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd4600) [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dn xlock x=1 by 0x23dd4600) (dversion lock w=1 last_client=708310) v=177686 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536679 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.536694 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.536707 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.536720 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.536732 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536742 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536751 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536761 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536770 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536780 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536794 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536803 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536812 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536822 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536831 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536840 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536849 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536859 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536878 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ca ([1000006b2cb~358], 856 left)
2015-03-31 11:02:25.536881 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.536882 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ca [2,head] #1000006b2ca auth v1 s=0 n() (iversion lock) 0x3f3a9a78]
2015-03-31 11:02:25.536886 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178704
2015-03-31 11:02:25.536887 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10049)  pre_dirty [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dn xlock x=1 by 0x23dd4600) (dversion lock w=1 last_client=708310) pv=178704 v=177686 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.536895 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a9a78]
2015-03-31 11:02:25.536902 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd4600 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178704 v=178699 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:25.536912 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x47e1d90
2015-03-31 11:02:25.536913 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178705
2015-03-31 11:02:25.536914 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178705 v=178699 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.536920 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178705 v=178699 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.536927 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a9a78]
2015-03-31 11:02:25.536932 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.536934 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295274 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.536948 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295276
2015-03-31 11:02:25.536949 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295276 v=3295270 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.536953 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295276 (current v 3295270)
2015-03-31 11:02:25.536954 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178705 v=178699 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.536962 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.536964 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd4600 on [dir 10000000000 /test_small/ [2,head] auth pv=3295276 v=3295271 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:25.536973 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x28ed0000
2015-03-31 11:02:25.536974 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295277
2015-03-31 11:02:25.536976 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536987 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.536997 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537007 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.537009 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.663129 < 1, stopping
2015-03-31 11:02:25.537013 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537023 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.537026 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295276 v=3295270 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.537032 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31405} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537046 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3a9a78]
2015-03-31 11:02:25.537052 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.537055 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537063 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.537064 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537072 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537078 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537085 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537092 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537099 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537105 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537111 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537117 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537123 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537129 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537136 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537143 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537149 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537156 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537165 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.537166 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.537168 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3a9a78 tracedn 0x67719e0
2015-03-31 11:02:25.537171 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd4600) [dentry #1/test_small/small5/blarg10049 [2,head] auth NULL (dn xlock x=1 by 0x23dd4600) (dversion lock w=1 last_client=708310) pv=178704 v=177686 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67719e0]
2015-03-31 11:02:25.537177 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407755 create #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.537186 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.537189 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31406
2015-03-31 11:02:25.537191 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31406 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.537197 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.537199 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.537201 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) including xattrs version 0
2015-03-31 11:02:25.537238 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537266 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537283 7fbe406af700  5 mds.0.log _submit_thread 5419618126~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.537281 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537293 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537307 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537329 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537340 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537350 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537359 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537371 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537383 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537393 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537404 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537414 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537660 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407756 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.537681 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407756 cr=0x8f09180)
2015-03-31 11:02:25.537683 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407756 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.537686 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407756 cr=0x8f09180) #1000006b2ca
2015-03-31 11:02:25.537688 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ca snap head
2015-03-31 11:02:25.537689 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.537690 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537702 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407756 cr=0x8f09180)
2015-03-31 11:02:25.537705 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537721 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537731 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537742 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537752 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537766 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.537780 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537794 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.537804 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537814 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.537825 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a9a78]
2015-03-31 11:02:25.537834 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_pin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a9a78] now 1+0
2015-03-31 11:02:25.537844 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537859 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.537873 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537884 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.537894 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.537930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.537951 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.537966 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407756 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.537970 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407756 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.537980 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.537985 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.537988 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.537992 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.538005 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407756 cr=0x8f09180)
2015-03-31 11:02:25.538024 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538040 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538053 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538064 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538074 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538084 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538105 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.538116 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.538125 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.538140 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.538151 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.538161 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_unpin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78] now 0+0
2015-03-31 11:02:25.538401 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407757 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.538419 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407757 cr=0x9cc2f80)
2015-03-31 11:02:25.538421 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407757 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.538424 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407757 cr=0x9cc2f80) #1000006b2ca
2015-03-31 11:02:25.538426 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ca snap head
2015-03-31 11:02:25.538427 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.538428 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.538441 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407757 cr=0x9cc2f80)
2015-03-31 11:02:25.538444 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538460 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538470 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538481 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.538490 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538504 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.538518 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538527 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.538537 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538548 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.538558 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.538567 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_pin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78] now 1+0
2015-03-31 11:02:25.538577 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538592 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538606 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538617 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538627 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538638 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538658 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.538680 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.538694 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407757 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.538698 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407757 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.538708 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.538711 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.538714 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.538717 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.538729 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407757 cr=0x9cc2f80)
2015-03-31 11:02:25.538748 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538763 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.538777 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538791 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.538812 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538822 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.538832 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.538843 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.538853 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.538867 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.538878 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.538888 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_unpin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78] now 0+0
2015-03-31 11:02:25.542681 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5f follows 0 op update
2015-03-31 11:02:25.542684 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542695 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.542697 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.542715 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.542716 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542722 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542730 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.542732 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542743 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542762 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542769 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.542772 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542780 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542790 7fbe406af700  5 mds.0.log _submit_thread 5419619766~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.542792 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542798 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542804 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542810 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542815 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542822 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.542831 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.582029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407758 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.582051 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407758 cr=0xaee9680)
2015-03-31 11:02:25.582055 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407758 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.582059 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407758 cr=0xaee9680) #1000006b2ca
2015-03-31 11:02:25.582061 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ca snap head
2015-03-31 11:02:25.582062 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.582063 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.582080 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407758 cr=0xaee9680)
2015-03-31 11:02:25.582083 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.582100 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.582112 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.582123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.582134 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.582148 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.582162 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.582172 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.582183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.582194 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.582205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.582214 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_pin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78] now 1+0
2015-03-31 11:02:25.582225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.582240 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.582255 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.582276 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.582297 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.582307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.582317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.582326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.582341 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407758 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.582345 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407758 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.582356 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.582359 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.582363 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.582366 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.582380 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407758 cr=0xaee9680)
2015-03-31 11:02:25.582399 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.582415 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.582429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.582440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.582450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.582461 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.582482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.582493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.582502 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.582517 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.582528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.582538 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_unpin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78] now 0+0
2015-03-31 11:02:25.583682 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5f follows 0 op update
2015-03-31 11:02:25.583685 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583697 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.583699 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.583717 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.583718 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583725 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583733 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.583735 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583740 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583747 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583753 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.583754 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583761 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583768 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583773 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583779 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.583780 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.583781 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e5f [2,head] /test_small/small1/blarg10049 auth v136916 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b5c98]
2015-03-31 11:02:25.583795 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.623026 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407759 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.623048 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407759 cr=0x940ee00)
2015-03-31 11:02:25.623052 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407759 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.623056 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407759 cr=0x940ee00) #1000006b2ca
2015-03-31 11:02:25.623058 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ca snap head
2015-03-31 11:02:25.623059 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.623060 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.623077 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407759 cr=0x940ee00)
2015-03-31 11:02:25.623080 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623097 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623109 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.623121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.623131 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623145 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.623160 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623170 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.623181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.623191 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.623202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.623212 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_pin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78] now 1+0
2015-03-31 11:02:25.623222 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623237 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623252 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623284 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623294 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.623303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.623313 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.623322 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.623337 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407759 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.623341 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407759 getattr Xs #1000006b2ca 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.623352 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.623356 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.623360 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.623363 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.623377 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407759 cr=0x940ee00)
2015-03-31 11:02:25.623396 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623413 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623438 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623448 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.623470 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.623480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.623491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a9a78]
2015-03-31 11:02:25.623501 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.623515 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.623526 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.623537 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) auth_unpin by 0x23dd2d00 on [inode 1000006b2ca [2,head] {#1000006b2ca /test_small/small5/blarg10049} auth v178704 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a9a78] now 0+0
2015-03-31 11:02:25.623818 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407760 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.623836 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407760 cr=0x968e180)
2015-03-31 11:02:25.623838 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407760 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.623840 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407760 cr=0x968e180) #100000003f1
2015-03-31 11:02:25.623842 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f1 snap head
2015-03-31 11:02:25.623846 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.623847 7fbe462be700 10 mds.0.server ref is [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.623859 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407760 cr=0x968e180)
2015-03-31 11:02:25.623862 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623877 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623887 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.623896 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.623902 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623915 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.623930 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.623939 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.623950 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.623958 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.623968 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.623972 7fbe462be700 10 mds.0.cache.ino(100000003f1) auth_pin by 0x23dd2d00 on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8] now 1+0
2015-03-31 11:02:25.623979 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.623993 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.624007 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.624017 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.624028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.624037 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.624046 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624053 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624060 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624065 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624090 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407760 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.624106 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407760 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.624116 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.624119 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.624123 7fbe462be700 10 mds.0.cache.ino(100000003f1) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.624126 7fbe462be700 10 mds.0.cache.ino(100000003f1) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.624138 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407760 cr=0x968e180)
2015-03-31 11:02:25.624157 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.624172 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.624187 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.624197 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.624208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.624216 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.624237 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624243 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624255 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.624261 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.624275 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.624286 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.624295 7fbe462be700 10 mds.0.cache.ino(100000003f1) auth_unpin by 0x23dd2d00 on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aedf8] now 0+0
2015-03-31 11:02:25.624672 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407761 lookup #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.624692 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407761 cr=0x9cc5280)
2015-03-31 11:02:25.624695 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407761 lookup #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.624698 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407761 cr=0x9cc5280) #1000006026a/blarg1005
2015-03-31 11:02:25.624700 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.624703 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1005 [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock) v=177688 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.624712 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.624713 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407761 lookup #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.624724 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.624735 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407761 cr=0x9cc5280)
2015-03-31 11:02:25.625164 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407762 lookup #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.625183 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407762 cr=0x2941d500)
2015-03-31 11:02:25.625186 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407762 lookup #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.625189 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407762 cr=0x2941d500) #1000006026a/blarg1005
2015-03-31 11:02:25.625191 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.625193 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1005 [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock) v=177688 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.625202 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.625203 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407762 lookup #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.625214 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.625227 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407762 cr=0x2941d500)
2015-03-31 11:02:25.625653 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407763 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.625675 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407763 cr=0x940c380)
2015-03-31 11:02:25.625679 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407763 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.625682 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407763 cr=0x940c380) #100000003f1
2015-03-31 11:02:25.625684 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f1 snap head
2015-03-31 11:02:25.625685 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.625686 7fbe462be700 10 mds.0.server ref is [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.625699 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407763 cr=0x940c380)
2015-03-31 11:02:25.625702 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.625719 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.625731 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.625740 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.625747 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.625761 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.625775 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.625791 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.625802 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.625811 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.625820 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.625827 7fbe462be700 10 mds.0.cache.ino(100000003f1) auth_pin by 0x23dd2d00 on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8] now 1+0
2015-03-31 11:02:25.625835 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.625849 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.625874 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.625884 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.625905 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.625914 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.625922 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.625929 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.625935 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.625941 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.625954 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407763 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.625958 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407763 getattr Xs #100000003f1 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.625969 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.625972 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.625975 7fbe462be700 10 mds.0.cache.ino(100000003f1) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.625977 7fbe462be700 10 mds.0.cache.ino(100000003f1) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.625992 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407763 cr=0x940c380)
2015-03-31 11:02:25.626011 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626027 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626042 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626052 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626062 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.626071 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.626092 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.626099 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.626106 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.626112 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9aedf8]
2015-03-31 11:02:25.626117 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.626132 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.626143 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2d00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.626152 7fbe462be700 10 mds.0.cache.ino(100000003f1) auth_unpin by 0x23dd2d00 on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9aedf8] now 0+0
2015-03-31 11:02:25.626418 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407764 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.626435 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407764 cr=0x940fa80)
2015-03-31 11:02:25.626438 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407764 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.626441 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407764 cr=0x940fa80) #1000006026a
2015-03-31 11:02:25.626443 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.626444 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.626445 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626460 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407764 cr=0x940fa80)
2015-03-31 11:02:25.626463 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626477 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626487 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626498 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626512 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.626526 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626535 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.626546 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626556 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.626567 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626581 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626595 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626605 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626616 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626626 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626637 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626647 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31406} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626678 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407764 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.626682 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407764 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.626705 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.626708 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.626711 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31407
2015-03-31 11:02:25.626713 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31407 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.626725 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407764 cr=0x940fa80)
2015-03-31 11:02:25.626744 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626759 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.626773 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626788 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.626798 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626808 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626829 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626839 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.626849 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.626863 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.626873 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.627259 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407765 create #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.627280 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407765 cr=0x940eb80)
2015-03-31 11:02:25.627282 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407765 create #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.627285 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1005
2015-03-31 11:02:25.627287 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407765 cr=0x940eb80) #1000006026a/blarg1005
2015-03-31 11:02:25.627289 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1005
2015-03-31 11:02:25.627291 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.627292 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.627294 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178705 v=178699 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.627303 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178705 v=178699 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.627312 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1005 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178705 v=178699 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.627323 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407765 cr=0x940eb80)
2015-03-31 11:02:25.627329 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.627347 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627359 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627371 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock) v=177688 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627378 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.627392 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.627406 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627416 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.627428 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627438 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.627449 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock) v=177688 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627454 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1005) auth_pin by 0x23dd2d00 on [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock) v=177688 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0] now 1+0
2015-03-31 11:02:25.627460 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock) v=177688 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627465 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177688 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627482 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177688 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627488 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177688 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627505 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177688 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627510 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1005) auth_pin by 0x6771d18 on [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177688 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0] now 2+0
2015-03-31 11:02:25.627515 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd2d00) [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dn xlock x=1 by 0x23dd2d00) (dversion lock w=1 last_client=708310) v=177688 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627520 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.627535 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.627548 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.627561 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.627574 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627584 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627593 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627603 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627612 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627622 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627632 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627642 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627652 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627661 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627671 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627680 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627690 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627700 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627718 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2cb ([1000006b2cc~357], 855 left)
2015-03-31 11:02:25.627721 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.627722 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2cb [2,head] #1000006b2cb auth v1 s=0 n() (iversion lock) 0x3f3341d8]
2015-03-31 11:02:25.627726 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178706
2015-03-31 11:02:25.627728 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1005)  pre_dirty [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dn xlock x=1 by 0x23dd2d00) (dversion lock w=1 last_client=708310) pv=178706 v=177688 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.627735 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3341d8]
2015-03-31 11:02:25.627742 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd2d00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178706 v=178699 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:25.627751 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9685f90
2015-03-31 11:02:25.627753 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178707
2015-03-31 11:02:25.627754 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178707 v=178699 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.627760 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178707 v=178699 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.627767 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3341d8]
2015-03-31 11:02:25.627773 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.627775 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295276 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627793 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295278
2015-03-31 11:02:25.627794 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295278 v=3295270 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.627798 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295278 (current v 3295270)
2015-03-31 11:02:25.627799 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178707 v=178699 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.627806 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.627808 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd2d00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295278 v=3295271 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:25.627817 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924ff30
2015-03-31 11:02:25.627819 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295279
2015-03-31 11:02:25.627820 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627831 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627841 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627852 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.627853 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.75397 < 1, stopping
2015-03-31 11:02:25.627857 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.627868 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.627871 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295278 v=3295270 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.627877 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31407} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.627891 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3341d8]
2015-03-31 11:02:25.627898 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.627901 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627907 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.627908 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627915 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627922 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627928 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627935 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627941 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627948 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627955 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627961 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627967 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627974 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627980 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627987 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627992 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.627999 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3341d8]
2015-03-31 11:02:25.628008 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.628010 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.628012 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3341d8 tracedn 0x6771bc0
2015-03-31 11:02:25.628014 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd2d00) [dentry #1/test_small/small5/blarg1005 [2,head] auth NULL (dn xlock x=1 by 0x23dd2d00) (dversion lock w=1 last_client=708310) pv=178706 v=177688 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771bc0]
2015-03-31 11:02:25.628020 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407765 create #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.628029 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.628032 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31408
2015-03-31 11:02:25.628034 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31408 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.628040 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.628043 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.628045 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) including xattrs version 0
2015-03-31 11:02:25.628083 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628112 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628127 7fbe406af700  5 mds.0.log _submit_thread 5419620625~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.628128 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628140 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628166 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628177 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628189 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628199 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628209 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628222 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628233 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628244 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628255 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628265 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628494 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407766 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.628513 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407766 cr=0xa257300)
2015-03-31 11:02:25.628516 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407766 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.628519 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407766 cr=0xa257300) #1000006b2cb
2015-03-31 11:02:25.628521 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cb snap head
2015-03-31 11:02:25.628523 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.628524 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3341d8]
2015-03-31 11:02:25.628537 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407766 cr=0xa257300)
2015-03-31 11:02:25.628540 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628555 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628566 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628576 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3341d8]
2015-03-31 11:02:25.628586 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628600 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.628615 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628624 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.628635 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628645 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.628655 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3341d8]
2015-03-31 11:02:25.628665 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_pin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3341d8] now 1+0
2015-03-31 11:02:25.628675 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628690 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628704 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628715 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628725 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628735 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628759 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.628780 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.628798 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407766 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.628802 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407766 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.628812 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.628815 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.628818 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.628821 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.628834 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407766 cr=0xa257300)
2015-03-31 11:02:25.628852 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628868 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.628882 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628893 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.628903 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628914 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.628935 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.628946 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.628956 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.628970 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.628981 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.628991 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_unpin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8] now 0+0
2015-03-31 11:02:25.629220 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407767 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.629237 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407767 cr=0xa256e00)
2015-03-31 11:02:25.629240 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407767 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.629243 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407767 cr=0xa256e00) #1000006b2cb
2015-03-31 11:02:25.629245 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cb snap head
2015-03-31 11:02:25.629246 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.629247 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.629260 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407767 cr=0xa256e00)
2015-03-31 11:02:25.629263 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.629278 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.629288 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.629299 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.629308 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.629321 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.629336 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.629345 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.629356 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.629366 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.629377 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.629386 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_pin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8] now 1+0
2015-03-31 11:02:25.629396 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.629410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.629424 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.629435 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.629445 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.629455 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.629466 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.629485 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.629511 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407767 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.629515 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407767 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.629525 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.629528 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.629533 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.629535 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.629548 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407767 cr=0xa256e00)
2015-03-31 11:02:25.629567 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.629583 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.629597 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.629607 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.629628 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.629638 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.629649 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.629659 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.629669 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.629684 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.629693 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.629703 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_unpin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8] now 0+0
2015-03-31 11:02:25.632624 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f1 follows 0 op update
2015-03-31 11:02:25.632627 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632638 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.632640 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.632658 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.632658 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632665 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632673 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.632675 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632685 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632705 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632712 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.632713 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632723 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632724 7fbe406af700  5 mds.0.log _submit_thread 5419622264~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.632730 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632736 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632741 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632747 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632752 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632758 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.632768 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.672031 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407768 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.672055 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407768 cr=0xa255a00)
2015-03-31 11:02:25.672058 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407768 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.672061 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407768 cr=0xa255a00) #1000006b2cb
2015-03-31 11:02:25.672063 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cb snap head
2015-03-31 11:02:25.672065 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.672066 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.672082 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407768 cr=0xa255a00)
2015-03-31 11:02:25.672085 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.672103 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.672115 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.672126 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.672137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.672151 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.672166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.672176 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.672187 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.672197 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.672208 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.672217 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_pin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8] now 1+0
2015-03-31 11:02:25.672228 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.672243 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.672258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.672279 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.672289 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.672298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.672307 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.672317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.672332 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407768 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.672336 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407768 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.672347 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.672350 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.672355 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.672357 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.672371 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407768 cr=0xa255a00)
2015-03-31 11:02:25.672390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.672407 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.672421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.672432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.672442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.672464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.672474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.672485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.672495 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.672510 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.672521 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.672531 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_unpin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8] now 0+0
2015-03-31 11:02:25.673828 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f1 follows 0 op update
2015-03-31 11:02:25.673832 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673844 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.673845 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.673864 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.673865 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673872 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673880 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.673882 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673887 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673894 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673900 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.673901 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673908 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673915 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673921 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673927 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.673928 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.673929 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003f1 [2,head] /test_small/small1/blarg1005 auth v59072 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aedf8]
2015-03-31 11:02:25.673937 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.713026 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407769 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.713047 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407769 cr=0xa255f00)
2015-03-31 11:02:25.713052 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407769 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.713055 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407769 cr=0xa255f00) #1000006b2cb
2015-03-31 11:02:25.713057 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cb snap head
2015-03-31 11:02:25.713059 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.713060 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.713076 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407769 cr=0xa255f00)
2015-03-31 11:02:25.713079 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713097 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713108 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.713120 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.713130 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713145 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.713159 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713169 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.713180 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.713190 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.713201 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.713211 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_pin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8] now 1+0
2015-03-31 11:02:25.713221 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713236 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713251 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713283 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.713302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.713312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.713321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.713336 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407769 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.713340 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407769 getattr Xs #1000006b2cb 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.713350 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.713354 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.713358 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.713361 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.713374 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407769 cr=0xa255f00)
2015-03-31 11:02:25.713394 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713410 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.713468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.713478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.713489 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3341d8]
2015-03-31 11:02:25.713499 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.713514 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.713525 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.713536 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) auth_unpin by 0x242cee00 on [inode 1000006b2cb [2,head] {#1000006b2cb /test_small/small5/blarg1005} auth v178706 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3341d8] now 0+0
2015-03-31 11:02:25.713800 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407770 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.713817 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407770 cr=0x26d3fd00)
2015-03-31 11:02:25.713819 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407770 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.713822 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407770 cr=0x26d3fd00) #10000004e62
2015-03-31 11:02:25.713824 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e62 snap head
2015-03-31 11:02:25.713826 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.713827 7fbe462be700 10 mds.0.server ref is [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.713839 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407770 cr=0x26d3fd00)
2015-03-31 11:02:25.713842 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713857 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713868 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.713877 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.713884 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713897 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.713911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.713921 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.713931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.713940 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.713949 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.713955 7fbe462be700 10 mds.0.cache.ino(10000004e62) auth_pin by 0x242cee00 on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28] now 1+0
2015-03-31 11:02:25.713962 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713976 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.713990 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.714001 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.714011 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.714020 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.714030 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714037 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714059 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714067 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714092 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407770 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.714096 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407770 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.714106 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.714110 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.714115 7fbe462be700 10 mds.0.cache.ino(10000004e62) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.714117 7fbe462be700 10 mds.0.cache.ino(10000004e62) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.714130 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407770 cr=0x26d3fd00)
2015-03-31 11:02:25.714149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.714164 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.714178 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.714188 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.714198 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.714207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.714227 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714234 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714241 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714247 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.714253 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.714267 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.714277 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.714286 7fbe462be700 10 mds.0.cache.ino(10000004e62) auth_unpin by 0x242cee00 on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b4a28] now 0+0
2015-03-31 11:02:25.714573 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407771 lookup #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.714590 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407771 cr=0x26d3cb00)
2015-03-31 11:02:25.714593 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407771 lookup #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.714595 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407771 cr=0x26d3cb00) #1000006026a/blarg10050
2015-03-31 11:02:25.714597 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.714600 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10050 [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock) v=177690 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771da0]
2015-03-31 11:02:25.714608 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.714610 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407771 lookup #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.714620 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.714632 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407771 cr=0x26d3cb00)
2015-03-31 11:02:25.715092 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407772 lookup #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.715111 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407772 cr=0x8f0cd80)
2015-03-31 11:02:25.715114 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407772 lookup #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.715116 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407772 cr=0x8f0cd80) #1000006026a/blarg10050
2015-03-31 11:02:25.715118 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.715121 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10050 [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock) v=177690 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771da0]
2015-03-31 11:02:25.715129 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.715130 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407772 lookup #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.715142 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.715155 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407772 cr=0x8f0cd80)
2015-03-31 11:02:25.715627 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407773 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.715649 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407773 cr=0x2645bc00)
2015-03-31 11:02:25.715651 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407773 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.715654 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407773 cr=0x2645bc00) #10000004e62
2015-03-31 11:02:25.715656 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e62 snap head
2015-03-31 11:02:25.715658 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.715659 7fbe462be700 10 mds.0.server ref is [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.715671 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407773 cr=0x2645bc00)
2015-03-31 11:02:25.715674 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.715691 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.715703 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.715712 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.715719 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.715734 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.715748 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.715758 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.715769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.715778 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.715792 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.715797 7fbe462be700 10 mds.0.cache.ino(10000004e62) auth_pin by 0x242cee00 on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28] now 1+0
2015-03-31 11:02:25.715804 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.715819 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.715834 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.715855 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.715877 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.715885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.715893 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.715900 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.715906 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.715911 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.715924 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407773 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.715927 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407773 getattr Xs #10000004e62 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.715938 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.715941 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.715946 7fbe462be700 10 mds.0.cache.ino(10000004e62) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.715948 7fbe462be700 10 mds.0.cache.ino(10000004e62) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.715962 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407773 cr=0x2645bc00)
2015-03-31 11:02:25.715982 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.715998 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.716013 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716023 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716032 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.716041 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.716061 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.716068 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.716074 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.716080 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b4a28]
2015-03-31 11:02:25.716085 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.716099 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.716110 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cee00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.716119 7fbe462be700 10 mds.0.cache.ino(10000004e62) auth_unpin by 0x242cee00 on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b4a28] now 0+0
2015-03-31 11:02:25.716383 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407774 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.716400 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407774 cr=0x26900f00)
2015-03-31 11:02:25.716402 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407774 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.716405 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407774 cr=0x26900f00) #1000006026a
2015-03-31 11:02:25.716407 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.716409 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.716410 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716425 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407774 cr=0x26900f00)
2015-03-31 11:02:25.716428 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.716442 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716452 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716463 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.716476 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.716490 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716500 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.716510 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716520 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.716531 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.716545 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.716558 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716569 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716579 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716590 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716600 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716610 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31408} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716627 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407774 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.716646 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407774 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.716668 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.716671 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.716675 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31409
2015-03-31 11:02:25.716677 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31409 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.716689 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407774 cr=0x26900f00)
2015-03-31 11:02:25.716708 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.716723 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.716737 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716748 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.716758 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716768 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716794 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716804 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.716814 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.716827 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.716837 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.717220 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407775 create #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.717238 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407775 cr=0x2645d000)
2015-03-31 11:02:25.717240 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407775 create #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.717243 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10050
2015-03-31 11:02:25.717244 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407775 cr=0x2645d000) #1000006026a/blarg10050
2015-03-31 11:02:25.717247 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10050
2015-03-31 11:02:25.717248 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.717249 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.717251 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178707 v=178699 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.717261 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178707 v=178699 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.717269 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10050 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178707 v=178699 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.717280 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407775 cr=0x2645d000)
2015-03-31 11:02:25.717286 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.717304 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717316 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717328 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock) v=177690 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717335 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.717349 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.717364 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717374 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.717385 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717395 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.717405 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock) v=177690 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717410 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10050) auth_pin by 0x242cee00 on [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock) v=177690 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0] now 1+0
2015-03-31 11:02:25.717417 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock) v=177690 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717422 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177690 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717428 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177690 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717442 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177690 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717448 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177690 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717452 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10050) auth_pin by 0x6771ef8 on [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177690 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0] now 2+0
2015-03-31 11:02:25.717469 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cee00) [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dn xlock x=1 by 0x242cee00) (dversion lock w=1 last_client=708310) v=177690 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717475 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.717489 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.717502 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.717515 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.717528 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717538 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717548 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717557 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717566 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717576 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717586 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717596 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717605 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717614 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717624 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717634 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717643 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717652 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717670 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2cc ([1000006b2cd~356], 854 left)
2015-03-31 11:02:25.717673 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.717675 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2cc [2,head] #1000006b2cc auth v1 s=0 n() (iversion lock) 0x3f3bef90]
2015-03-31 11:02:25.717679 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178708
2015-03-31 11:02:25.717680 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10050)  pre_dirty [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dn xlock x=1 by 0x242cee00) (dversion lock w=1 last_client=708310) pv=178708 v=177690 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717688 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3bef90]
2015-03-31 11:02:25.717694 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cee00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178708 v=178699 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:25.717703 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc688f0
2015-03-31 11:02:25.717705 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178709
2015-03-31 11:02:25.717706 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178709 v=178699 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.717713 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178709 v=178699 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.717718 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3bef90]
2015-03-31 11:02:25.717724 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.717726 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295278 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717739 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295280
2015-03-31 11:02:25.717740 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295280 v=3295270 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.717744 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295280 (current v 3295270)
2015-03-31 11:02:25.717745 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178709 v=178699 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.717752 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.717754 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cee00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295280 v=3295271 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:25.717765 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x47829f0
2015-03-31 11:02:25.717766 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295281
2015-03-31 11:02:25.717767 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717778 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717793 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717804 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.717805 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.843923 < 1, stopping
2015-03-31 11:02:25.717809 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.717819 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.717823 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295280 v=3295270 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.717829 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31409} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.717843 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3bef90]
2015-03-31 11:02:25.717850 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.717853 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717861 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.717862 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717870 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717877 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717883 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717890 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717896 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717902 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717909 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717915 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717921 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717928 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717934 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717941 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717947 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717954 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bef90]
2015-03-31 11:02:25.717963 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.717964 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.717967 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3bef90 tracedn 0x6771da0
2015-03-31 11:02:25.717969 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cee00) [dentry #1/test_small/small5/blarg10050 [2,head] auth NULL (dn xlock x=1 by 0x242cee00) (dversion lock w=1 last_client=708310) pv=178708 v=177690 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771da0]
2015-03-31 11:02:25.717975 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407775 create #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.717984 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.717987 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31410
2015-03-31 11:02:25.717989 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31410 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.717995 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.717998 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.718001 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) including xattrs version 0
2015-03-31 11:02:25.718037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718066 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718083 7fbe406af700  5 mds.0.log _submit_thread 5419623122~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.718082 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718095 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718109 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718131 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718142 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718153 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718163 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718175 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718187 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718197 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718208 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718218 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718456 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407776 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.718474 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407776 cr=0xb262580)
2015-03-31 11:02:25.718476 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407776 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.718480 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407776 cr=0xb262580) #1000006b2cc
2015-03-31 11:02:25.718482 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cc snap head
2015-03-31 11:02:25.718483 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.718484 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3bef90]
2015-03-31 11:02:25.718497 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407776 cr=0xb262580)
2015-03-31 11:02:25.718500 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718515 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718526 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718536 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3bef90]
2015-03-31 11:02:25.718546 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718560 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.718574 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718584 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.718593 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718603 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.718614 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3bef90]
2015-03-31 11:02:25.718624 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_pin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3bef90] now 1+0
2015-03-31 11:02:25.718634 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718649 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718663 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718674 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718685 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718695 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718722 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.718743 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.718758 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407776 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.718762 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407776 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.718772 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.718776 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.718780 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.718786 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.718800 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407776 cr=0xb262580)
2015-03-31 11:02:25.718820 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718836 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.718849 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718860 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.718870 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718880 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.718901 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.718912 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.718921 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.718937 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.718947 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.718958 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_unpin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90] now 0+0
2015-03-31 11:02:25.719197 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407777 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.719215 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407777 cr=0x9cc5000)
2015-03-31 11:02:25.719217 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407777 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.719220 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407777 cr=0x9cc5000) #1000006b2cc
2015-03-31 11:02:25.719222 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cc snap head
2015-03-31 11:02:25.719223 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.719224 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.719237 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407777 cr=0x9cc5000)
2015-03-31 11:02:25.719239 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.719255 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.719265 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.719275 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.719285 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.719298 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.719312 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.719322 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.719332 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.719342 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.719353 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.719362 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_pin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90] now 1+0
2015-03-31 11:02:25.719371 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.719386 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.719400 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.719410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.719421 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.719431 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.719442 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.719462 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.719489 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407777 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.719494 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407777 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.719503 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.719506 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.719510 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.719512 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.719525 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407777 cr=0x9cc5000)
2015-03-31 11:02:25.719543 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.719559 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.719573 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.719583 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.719604 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.719614 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.719624 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.719635 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.719644 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.719659 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.719670 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.719680 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_unpin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90] now 0+0
2015-03-31 11:02:25.724235 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e62 follows 0 op update
2015-03-31 11:02:25.724238 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724249 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.724251 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.724270 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.724271 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724277 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724284 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.724286 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724297 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724317 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724324 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.724325 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724334 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724336 7fbe406af700  5 mds.0.log _submit_thread 5419624762~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.724341 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724346 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724352 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724357 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724362 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724369 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.724378 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.764028 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407778 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.764052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407778 cr=0x968eb80)
2015-03-31 11:02:25.764057 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407778 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.764060 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407778 cr=0x968eb80) #1000006b2cc
2015-03-31 11:02:25.764062 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cc snap head
2015-03-31 11:02:25.764064 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.764065 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.764082 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407778 cr=0x968eb80)
2015-03-31 11:02:25.764085 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.764102 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.764114 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.764127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.764137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.764152 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.764166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.764176 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.764188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.764198 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.764209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.764218 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_pin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90] now 1+0
2015-03-31 11:02:25.764227 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.764242 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.764267 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.764289 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.764299 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.764309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.764318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.764328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.764342 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407778 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.764346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407778 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.764356 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.764361 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.764365 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.764368 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.764382 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407778 cr=0x968eb80)
2015-03-31 11:02:25.764401 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.764417 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.764432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.764443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.764453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.764475 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.764485 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.764496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.764506 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.764520 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.764531 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.764542 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_unpin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90] now 0+0
2015-03-31 11:02:25.765863 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e62 follows 0 op update
2015-03-31 11:02:25.765866 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765878 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.765879 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.765897 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.765898 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765905 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765913 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.765915 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765920 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765926 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765933 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.765934 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765940 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765946 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765952 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765958 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.765959 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.765961 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e62 [2,head] /test_small/small1/blarg10050 auth v136918 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b4a28]
2015-03-31 11:02:25.765967 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.805033 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407779 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.805055 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407779 cr=0x45a2d00)
2015-03-31 11:02:25.805059 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407779 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.805063 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407779 cr=0x45a2d00) #1000006b2cc
2015-03-31 11:02:25.805066 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cc snap head
2015-03-31 11:02:25.805067 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.805068 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.805084 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407779 cr=0x45a2d00)
2015-03-31 11:02:25.805087 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805105 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.805129 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.805139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805154 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.805168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805178 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.805189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.805199 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.805210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.805219 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_pin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90] now 1+0
2015-03-31 11:02:25.805230 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805246 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.805313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.805323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.805332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.805348 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407779 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.805352 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407779 getattr Xs #1000006b2cc 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.805362 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.805366 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.805371 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.805373 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.805387 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407779 cr=0x45a2d00)
2015-03-31 11:02:25.805406 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805422 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805436 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.805467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.805488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.805499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bef90]
2015-03-31 11:02:25.805508 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.805523 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.805533 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.805544 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) auth_unpin by 0x242cb200 on [inode 1000006b2cc [2,head] {#1000006b2cc /test_small/small5/blarg10050} auth v178708 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bef90] now 0+0
2015-03-31 11:02:25.805828 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407780 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.805846 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407780 cr=0x26906680)
2015-03-31 11:02:25.805849 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407780 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.805852 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407780 cr=0x26906680) #10000004e55
2015-03-31 11:02:25.805854 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e55 snap head
2015-03-31 11:02:25.805857 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.805858 7fbe462be700 10 mds.0.server ref is [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.805870 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407780 cr=0x26906680)
2015-03-31 11:02:25.805873 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805889 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805899 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.805908 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.805914 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.805927 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.805941 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.805950 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.805961 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.805970 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cb200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.805979 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.805985 7fbe462be700 10 mds.0.cache.ino(10000004e55) auth_pin by 0x242cb200 on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0] now 1+0
2015-03-31 11:02:25.805992 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.806006 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.806020 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.806030 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.806041 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.806050 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.806059 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806065 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806071 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806088 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806113 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407780 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.806117 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407780 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.806127 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.806129 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.806134 7fbe462be700 10 mds.0.cache.ino(10000004e55) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.806136 7fbe462be700 10 mds.0.cache.ino(10000004e55) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.806148 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407780 cr=0x26906680)
2015-03-31 11:02:25.806167 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.806183 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.806197 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.806207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.806217 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.806226 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.806247 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806253 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806260 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806267 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.806272 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.806286 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.806296 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cb200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.806305 7fbe462be700 10 mds.0.cache.ino(10000004e55) auth_unpin by 0x242cb200 on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b40f0] now 0+0
2015-03-31 11:02:25.806678 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407781 lookup #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.806699 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407781 cr=0xb260780)
2015-03-31 11:02:25.806702 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407781 lookup #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.806705 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407781 cr=0xb260780) #1000006026a/blarg10051
2015-03-31 11:02:25.806708 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.806710 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10051 [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock) v=177692 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771f80]
2015-03-31 11:02:25.806718 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.806719 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407781 lookup #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.806732 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.806745 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407781 cr=0xb260780)
2015-03-31 11:02:25.807207 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407782 lookup #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.807226 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407782 cr=0x52d2300)
2015-03-31 11:02:25.807229 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407782 lookup #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.807232 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407782 cr=0x52d2300) #1000006026a/blarg10051
2015-03-31 11:02:25.807234 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.807236 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10051 [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock) v=177692 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771f80]
2015-03-31 11:02:25.807244 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.807246 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407782 lookup #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.807258 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.807270 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407782 cr=0x52d2300)
2015-03-31 11:02:25.807734 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407783 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.807756 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407783 cr=0x23fbe180)
2015-03-31 11:02:25.807758 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407783 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.807761 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407783 cr=0x23fbe180) #10000004e55
2015-03-31 11:02:25.807763 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e55 snap head
2015-03-31 11:02:25.807764 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.807765 7fbe462be700 10 mds.0.server ref is [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.807777 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407783 cr=0x23fbe180)
2015-03-31 11:02:25.807780 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.807806 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.807818 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.807827 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.807834 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.807848 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.807862 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.807872 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.807883 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.807892 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cb200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.807902 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.807907 7fbe462be700 10 mds.0.cache.ino(10000004e55) auth_pin by 0x242cb200 on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0] now 1+0
2015-03-31 11:02:25.807913 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.807928 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.807943 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.807963 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.807984 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.807993 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.808001 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808007 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808013 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808018 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808030 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407783 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.808034 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407783 getattr Xs #10000004e55 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.808045 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.808049 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.808053 7fbe462be700 10 mds.0.cache.ino(10000004e55) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.808056 7fbe462be700 10 mds.0.cache.ino(10000004e55) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.808070 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407783 cr=0x23fbe180)
2015-03-31 11:02:25.808089 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808105 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808119 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808130 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808140 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.808149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.808169 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808176 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808182 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808188 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b40f0]
2015-03-31 11:02:25.808194 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.808208 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.808219 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cb200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.808228 7fbe462be700 10 mds.0.cache.ino(10000004e55) auth_unpin by 0x242cb200 on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b40f0] now 0+0
2015-03-31 11:02:25.808501 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407784 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.808518 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407784 cr=0x929aa80)
2015-03-31 11:02:25.808520 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407784 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.808523 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407784 cr=0x929aa80) #1000006026a
2015-03-31 11:02:25.808525 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.808527 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.808528 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808542 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407784 cr=0x929aa80)
2015-03-31 11:02:25.808545 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808560 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808570 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808580 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808594 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.808607 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808617 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.808627 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808637 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.808648 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808662 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808676 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808686 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808696 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808707 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808717 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808728 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31410} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808744 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407784 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.808748 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407784 getattr Xs #1000006026a 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.808788 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.808791 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.808795 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31411
2015-03-31 11:02:25.808797 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31411 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.808810 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407784 cr=0x929aa80)
2015-03-31 11:02:25.808829 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808845 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.808859 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808870 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.808880 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808891 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808913 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808923 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.808933 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.808947 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.808957 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.809337 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407785 create #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.809357 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407785 cr=0x9f78a00)
2015-03-31 11:02:25.809360 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407785 create #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.809363 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10051
2015-03-31 11:02:25.809364 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407785 cr=0x9f78a00) #1000006026a/blarg10051
2015-03-31 11:02:25.809366 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10051
2015-03-31 11:02:25.809368 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.809369 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.809371 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178709 v=178699 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.809380 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178709 v=178699 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.809388 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10051 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178709 v=178699 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.809399 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407785 cr=0x9f78a00)
2015-03-31 11:02:25.809405 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.809424 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809435 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809447 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock) v=177692 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809454 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.809468 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.809483 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809493 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.809504 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809514 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.809525 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock) v=177692 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809530 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10051) auth_pin by 0x242cb200 on [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock) v=177692 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80] now 1+0
2015-03-31 11:02:25.809536 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock) v=177692 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809541 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177692 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809557 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177692 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809562 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177692 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809568 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177692 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809585 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10051) auth_pin by 0x67720d8 on [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177692 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80] now 2+0
2015-03-31 11:02:25.809590 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cb200) [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dn xlock x=1 by 0x242cb200) (dversion lock w=1 last_client=708310) v=177692 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809595 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.809610 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.809623 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.809636 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.809649 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809659 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809669 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809678 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809687 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809697 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809706 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809716 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809725 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809735 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809744 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809754 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809763 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809772 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809796 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2cd ([1000006b2ce~355], 853 left)
2015-03-31 11:02:25.809799 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.809802 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2cd [2,head] #1000006b2cd auth v1 s=0 n() (iversion lock) 0x3f35ec08]
2015-03-31 11:02:25.809807 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178710
2015-03-31 11:02:25.809809 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10051)  pre_dirty [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dn xlock x=1 by 0x242cb200) (dversion lock w=1 last_client=708310) pv=178710 v=177692 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.809818 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f35ec08]
2015-03-31 11:02:25.809825 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cb200 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178710 v=178699 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:25.809834 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x47e4620
2015-03-31 11:02:25.809835 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178711
2015-03-31 11:02:25.809837 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178699 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.809843 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178699 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.809850 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f35ec08]
2015-03-31 11:02:25.809856 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.809857 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295280 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809871 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295282
2015-03-31 11:02:25.809872 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295270 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.809876 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295282 (current v 3295270)
2015-03-31 11:02:25.809877 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178699 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.809883 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.809885 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cb200 on [dir 10000000000 /test_small/ [2,head] auth pv=3295282 v=3295271 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:25.809894 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc6f850
2015-03-31 11:02:25.809895 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295283
2015-03-31 11:02:25.809896 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809908 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809918 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809928 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.809930 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.936048 < 1, stopping
2015-03-31 11:02:25.809934 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.809944 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:25.809948 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295270 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.809953 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31411} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.809967 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f35ec08]
2015-03-31 11:02:25.809974 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.809977 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f35ec08]
2015-03-31 11:02:25.809984 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.809986 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.809994 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810001 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810008 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810014 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810021 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810028 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810034 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810041 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810047 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810053 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810059 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810066 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810072 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810078 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f35ec08]
2015-03-31 11:02:25.810088 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.810089 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.810092 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f35ec08 tracedn 0x6771f80
2015-03-31 11:02:25.810094 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cb200) [dentry #1/test_small/small5/blarg10051 [2,head] auth NULL (dn xlock x=1 by 0x242cb200) (dversion lock w=1 last_client=708310) pv=178710 v=177692 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6771f80]
2015-03-31 11:02:25.810100 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407785 create #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.810109 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.810112 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31412
2015-03-31 11:02:25.810114 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31412 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.810119 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.810123 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.810125 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) including xattrs version 0
2015-03-31 11:02:25.810162 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810190 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810206 7fbe406af700  5 mds.0.log _submit_thread 5419625621~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:25.810205 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810218 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810232 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810254 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810265 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810276 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810286 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810298 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810309 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810319 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810330 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810340 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810593 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407786 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.810612 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407786 cr=0x43d2f80)
2015-03-31 11:02:25.810616 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407786 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.810619 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407786 cr=0x43d2f80) #1000006b2cd
2015-03-31 11:02:25.810621 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cd snap head
2015-03-31 11:02:25.810622 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.810623 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f35ec08]
2015-03-31 11:02:25.810637 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407786 cr=0x43d2f80)
2015-03-31 11:02:25.810640 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810656 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810666 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810677 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f35ec08]
2015-03-31 11:02:25.810687 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810701 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.810715 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810725 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.810736 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810746 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.810757 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f35ec08]
2015-03-31 11:02:25.810766 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_pin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f35ec08] now 1+0
2015-03-31 11:02:25.810776 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810795 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810809 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810820 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810830 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810855 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.810877 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.810886 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.810900 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407786 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.810905 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407786 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.810915 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.810918 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.810923 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:25.810925 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.810938 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407786 cr=0x43d2f80)
2015-03-31 11:02:25.810957 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810974 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.810988 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.810999 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.811010 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811031 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811041 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.811052 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.811061 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.811076 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.811087 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.811097 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_unpin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08] now 0+0
2015-03-31 11:02:25.811352 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407787 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.811371 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407787 cr=0x25e3e180)
2015-03-31 11:02:25.811373 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407787 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.811376 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407787 cr=0x25e3e180) #1000006b2cd
2015-03-31 11:02:25.811378 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cd snap head
2015-03-31 11:02:25.811379 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.811380 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.811393 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407787 cr=0x25e3e180)
2015-03-31 11:02:25.811395 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.811410 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.811421 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811431 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.811440 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.811454 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.811468 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.811477 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.811488 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811498 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.811508 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.811517 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_pin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08] now 1+0
2015-03-31 11:02:25.811527 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.811542 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.811555 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.811566 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.811576 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811587 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811597 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.811617 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.811644 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407787 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.811648 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407787 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.811658 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.811661 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.811665 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.811668 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.811681 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407787 cr=0x25e3e180)
2015-03-31 11:02:25.811700 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.811716 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.811729 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.811740 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.811761 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811772 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.811787 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.811798 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.811808 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.811822 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.811833 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.811843 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_unpin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08] now 0+0
2015-03-31 11:02:25.816229 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e55 follows 0 op update
2015-03-31 11:02:25.816232 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816243 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.816245 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.816263 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.816264 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816271 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816279 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.816281 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816292 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816312 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816319 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.816320 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816327 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816334 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816333 7fbe406af700  5 mds.0.log _submit_thread 5419627261~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.816347 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816352 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816358 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816363 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816369 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.816378 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.856039 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407788 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.856064 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407788 cr=0x6fc8f00)
2015-03-31 11:02:25.856067 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407788 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.856071 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407788 cr=0x6fc8f00) #1000006b2cd
2015-03-31 11:02:25.856072 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cd snap head
2015-03-31 11:02:25.856074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.856075 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.856092 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407788 cr=0x6fc8f00)
2015-03-31 11:02:25.856095 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.856112 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.856124 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.856136 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.856146 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.856161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.856175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.856185 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.856197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.856207 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.856218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.856227 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_pin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08] now 1+0
2015-03-31 11:02:25.856238 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.856253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.856279 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.856301 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.856311 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.856321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.856331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.856340 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.856355 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407788 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.856359 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407788 getattr Xs #1000006b2cd 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.856370 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.856374 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.856378 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.856381 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.856395 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407788 cr=0x6fc8f00)
2015-03-31 11:02:25.856414 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.856431 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.856445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.856456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.856466 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.856476 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.856498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.856509 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.856518 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.856533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.856544 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.856554 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_unpin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08] now 0+0
2015-03-31 11:02:25.857817 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e55 follows 0 op update
2015-03-31 11:02:25.857821 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857833 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.857834 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.857852 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.857853 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857860 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857868 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.857870 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857875 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857883 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857890 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.857892 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857899 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857906 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857911 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857916 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.857917 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.857918 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e55 [2,head] /test_small/small1/blarg10051 auth v136920 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b40f0]
2015-03-31 11:02:25.857925 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.897034 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407789 getattr Xs #1000006b2cd 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897057 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407789 cr=0x237c4b00)
2015-03-31 11:02:25.897060 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407789 getattr Xs #1000006b2cd 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897063 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407789 cr=0x237c4b00) #1000006b2cd
2015-03-31 11:02:25.897065 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cd snap head
2015-03-31 11:02:25.897067 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.897068 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.897085 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407789 cr=0x237c4b00)
2015-03-31 11:02:25.897088 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897106 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897118 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897130 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.897141 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897156 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.897171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897181 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.897193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897203 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.897214 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.897225 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_pin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08] now 1+0
2015-03-31 11:02:25.897235 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897251 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897277 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897287 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897299 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.897320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.897338 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407789 getattr Xs #1000006b2cd 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897342 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407789 getattr Xs #1000006b2cd 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897354 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.897357 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.897363 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.897366 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.897382 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407789 cr=0x237c4b00)
2015-03-31 11:02:25.897391 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.897480 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f35ec08]
2015-03-31 11:02:25.897490 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.897505 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.897516 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.897527 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) auth_unpin by 0x2b0c1900 on [inode 1000006b2cd [2,head] {#1000006b2cd /test_small/small5/blarg10051} auth v178710 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f35ec08] now 0+0
2015-03-31 11:02:25.897575 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407790 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897592 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407790 cr=0xab84380)
2015-03-31 11:02:25.897594 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407790 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897597 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407790 cr=0xab84380) #1000006026a
2015-03-31 11:02:25.897599 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.897600 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.897602 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897615 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407790 cr=0xab84380)
2015-03-31 11:02:25.897618 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897632 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897642 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897653 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897666 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.897680 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897700 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.897710 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897720 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.897730 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897744 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897757 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897767 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897795 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897806 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897817 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897828 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31412} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897844 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407790 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897848 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407790 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.897859 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.897862 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.897867 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31413
2015-03-31 11:02:25.897869 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31413 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.897884 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407790 cr=0xab84380)
2015-03-31 11:02:25.897892 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897908 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.897923 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897933 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.897943 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897955 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897965 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897975 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.897985 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.897999 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.898009 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.898047 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407791 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898064 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407791 cr=0x23fbd280)
2015-03-31 11:02:25.898066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407791 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898069 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407791 cr=0x23fbd280) #10000004e4d
2015-03-31 11:02:25.898071 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4d snap head
2015-03-31 11:02:25.898073 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.898074 7fbe462be700 10 mds.0.server ref is [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.898083 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407791 cr=0x23fbd280)
2015-03-31 11:02:25.898086 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898111 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.898120 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.898126 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898139 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.898154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898163 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.898173 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.898182 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.898207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.898223 7fbe462be700 10 mds.0.cache.ino(10000004e4d) auth_pin by 0x2b0c1900 on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8] now 1+0
2015-03-31 11:02:25.898230 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898254 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898268 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898287 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.898296 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.898305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898323 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898329 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898335 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898348 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407791 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898352 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407791 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898363 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.898366 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.898370 7fbe462be700 10 mds.0.cache.ino(10000004e4d) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.898373 7fbe462be700 10 mds.0.cache.ino(10000004e4d) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.898386 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407791 cr=0x23fbd280)
2015-03-31 11:02:25.898394 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898410 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.898454 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.898464 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898471 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.898490 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.898504 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.898515 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.898524 7fbe462be700 10 mds.0.cache.ino(10000004e4d) auth_unpin by 0x2b0c1900 on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b37b8] now 0+0
2015-03-31 11:02:25.898557 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407792 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898578 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407792 cr=0x3b0eb80)
2015-03-31 11:02:25.898580 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407792 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898583 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407792 cr=0x3b0eb80) #1000006026a
2015-03-31 11:02:25.898585 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.898586 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.898587 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898600 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407792 cr=0x3b0eb80)
2015-03-31 11:02:25.898603 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898617 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898626 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898637 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898650 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.898663 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898673 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.898684 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898705 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.898727 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898750 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.898764 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898774 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.898789 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898800 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898810 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898832 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898854 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:25.898866 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.898878 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x26a51800 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:25.898880 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.898953 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407793 lookup #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898972 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407793 cr=0xaeef580)
2015-03-31 11:02:25.898974 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407793 lookup #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.898977 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407793 cr=0xaeef580) #1000006026a/blarg10052
2015-03-31 11:02:25.898978 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.898981 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10052 [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock) v=177694 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772160]
2015-03-31 11:02:25.898989 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.898991 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407793 lookup #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.899001 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.899014 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407793 cr=0xaeef580)
2015-03-31 11:02:25.899461 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407794 lookup #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.899481 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407794 cr=0xa929b80)
2015-03-31 11:02:25.899483 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407794 lookup #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.899486 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407794 cr=0xa929b80) #1000006026a/blarg10052
2015-03-31 11:02:25.899488 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.899491 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10052 [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock) v=177694 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772160]
2015-03-31 11:02:25.899498 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:25.899500 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407794 lookup #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.899510 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.899523 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407794 cr=0xa929b80)
2015-03-31 11:02:25.899941 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407795 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.899964 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407795 cr=0x9689900)
2015-03-31 11:02:25.899967 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407795 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.899971 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407795 cr=0x9689900) #10000004e4d
2015-03-31 11:02:25.899973 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4d snap head
2015-03-31 11:02:25.899974 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.899975 7fbe462be700 10 mds.0.server ref is [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.899987 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407795 cr=0x9689900)
2015-03-31 11:02:25.899990 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900008 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900021 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.900031 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.900038 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900053 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 8+0
2015-03-31 11:02:25.900068 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900079 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 8+1
2015-03-31 11:02:25.900101 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.900110 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cd500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.900119 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.900125 7fbe462be700 10 mds.0.cache.ino(10000004e4d) auth_pin by 0x242cd500 on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8] now 1+0
2015-03-31 11:02:25.900133 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900148 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900172 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900194 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900204 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.900212 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.900220 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900226 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900232 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900238 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900251 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407795 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.900255 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407795 getattr Xs #10000004e4d 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.900265 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.900269 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.900273 7fbe462be700 10 mds.0.cache.ino(10000004e4d) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:25.900276 7fbe462be700 10 mds.0.cache.ino(10000004e4d) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.900289 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407795 cr=0x9689900)
2015-03-31 11:02:25.900308 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900324 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900336 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.900345 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.900355 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900361 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900367 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900384 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b37b8]
2015-03-31 11:02:25.900391 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.900406 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.900418 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cd500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.900427 7fbe462be700 10 mds.0.cache.ino(10000004e4d) auth_unpin by 0x242cd500 on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b37b8] now 0+0
2015-03-31 11:02:25.900730 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407796 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.900748 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407796 cr=0x8f0b980)
2015-03-31 11:02:25.900751 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407796 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.900754 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407796 cr=0x8f0b980) #1000006026a
2015-03-31 11:02:25.900755 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.900757 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.900758 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.900774 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407796 cr=0x8f0b980)
2015-03-31 11:02:25.900777 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900797 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900808 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.900819 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900833 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 8+0
2015-03-31 11:02:25.900847 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900857 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 8+1
2015-03-31 11:02:25.900868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.900878 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 9+1
2015-03-31 11:02:25.900889 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900903 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.900917 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900927 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.900937 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.900948 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.900958 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.900969 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31413} | dirtyscattered=0 request=2 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.900985 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407796 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.900999 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407796 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.901010 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.901024 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.901029 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31414
2015-03-31 11:02:25.901031 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31414 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.901045 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407796 cr=0x8f0b980)
2015-03-31 11:02:25.901064 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.901081 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.901093 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901105 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901117 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901128 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.901142 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.901153 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=2 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:25.901572 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407797 create #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.901593 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407797 cr=0x52d4100)
2015-03-31 11:02:25.901596 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407797 create #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.901599 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10052
2015-03-31 11:02:25.901600 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407797 cr=0x52d4100) #1000006026a/blarg10052
2015-03-31 11:02:25.901602 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10052
2015-03-31 11:02:25.901604 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.901605 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.901607 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178699 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.901617 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178699 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.901626 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10052 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178699 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=57+1547,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.901637 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407797 cr=0x52d4100)
2015-03-31 11:02:25.901642 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.901662 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.901675 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901688 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock) v=177694 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772160]
2015-03-31 11:02:25.901695 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.901711 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 8+0
2015-03-31 11:02:25.901726 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.901737 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 8+1
2015-03-31 11:02:25.901749 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901760 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 9+1
2015-03-31 11:02:25.901771 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock) v=177694 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772160]
2015-03-31 11:02:25.901777 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10052) auth_pin by 0x242cd500 on [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock) v=177694 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160] now 1+0
2015-03-31 11:02:25.901799 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock) v=177694 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.901816 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177694 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.901822 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177694 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.901827 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177694 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.901832 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177694 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.901838 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10052) auth_pin by 0x67722b8 on [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160] now 2+0
2015-03-31 11:02:25.901843 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cd500) [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.901849 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.901865 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.901879 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.901893 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.901906 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.901917 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.901927 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.901937 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.901946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901957 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901968 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901979 7fbe462be700  7 mds.0.locker wrlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.901989 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x26a54fe0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:25.901991 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.914587 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.914594 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.914603 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.914608 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) mark_dirty [inode 1000006b2c8 [2,head] /test_small/small5/blarg10047 auth v178699 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.914623 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10047)  mark_dirty [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178700 v=177682 ap=2+0 inode=0x3f3ef5f0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620]
2015-03-31 11:02:25.914633 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178700 cv=170705/170705 ap=6+14+14 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 57=57+0) hs=58+1546,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178700
2015-03-31 11:02:25.914643 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) mark_dirty_parent
2015-03-31 11:02:25.914645 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295270 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 57=57+0) n(v1 rc2015-03-31 11:03:02.000000 58=57+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.914660 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295270 ap=0+10 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.914664 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295272 cv=3287205/3287205 ap=6+9+10 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382360=382353+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295272
2015-03-31 11:02:25.914675 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178701 cv=170705/170705 ap=6+14+14 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 58=58+0) hs=58+1546,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178701
2015-03-31 11:02:25.914682 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295273 cv=3287205/3287205 ap=6+9+10 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382361=382354+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295273
2015-03-31 11:02:25.914691 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c8 [2,head] /test_small/small5/blarg10047 auth v178700 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ef5f0]
2015-03-31 11:02:25.914702 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.914705 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27531 client_caps(grant ino 1000006b2c8 1851517 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.914727 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178700 ap=2+0 inode=0x3f3ef5f0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620]
2015-03-31 11:02:25.914736 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407735 create #1000006026a/blarg10047 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.914748 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c8
2015-03-31 11:02:25.914752 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178700 ap=2+0 inode=0x3f3ef5f0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620]
2015-03-31 11:02:25.914761 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178700 ap=2+0 inode=0x3f3ef5f0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620]
2015-03-31 11:02:25.914767 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178700 ap=2+0 inode=0x3f3ef5f0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620]
2015-03-31 11:02:25.914772 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10047) auth_unpin by 0x6771778 on [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178700 ap=1+0 inode=0x3f3ef5f0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620] now 1+0
2015-03-31 11:02:25.914779 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178700 ap=1+0 inode=0x3f3ef5f0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620]
2015-03-31 11:02:25.914792 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.914808 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295272 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 59=58+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.914822 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295272 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 59=58+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.914834 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295272 pv3295282 ap=9+1 f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 59=58+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.914855 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178700 ap=1+0 inode=0x3f3ef5f0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771620]
2015-03-31 11:02:25.914872 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407735 cr=0x236b8000)
2015-03-31 11:02:25.914880 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd0000 on [inode 1 [...2,head] / auth v53471 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:25.914897 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd0000 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:25.914909 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd0000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295273 cv=3287205/3287205 ap=5+9+10 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382361=382354+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 10
2015-03-31 11:02:25.914919 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd0000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178701 cv=170705/170705 ap=5+13+13 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 58=58+0) hs=58+1546,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 13
2015-03-31 11:02:25.914927 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd0000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295272 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 59=58+1) (isnap sync r=2) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:25.914940 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10047) auth_unpin by 0x23dd0000 on [dentry #1/test_small/small5/blarg10047 [2,head] auth (dn sync l=1) (dversion lock) v=178700 inode=0x3f3ef5f0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771620] now 0+0
2015-03-31 11:02:25.914965 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.914967 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.914972 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.914973 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) mark_dirty [inode 1000006b2c9 [2,head] /test_small/small5/blarg10048 auth v178701 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.914984 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10048)  mark_dirty [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178702 v=177684 ap=2+0 inode=0x3f46a188 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800]
2015-03-31 11:02:25.914991 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178702 cv=170705/170705 ap=5+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 58=58+0) hs=59+1545,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178702
2015-03-31 11:02:25.914999 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) mark_dirty_parent
2015-03-31 11:02:25.915001 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295272 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 58=58+0) n(v1 rc2015-03-31 11:03:02.000000 59=58+1) (isnap sync r=2) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915013 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295272 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.915017 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295274 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382361=382354+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295274
2015-03-31 11:02:25.915028 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178703 cv=170705/170705 ap=5+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 59=59+0) hs=59+1545,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178703
2015-03-31 11:02:25.915035 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295275 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382362=382355+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295275
2015-03-31 11:02:25.915044 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2c9 [2,head] /test_small/small5/blarg10048 auth v178702 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f46a188]
2015-03-31 11:02:25.915054 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.915056 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27532 client_caps(grant ino 1000006b2c9 1851518 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.915074 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178702 ap=2+0 inode=0x3f46a188 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800]
2015-03-31 11:02:25.915082 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407745 create #1000006026a/blarg10048 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.915092 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2c9
2015-03-31 11:02:25.915096 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178702 ap=2+0 inode=0x3f46a188 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800]
2015-03-31 11:02:25.915104 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178702 ap=2+0 inode=0x3f46a188 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800]
2015-03-31 11:02:25.915110 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178702 ap=2+0 inode=0x3f46a188 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800]
2015-03-31 11:02:25.915115 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10048) auth_unpin by 0x6771958 on [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178702 ap=1+0 inode=0x3f46a188 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800] now 1+0
2015-03-31 11:02:25.915121 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178702 ap=1+0 inode=0x3f46a188 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800]
2015-03-31 11:02:25.915126 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.915140 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295274 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 60=59+1) (isnap sync r=2) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915153 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295274 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 60=59+1) (isnap sync r=2) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915164 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295274 pv3295282 ap=8+1 f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 60=59+1) (isnap sync r=2) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915175 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178702 ap=1+0 inode=0x3f46a188 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771800]
2015-03-31 11:02:25.915191 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407745 cr=0x43d3480)
2015-03-31 11:02:25.915198 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6900 on [inode 1 [...2,head] / auth v53471 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:25.915214 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:25.915225 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x296a6900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295275 cv=3287205/3287205 ap=4+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382362=382355+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 9
2015-03-31 11:02:25.915235 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x296a6900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178703 cv=170705/170705 ap=4+11+11 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 59=59+0) hs=59+1545,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 11
2015-03-31 11:02:25.915243 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295274 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 60=59+1) (isnap sync r=2) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:25.915254 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10048) auth_unpin by 0x296a6900 on [dentry #1/test_small/small5/blarg10048 [2,head] auth (dn sync l=1) (dversion lock) v=178702 inode=0x3f46a188 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771800] now 0+0
2015-03-31 11:02:25.915274 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.915276 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.915280 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.915281 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) mark_dirty [inode 1000006b2ca [2,head] /test_small/small5/blarg10049 auth v178703 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.915291 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10049)  mark_dirty [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178704 v=177686 ap=2+0 inode=0x3f3a9a78 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0]
2015-03-31 11:02:25.915298 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178704 cv=170705/170705 ap=4+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 59=59+0) hs=60+1544,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178704
2015-03-31 11:02:25.915307 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) mark_dirty_parent
2015-03-31 11:02:25.915308 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295274 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 59=59+0) n(v1 rc2015-03-31 11:03:02.000000 60=59+1) (isnap sync r=2) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915320 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295274 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.915324 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295276 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382362=382355+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295276
2015-03-31 11:02:25.915334 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178705 cv=170705/170705 ap=4+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 60=60+0) hs=60+1544,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178705
2015-03-31 11:02:25.915341 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295277 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382363=382356+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295277
2015-03-31 11:02:25.915350 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ca [2,head] /test_small/small5/blarg10049 auth v178704 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a9a78]
2015-03-31 11:02:25.915359 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.915361 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27533 client_caps(grant ino 1000006b2ca 1851519 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.915380 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178704 ap=2+0 inode=0x3f3a9a78 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0]
2015-03-31 11:02:25.915387 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407755 create #1000006026a/blarg10049 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.915397 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ca
2015-03-31 11:02:25.915399 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178704 ap=2+0 inode=0x3f3a9a78 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0]
2015-03-31 11:02:25.915407 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178704 ap=2+0 inode=0x3f3a9a78 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0]
2015-03-31 11:02:25.915412 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178704 ap=2+0 inode=0x3f3a9a78 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0]
2015-03-31 11:02:25.915417 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10049) auth_unpin by 0x6771b38 on [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178704 ap=1+0 inode=0x3f3a9a78 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0] now 1+0
2015-03-31 11:02:25.915423 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178704 ap=1+0 inode=0x3f3a9a78 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0]
2015-03-31 11:02:25.915428 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.915441 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295276 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 61=60+1) (isnap sync r=2) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915454 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295276 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 61=60+1) (isnap sync r=2) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915466 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295276 pv3295282 ap=7+1 f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 61=60+1) (isnap sync r=2) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915476 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178704 ap=1+0 inode=0x3f3a9a78 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67719e0]
2015-03-31 11:02:25.915490 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407755 cr=0x43d3e80)
2015-03-31 11:02:25.915498 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd4600 on [inode 1 [...2,head] / auth v53471 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:25.915514 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd4600 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:25.915525 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd4600 on [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295277 cv=3287205/3287205 ap=3+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382363=382356+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 8
2015-03-31 11:02:25.915535 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd4600 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178705 cv=170705/170705 ap=3+9+9 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 60=60+0) hs=60+1544,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 9
2015-03-31 11:02:25.915543 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd4600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295276 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 61=60+1) (isnap sync r=2) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:25.915554 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10049) auth_unpin by 0x23dd4600 on [dentry #1/test_small/small5/blarg10049 [2,head] auth (dn sync l=1) (dversion lock) v=178704 inode=0x3f3a9a78 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x67719e0] now 0+0
2015-03-31 11:02:25.915574 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.915575 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.915580 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.915581 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) mark_dirty [inode 1000006b2cb [2,head] /test_small/small5/blarg1005 auth v178705 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.915591 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1005)  mark_dirty [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178706 v=177688 ap=2+0 inode=0x3f3341d8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0]
2015-03-31 11:02:25.915598 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178706 cv=170705/170705 ap=3+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 60=60+0) hs=61+1543,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178706
2015-03-31 11:02:25.915606 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) mark_dirty_parent
2015-03-31 11:02:25.915607 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295276 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 60=60+0) n(v1 rc2015-03-31 11:03:02.000000 61=60+1) (isnap sync r=2) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915619 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295276 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.915622 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295278 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382363=382356+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295278
2015-03-31 11:02:25.915632 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178707 cv=170705/170705 ap=3+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 61=61+0) hs=61+1543,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178707
2015-03-31 11:02:25.915639 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295279 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382364=382357+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295279
2015-03-31 11:02:25.915648 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2cb [2,head] /test_small/small5/blarg1005 auth v178706 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3341d8]
2015-03-31 11:02:25.915657 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.915659 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27534 client_caps(grant ino 1000006b2cb 1851520 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.915676 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178706 ap=2+0 inode=0x3f3341d8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0]
2015-03-31 11:02:25.915684 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407765 create #1000006026a/blarg1005 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.915693 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2cb
2015-03-31 11:02:25.915695 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178706 ap=2+0 inode=0x3f3341d8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0]
2015-03-31 11:02:25.915702 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178706 ap=2+0 inode=0x3f3341d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0]
2015-03-31 11:02:25.915708 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178706 ap=2+0 inode=0x3f3341d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0]
2015-03-31 11:02:25.915713 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1005) auth_unpin by 0x6771d18 on [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178706 ap=1+0 inode=0x3f3341d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0] now 1+0
2015-03-31 11:02:25.915719 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178706 ap=1+0 inode=0x3f3341d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0]
2015-03-31 11:02:25.915724 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.915737 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295278 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 62=61+1) (isnap sync r=2) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915749 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295278 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 62=61+1) (isnap sync r=2) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915760 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295278 pv3295282 ap=6+1 f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 62=61+1) (isnap sync r=2) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915770 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178706 ap=1+0 inode=0x3f3341d8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771bc0]
2015-03-31 11:02:25.915787 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407765 cr=0x940eb80)
2015-03-31 11:02:25.915794 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2d00 on [inode 1 [...2,head] / auth v53471 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:25.915811 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2d00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:25.915822 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd2d00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295279 cv=3287205/3287205 ap=2+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382364=382357+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 7
2015-03-31 11:02:25.915832 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd2d00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178707 cv=170705/170705 ap=2+7+7 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 61=61+0) hs=61+1543,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 7
2015-03-31 11:02:25.915840 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295278 pv3295282 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 62=61+1) (isnap sync r=2) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:25.915851 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1005) auth_unpin by 0x23dd2d00 on [dentry #1/test_small/small5/blarg1005 [2,head] auth (dn sync l=1) (dversion lock) v=178706 inode=0x3f3341d8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771bc0] now 0+0
2015-03-31 11:02:25.915870 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.915872 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.915876 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.915878 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) mark_dirty [inode 1000006b2cc [2,head] /test_small/small5/blarg10050 auth v178707 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.915888 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10050)  mark_dirty [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178708 v=177690 ap=2+0 inode=0x3f3bef90 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0]
2015-03-31 11:02:25.915893 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178708 cv=170705/170705 ap=2+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 61=61+0) hs=62+1542,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178708
2015-03-31 11:02:25.915901 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) mark_dirty_parent
2015-03-31 11:02:25.915903 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295278 pv3295282 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 61=61+0) n(v1 rc2015-03-31 11:03:02.000000 62=61+1) (isnap sync r=2) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.915914 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295278 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.915918 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295280 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382364=382357+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295280
2015-03-31 11:02:25.915927 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178709 cv=170705/170705 ap=2+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 62=62+0) hs=62+1542,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178709
2015-03-31 11:02:25.915935 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295281 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382365=382358+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295281
2015-03-31 11:02:25.915944 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2cc [2,head] /test_small/small5/blarg10050 auth v178708 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bef90]
2015-03-31 11:02:25.915953 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.915956 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27535 client_caps(grant ino 1000006b2cc 1851521 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.915974 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178708 ap=2+0 inode=0x3f3bef90 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0]
2015-03-31 11:02:25.915982 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407775 create #1000006026a/blarg10050 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.915991 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2cc
2015-03-31 11:02:25.915993 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178708 ap=2+0 inode=0x3f3bef90 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0]
2015-03-31 11:02:25.916001 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178708 ap=2+0 inode=0x3f3bef90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0]
2015-03-31 11:02:25.916007 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178708 ap=2+0 inode=0x3f3bef90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0]
2015-03-31 11:02:25.916011 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10050) auth_unpin by 0x6771ef8 on [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178708 ap=1+0 inode=0x3f3bef90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0] now 1+0
2015-03-31 11:02:25.916018 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178708 ap=1+0 inode=0x3f3bef90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0]
2015-03-31 11:02:25.916023 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916036 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295280 pv3295282 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 63=62+1) (isnap sync r=2) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916048 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295280 pv3295282 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 63=62+1) (isnap sync r=2) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916059 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295280 pv3295282 ap=5+1 f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 63=62+1) (isnap sync r=2) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916070 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178708 ap=1+0 inode=0x3f3bef90 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771da0]
2015-03-31 11:02:25.916083 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407775 cr=0x2645d000)
2015-03-31 11:02:25.916090 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cee00 on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:25.916106 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cee00 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:25.916118 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cee00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295281 cv=3287205/3287205 ap=1+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382365=382358+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 6
2015-03-31 11:02:25.916128 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cee00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178709 cv=170705/170705 ap=1+5+5 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 62=62+0) hs=62+1542,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 5
2015-03-31 11:02:25.916135 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cee00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295280 pv3295282 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 63=62+1) (isnap sync r=2) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:25.916146 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10050) auth_unpin by 0x242cee00 on [dentry #1/test_small/small5/blarg10050 [2,head] auth (dn sync l=1) (dversion lock) v=178708 inode=0x3f3bef90 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771da0] now 0+0
2015-03-31 11:02:25.916166 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.916168 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.916172 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.916173 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) mark_dirty [inode 1000006b2cd [2,head] /test_small/small5/blarg10051 auth v178709 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.916184 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10051)  mark_dirty [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178710 v=177692 ap=2+0 inode=0x3f35ec08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80]
2015-03-31 11:02:25.916191 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178710 cv=170705/170705 ap=1+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 62=62+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178710
2015-03-31 11:02:25.916198 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) mark_dirty_parent
2015-03-31 11:02:25.916199 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295280 pv3295282 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 62=62+0) n(v1 rc2015-03-31 11:03:02.000000 63=62+1) (isnap sync r=2) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916211 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295282 v=3295280 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.916215 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295282 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382365=382358+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295282
2015-03-31 11:02:25.916224 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178711 v=178711 cv=170705/170705 ap=1+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178711
2015-03-31 11:02:25.916232 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295283 v=3295283 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382366=382359+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295283
2015-03-31 11:02:25.916240 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2cd [2,head] /test_small/small5/blarg10051 auth v178710 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f35ec08]
2015-03-31 11:02:25.916250 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.916252 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27536 client_caps(grant ino 1000006b2cd 1851522 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.916269 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178710 ap=2+0 inode=0x3f35ec08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80]
2015-03-31 11:02:25.916277 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407785 create #1000006026a/blarg10051 2015-03-31 11:03:02.000000) v2
2015-03-31 11:02:25.916286 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2cd
2015-03-31 11:02:25.916288 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178710 ap=2+0 inode=0x3f35ec08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80]
2015-03-31 11:02:25.916296 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178710 ap=2+0 inode=0x3f35ec08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80]
2015-03-31 11:02:25.916301 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178710 ap=2+0 inode=0x3f35ec08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80]
2015-03-31 11:02:25.916305 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10051) auth_unpin by 0x67720d8 on [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178710 ap=1+0 inode=0x3f35ec08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80] now 1+0
2015-03-31 11:02:25.916311 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178710 ap=1+0 inode=0x3f35ec08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80]
2015-03-31 11:02:25.916316 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916330 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916341 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916353 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916364 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916374 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:25.916377 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=4+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.916387 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.916398 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:25.916401 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407792 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.916405 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407792 cr=0x3b0eb80) #1000006026a
2015-03-31 11:02:25.916407 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.916408 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.916409 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916420 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407792 cr=0x3b0eb80)
2015-03-31 11:02:25.916423 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.916438 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916449 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916458 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.916473 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916483 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916493 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=2) [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.916507 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=2) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916518 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916527 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916538 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916559 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916568 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916590 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916600 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916609 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916619 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31414} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916636 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407792 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.916640 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407792 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.916650 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.916653 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.916656 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31415
2015-03-31 11:02:25.916658 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31415 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.916670 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407792 cr=0x3b0eb80)
2015-03-31 11:02:25.916678 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.916704 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916716 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (ilink sync r=1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916727 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (ilink sync r=1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916738 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916748 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916770 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916779 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916795 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916804 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916814 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916824 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c1900 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.916838 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c1900 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.916849 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.916876 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:25.916877 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407797 create #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.916880 7fbe43ab9700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10052
2015-03-31 11:02:25.916881 7fbe43ab9700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407797 cr=0x52d4100) #1000006026a/blarg10052
2015-03-31 11:02:25.916884 7fbe43ab9700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10052
2015-03-31 11:02:25.916885 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.916886 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.916887 7fbe43ab9700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.916895 7fbe43ab9700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.916902 7fbe43ab9700 10 mds.0.server prepare_null_dentry blarg10052 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.916912 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407797 cr=0x52d4100)
2015-03-31 11:02:25.916917 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.916933 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916944 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.916954 7fbe43ab9700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.916961 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.916976 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.916986 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.917007 7fbe43ab9700 10 mds.0.locker  already auth_pinned [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.917012 7fbe43ab9700 10 mds.0.locker  already wrlocked (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.917030 7fbe43ab9700 10 mds.0.locker  already xlocked (dn xlock x=1 by 0x242cd500) [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.917035 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917063 7fbe43ab9700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917086 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.917097 7fbe43ab9700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.917108 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.917118 7fbe43ab9700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.917129 7fbe43ab9700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.917140 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFc, xlocker allowed=pAsLsXsFc on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31415} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.917152 7fbe43ab9700  7 mds.0.locker    sending MClientCaps to client.708310 seq 31416 new pending pAsLsXs was pAsLsXsFs
2015-03-31 11:02:25.917158 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27537 client_caps(revoke ino 1000006026a 1732604 seq 31416 caps=pAsLsXs dirty=- wanted=p follows 0 size 0/0 ts 1 mtime 2015-03-31 11:03:02.000000) v4
2015-03-31 11:02:25.917175 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.917188 7fbe43ab9700  7 mds.0.locker wrlock_start waiting on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.917199 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x5a491d0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:25.917201 7fbe43ab9700 10 mds.0.locker nudge_log (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917219 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917231 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917242 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178710 ap=1+0 inode=0x3f35ec08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6771f80]
2015-03-31 11:02:25.917251 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFc, xlocker allowed=pAsLsXsFc on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917273 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407785 cr=0x9f78a00)
2015-03-31 11:02:25.917280 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cb200 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.917296 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cb200 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.917308 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cb200 on [dir 10000000000 /test_small/ [2,head] auth v=3295283 cv=3287205/3287205 ap=0+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382366=382359+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 4
2015-03-31 11:02:25.917319 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cb200 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=0+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 3
2015-03-31 11:02:25.917326 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cb200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.917339 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10051) auth_unpin by 0x242cb200 on [dentry #1/test_small/small5/blarg10051 [2,head] auth (dn sync l=1) (dversion lock) v=178710 inode=0x3f35ec08 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6771f80] now 0+0
2015-03-31 11:02:25.917398 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407798 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.917432 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407798 cr=0x9308c80)
2015-03-31 11:02:25.917436 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407798 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.917440 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407798 cr=0x9308c80) #1000006026a
2015-03-31 11:02:25.917442 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.917443 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.917444 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917465 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407798 cr=0x9308c80)
2015-03-31 11:02:25.917468 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917486 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.917499 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917511 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917526 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.917541 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.917552 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.917565 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917576 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.917588 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917604 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917619 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.917631 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=2) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.917641 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917664 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917685 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917696 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock) (ifile sync->lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31416} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917712 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407798 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.917716 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407798 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.917727 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.917730 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.917733 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31417
2015-03-31 11:02:25.917735 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31417 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.917749 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407798 cr=0x9308c80)
2015-03-31 11:02:25.917768 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1 [...2,head] / auth v53471 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917791 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.917803 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31417} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917815 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=2) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31417} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917826 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31417} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917836 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.917862 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.917873 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31417} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.917915 7fbe462be700  7 mds.0.locker handle_client_caps on 1000006026a follows 0 op update
2015-03-31 11:02:25.917918 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917930 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.917932 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.917947 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.917948 7fbe462be700 10 mds.0.locker   cap inode [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917960 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXs dirty - on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917971 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXs wanted p on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917983 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.917992 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.917993 7fbe462be700 10 mds.0.locker eval_gather (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.918003 7fbe462be700 10 mds.0.locker  next state is lock issued/allows loner /cb xlocker /cb other /cb
2015-03-31 11:02:25.918006 7fbe462be700  7 mds.0.locker eval_gather finished gather on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.918016 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.918027 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918037 7fbe462be700  7 mds.0.locker file_eval stable, bump to sync (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918047 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918057 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918067 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918087 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918096 7fbe462be700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:25.918097 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407797 create #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.918100 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10052
2015-03-31 11:02:25.918101 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407797 cr=0x52d4100) #1000006026a/blarg10052
2015-03-31 11:02:25.918103 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10052
2015-03-31 11:02:25.918104 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.918106 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.918107 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.918115 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.918121 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10052 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.918143 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407797 cr=0x52d4100)
2015-03-31 11:02:25.918147 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918162 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918171 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918180 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.918187 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918200 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918209 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918218 7fbe462be700 10 mds.0.locker  already auth_pinned [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.918223 7fbe462be700 10 mds.0.locker  already wrlocked (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.918229 7fbe462be700 10 mds.0.locker  already xlocked (dn xlock x=1 by 0x242cd500) [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.918235 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918248 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918260 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918270 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918279 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918288 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918297 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918307 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918316 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918326 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918335 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918344 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918354 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918363 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918379 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ce ([1000006b2cf~354], 852 left)
2015-03-31 11:02:25.918382 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:25.918383 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ce [2,head] #1000006b2ce auth v1 s=0 n() (iversion lock) 0x3f411f10]
2015-03-31 11:02:25.918387 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178712
2015-03-31 11:02:25.918388 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10052)  pre_dirty [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) pv=178712 v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.918396 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f411f10]
2015-03-31 11:02:25.918402 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cd500 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178711 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:25.918410 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d5e30
2015-03-31 11:02:25.918412 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178713
2015-03-31 11:02:25.918413 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178713 v=178711 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.918419 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178713 v=178711 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.918426 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f411f10]
2015-03-31 11:02:25.918432 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.918435 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918448 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295284
2015-03-31 11:02:25.918449 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295284 v=3295282 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.918453 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295284 (current v 3295282)
2015-03-31 11:02:25.918454 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178713 v=178711 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=63+1541,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:25.918460 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.918462 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cd500 on [dir 10000000000 /test_small/ [2,head] auth v=3295283 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382366=382359+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:25.918471 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d00b0
2015-03-31 11:02:25.918472 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295285
2015-03-31 11:02:25.918473 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918484 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918494 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918505 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.918506 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.04463 ago, continuing
2015-03-31 11:02:25.918510 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120416 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918521 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120418
2015-03-31 11:02:25.918522 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120418 v=120416 ap=0+2 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:25.918526 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120418 (current v 120416)
2015-03-31 11:02:25.918527 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295285 v=3295283 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382366=382359+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:25.918534 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:25.918536 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x242cd500 on [dir 1 / [2,head] auth v=120417 cv=119911/119911 dir_auth=0 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:02.000000 b422190196760 382373=382364+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 2
2015-03-31 11:02:25.918545 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x91d4af0
2015-03-31 11:02:25.918546 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120419
2015-03-31 11:02:25.918547 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918561 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918574 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918584 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:25.918585 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.04463 ago, continuing
2015-03-31 11:02:25.918587 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53471 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918605 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120418 v=120416 ap=0+2 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:25.918610 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918621 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295284 v=3295282 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.918625 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31417} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918637 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f411f10]
2015-03-31 11:02:25.918644 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:25.918647 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f411f10]
2015-03-31 11:02:25.918654 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.918656 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918663 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918670 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918677 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918684 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918690 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918697 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918703 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918710 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918715 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918722 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918728 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918735 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918741 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918747 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ce [2,head] {#1000006b2ce /test_small/small5/blarg10052} auth v178712 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f411f10]
2015-03-31 11:02:25.918757 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.918758 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:25.918759 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f411f10 tracedn 0x6772160
2015-03-31 11:02:25.918761 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cd500) [dentry #1/test_small/small5/blarg10052 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) pv=178712 v=177694 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772160]
2015-03-31 11:02:25.918768 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407797 create #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.918776 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.918779 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31418
2015-03-31 11:02:25.918781 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31418 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.918791 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:25.918794 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:25.918796 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) including xattrs version 0
2015-03-31 11:02:25.918832 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53471 pv53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918861 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53471 pv53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918885 7fbe406af700  5 mds.0.log _submit_thread 5419628120~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:25.918877 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53471 pv53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918902 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53471 pv53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.918917 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918929 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918940 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918951 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.918961 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918973 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918984 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.918994 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919005 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919015 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919027 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFcb, xlocker allowed=pAsLsXsFcb on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919039 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.919056 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407799 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.919078 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407799 cr=0xb267a80)
2015-03-31 11:02:25.919081 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407799 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.919084 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407799 cr=0xb267a80) #1000006026a
2015-03-31 11:02:25.919086 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.919088 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.919089 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919102 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407799 cr=0xb267a80)
2015-03-31 11:02:25.919105 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53471 pv53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.919120 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.919131 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919142 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53471 pv53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.919155 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53471 pv53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:25.919170 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.919190 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:25.919200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=1+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919210 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.919220 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53471 pv53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.919235 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53471 pv53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.919249 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.919259 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.919270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919291 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919323 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=2+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919333 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:25.919342 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.919352 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x26a572c0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:25.919354 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.932524 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:25.932531 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:25.932540 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:25.932541 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) mark_dirty [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178711 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f411f10]
2015-03-31 11:02:25.932556 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10052)  mark_dirty [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178712 v=177694 ap=2+0 inode=0x3f411f10 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160]
2015-03-31 11:02:25.932564 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178713 v=178712 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 63=63+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178712
2015-03-31 11:02:25.932575 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) mark_dirty_parent
2015-03-31 11:02:25.932577 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295282 pv3295284 ap=3+1 f(v0 m2015-03-31 11:03:02.000000 63=63+0) n(v1 rc2015-03-31 11:03:02.000000 64=63+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.932591 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295284 v=3295282 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:25.932596 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295285 v=3295284 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382366=382359+7)/n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382356=382349+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295284
2015-03-31 11:02:25.932606 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120416 pv120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:02.000000 b422190090565 382357=382349+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.932619 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120418 v=120416 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:25.932622 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120419 v=120418 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:02.000000 b422190196760 382373=382364+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120418
2015-03-31 11:02:25.932632 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53471 pv53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.932648 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178713 v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178713
2015-03-31 11:02:25.932656 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295285 v=3295285 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295285
2015-03-31 11:02:25.932663 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120419 v=120419 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:03.000000 b422190196760 382384=382375+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120419
2015-03-31 11:02:25.932672 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 dirtyparent=1 dirty=1 0x3f411f10]
2015-03-31 11:02:25.932682 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:25.932685 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27538 client_caps(grant ino 1000006b2ce 1851523 seq 2 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:25.932706 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178712 ap=2+0 inode=0x3f411f10 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160]
2015-03-31 11:02:25.932727 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407797 create #1000006026a/blarg10052 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.932739 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ce
2015-03-31 11:02:25.932742 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178712 ap=2+0 inode=0x3f411f10 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160]
2015-03-31 11:02:25.932761 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178712 ap=2+0 inode=0x3f411f10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160]
2015-03-31 11:02:25.932767 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178712 ap=2+0 inode=0x3f411f10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160]
2015-03-31 11:02:25.932772 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10052) auth_unpin by 0x67722b8 on [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178712 ap=1+0 inode=0x3f411f10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160] now 1+0
2015-03-31 11:02:25.932794 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178712 ap=1+0 inode=0x3f411f10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160]
2015-03-31 11:02:25.932800 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.932830 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.932846 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.932859 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.932871 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.932883 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.932893 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.932904 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.932915 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.932925 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:25.932928 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:25.932938 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:25.932949 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:25.932951 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407799 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.932955 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407799 cr=0xb267a80) #1000006026a
2015-03-31 11:02:25.932957 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.932958 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.932959 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.932970 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407799 cr=0xb267a80)
2015-03-31 11:02:25.932973 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.932987 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.932997 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933006 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.933020 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.933030 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933040 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.933054 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.933075 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933085 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933105 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933116 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933127 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933137 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933147 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933158 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933168 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31418} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933188 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407799 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.933193 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407799 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.933204 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.933208 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.933212 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31419
2015-03-31 11:02:25.933215 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31419 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.933242 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407799 cr=0xb267a80)
2015-03-31 11:02:25.933251 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.933268 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.933283 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.933293 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.933304 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933315 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933326 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933336 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933347 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933357 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933379 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933388 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933398 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933407 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933417 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.933431 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:25.933441 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:25.933468 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933479 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933489 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933499 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178712 ap=1+0 inode=0x3f411f10 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772160]
2015-03-31 11:02:25.933506 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933528 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407797 cr=0x52d4100)
2015-03-31 11:02:25.933545 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.933571 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.933582 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x242cd500 on [dir 1 / [2,head] auth v=120419 cv=119911/119911 dir_auth=0 ap=0+0+1 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:03.000000 b422190196760 382384=382375+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 1
2015-03-31 11:02:25.933593 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cd500 on [dir 10000000000 /test_small/ [2,head] auth v=3295285 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:25.933601 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cd500 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178713 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:25.933608 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.933629 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10052) auth_unpin by 0x242cd500 on [dentry #1/test_small/small5/blarg10052 [2,head] auth (dn sync l=1) (dversion lock) v=178712 inode=0x3f411f10 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6772160] now 0+0
2015-03-31 11:02:25.933690 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407800 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.933722 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407800 cr=0xaee9680)
2015-03-31 11:02:25.933726 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407800 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.933729 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407800 cr=0xaee9680) #1000006b2ce
2015-03-31 11:02:25.933731 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ce snap head
2015-03-31 11:02:25.933732 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.933734 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=0 caps=1 dirtyparent=1 dirty=1 0x3f411f10]
2015-03-31 11:02:25.933750 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407800 cr=0xaee9680)
2015-03-31 11:02:25.933753 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.933771 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.933789 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.933800 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 caps=1 dirtyparent=1 dirty=1 0x3f411f10]
2015-03-31 11:02:25.933810 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.933825 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.933841 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.933851 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.933862 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.933872 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.933883 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 caps=1 dirtyparent=1 dirty=1 0x3f411f10]
2015-03-31 11:02:25.933893 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_pin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10] now 1+0
2015-03-31 11:02:25.933903 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.933918 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.933943 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.933954 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.933964 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933974 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.933985 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.933994 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.934011 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407800 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934016 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407800 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934050 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.934053 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.934058 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:25.934060 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.934075 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407800 cr=0xaee9680)
2015-03-31 11:02:25.934094 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.934110 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.934124 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.934134 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.934156 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934166 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934175 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.934185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.934195 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.934210 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.934220 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.934230 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_unpin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10] now 0+0
2015-03-31 11:02:25.934268 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407801 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934285 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407801 cr=0x9cc2f80)
2015-03-31 11:02:25.934287 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407801 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934290 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407801 cr=0x9cc2f80) #1000006026a
2015-03-31 11:02:25.934292 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.934293 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.934294 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.934307 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407801 cr=0x9cc2f80)
2015-03-31 11:02:25.934310 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.934324 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.934334 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.934344 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.934357 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.934372 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.934380 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.934400 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.934409 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.934419 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.934432 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.934446 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.934456 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.934466 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934475 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934485 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934493 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31419} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934510 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407801 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934514 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407801 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934536 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.934539 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.934542 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31420
2015-03-31 11:02:25.934544 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31420 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.934556 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407801 cr=0x9cc2f80)
2015-03-31 11:02:25.934575 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.934590 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.934604 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.934614 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.934624 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934634 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934655 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934664 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.934674 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.934688 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.934698 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.934818 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407802 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934835 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407802 cr=0x8f09180)
2015-03-31 11:02:25.934838 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407802 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.934841 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407802 cr=0x8f09180) #1000006b2ce
2015-03-31 11:02:25.934842 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ce snap head
2015-03-31 11:02:25.934844 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.934845 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.934858 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407802 cr=0x8f09180)
2015-03-31 11:02:25.934860 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.934875 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.934885 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.934895 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.934904 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.934918 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.934932 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.934942 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.934952 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.934961 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.934972 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.934980 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_pin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10] now 1+0
2015-03-31 11:02:25.934990 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.935005 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.935019 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.935030 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.935040 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.935049 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.935059 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.935079 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.935093 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407802 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.935097 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407802 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.935108 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.935111 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.935115 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:25.935119 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.935132 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407802 cr=0x8f09180)
2015-03-31 11:02:25.935151 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.935167 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.935181 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.935191 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.935201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.935211 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.935221 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.935230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.935240 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.935254 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.935265 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.935275 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_unpin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10] now 0+0
2015-03-31 11:02:25.975057 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407803 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975078 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407803 cr=0x26902f80)
2015-03-31 11:02:25.975083 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407803 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975086 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407803 cr=0x26902f80) #1000006026a
2015-03-31 11:02:25.975088 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.975090 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.975091 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.975108 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407803 cr=0x26902f80)
2015-03-31 11:02:25.975111 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.975128 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.975139 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.975149 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.975163 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.975178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.975187 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.975198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.975208 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.975219 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975233 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975258 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975269 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975279 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975289 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975299 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31420} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975316 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407803 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975320 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407803 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975332 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.975336 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.975340 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31421
2015-03-31 11:02:25.975343 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31421 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.975357 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407803 cr=0x26902f80)
2015-03-31 11:02:25.975376 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975414 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975428 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975438 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975448 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975458 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975498 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.975512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.975522 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.975560 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407804 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975577 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407804 cr=0xab85000)
2015-03-31 11:02:25.975579 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407804 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975582 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407804 cr=0xab85000) #1000006026a
2015-03-31 11:02:25.975584 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.975585 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.975586 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.975599 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407804 cr=0xab85000)
2015-03-31 11:02:25.975601 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.975615 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.975625 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.975634 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.975648 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.975662 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.975672 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.975683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.975692 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.975702 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975717 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975740 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975750 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975771 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975780 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975795 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975804 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31421} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975819 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407804 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975822 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407804 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.975832 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.975834 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.975837 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31422
2015-03-31 11:02:25.975840 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31422 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.975852 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407804 cr=0xab85000)
2015-03-31 11:02:25.975871 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975886 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.975900 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975910 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.975920 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975929 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975950 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975959 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.975969 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.975983 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.975993 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.976031 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4d follows 0 op update
2015-03-31 11:02:25.976034 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976041 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.976043 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.976058 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.976059 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976065 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976073 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:25.976075 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976086 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976105 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976112 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:25.976114 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976123 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976127 7fbe406af700  5 mds.0.log _submit_thread 5419630910~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:25.976130 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976135 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976141 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976146 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976152 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976158 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.976167 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.976192 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407805 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.976211 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407805 cr=0x2645aa80)
2015-03-31 11:02:25.976214 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407805 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.976217 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407805 cr=0x2645aa80) #1000006b2ce
2015-03-31 11:02:25.976219 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ce snap head
2015-03-31 11:02:25.976220 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.976221 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.976234 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407805 cr=0x2645aa80)
2015-03-31 11:02:25.976237 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.976251 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.976262 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.976271 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.976280 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.976305 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.976318 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.976327 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.976338 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.976346 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.976356 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.976364 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_pin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10] now 1+0
2015-03-31 11:02:25.976373 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.976388 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.976401 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.976423 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.976432 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.976441 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.976450 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.976459 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.976473 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407805 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.976476 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407805 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.976486 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.976489 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.976493 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:25.976496 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.976509 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407805 cr=0x2645aa80)
2015-03-31 11:02:25.976528 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.976544 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.976558 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.976568 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.976589 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.976599 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.976609 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.976619 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.976627 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.976642 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.976652 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.976662 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_unpin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10] now 0+0
2015-03-31 11:02:25.977791 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407806 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.977812 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407806 cr=0x43d0280)
2015-03-31 11:02:25.977814 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407806 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.977817 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407806 cr=0x43d0280) #1000006026a
2015-03-31 11:02:25.977819 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.977821 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.977822 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.977839 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407806 cr=0x43d0280)
2015-03-31 11:02:25.977842 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.977858 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.977869 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.977879 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.977892 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.977907 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.977916 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.977928 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.977937 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.977948 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.977962 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.977976 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.977987 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.978007 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978016 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978037 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978046 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31422} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978063 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407806 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.978067 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407806 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.978077 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.978081 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.978085 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31423
2015-03-31 11:02:25.978087 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31423 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.978100 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407806 cr=0x43d0280)
2015-03-31 11:02:25.978120 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.978136 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.978150 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.978160 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.978170 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978180 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978210 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978220 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.978234 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.978245 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.978356 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4d follows 0 op update
2015-03-31 11:02:25.978358 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978368 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:25.978370 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.978385 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:25.978386 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978393 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978401 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:25.978403 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978408 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978416 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978422 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:25.978423 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978430 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978436 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978442 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978448 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:25.978450 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:25.978451 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e4d [2,head] /test_small/small1/blarg10052 auth v136922 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b37b8]
2015-03-31 11:02:25.978458 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:25.978472 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407807 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.978487 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407807 cr=0x25f4b980)
2015-03-31 11:02:25.978489 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407807 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.978492 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407807 cr=0x25f4b980) #1000006b2ce
2015-03-31 11:02:25.978494 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ce snap head
2015-03-31 11:02:25.978495 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.978496 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.978507 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407807 cr=0x25f4b980)
2015-03-31 11:02:25.978510 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.978525 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.978535 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.978545 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.978553 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.978566 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.978580 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.978589 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.978599 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.978608 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.978629 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10]
2015-03-31 11:02:25.978649 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_pin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10] now 1+0
2015-03-31 11:02:25.978657 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.978670 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.978683 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.978693 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.978702 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978711 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978720 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.978729 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.978742 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407807 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.978746 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407807 getattr Xs #1000006b2ce 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.978756 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.978759 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.978763 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:25.978766 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.978779 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407807 cr=0x25f4b980)
2015-03-31 11:02:25.978802 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.978818 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.978832 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.978842 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.978852 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978861 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.978882 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.978892 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f411f10]
2015-03-31 11:02:25.978901 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.978915 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.978926 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:25.978935 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) auth_unpin by 0x25c25500 on [inode 1000006b2ce [2,head] /test_small/small5/blarg10052 auth v178712 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f411f10] now 0+0
2015-03-31 11:02:25.979051 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407808 readdir #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.979067 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407808 cr=0x26903980)
2015-03-31 11:02:25.979070 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407808 readdir #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.979073 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407808 cr=0x26903980) #1000006026a
2015-03-31 11:02:25.979074 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:25.979075 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.979076 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.979090 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407808 cr=0x26903980)
2015-03-31 11:02:25.979093 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.979107 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.979117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.979127 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.979140 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.979154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.979163 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.979174 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:25.979183 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:25.979193 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.979207 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.979221 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.979231 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.979241 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979250 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979261 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979271 7fbe462be700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979281 7fbe462be700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979291 7fbe462be700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (idft sync r=1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31423} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979329 7fbe462be700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:25.979331 7fbe462be700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178713 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:25.979339 7fbe462be700 10 mds.0.server snapid head
2015-03-31 11:02:25.979343 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:25.979346 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979350 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:25.979352 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979355 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:25.979357 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979359 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:25.979361 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979364 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:25.979365 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979368 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:25.979370 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979372 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.979374 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979377 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.979378 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979381 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.979383 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979386 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.979387 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979390 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.979391 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979394 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.979395 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979398 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:25.979400 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979403 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.979404 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979407 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.979408 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979411 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.979413 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979416 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.979417 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979420 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.979421 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979424 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.979425 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979428 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:25.979430 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979432 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.979434 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979436 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.979438 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979441 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.979442 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979445 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.979446 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979449 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.979451 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979453 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:25.979455 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979457 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.979459 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979461 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.979462 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979465 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.979466 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979469 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.979471 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979474 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.979475 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979478 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.979480 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979482 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:25.979484 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979486 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.979488 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979491 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.979492 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979495 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.979496 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979499 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.979500 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979503 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.979504 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979507 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:25.979509 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979512 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.979514 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979516 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.979518 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979520 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.979522 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979524 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.979526 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979528 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.979530 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979532 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.979534 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979537 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:25.979539 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979541 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.979543 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979545 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.979547 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979550 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.979551 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979554 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.979555 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979558 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:25.979560 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979562 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.979564 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979566 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.979568 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979571 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.979572 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979575 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.979577 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979579 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.979581 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979583 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:25.979585 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979588 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.979589 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979591 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.979593 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979596 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.979597 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979600 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.979602 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979604 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.979606 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979608 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.979610 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979612 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:25.979614 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979658 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407808 readdir #1000006026a 2015-03-31 11:03:03.000000) v2 readdir num=64 bytes=17472 end=1 complete=1
2015-03-31 11:02:25.979662 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40407808 readdir #1000006026a 2015-03-31 11:03:03.000000) v2 readdir num=64 end=1 complete=1
2015-03-31 11:02:25.979665 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407808 readdir #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.979674 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.979677 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.979680 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31424
2015-03-31 11:02:25.979682 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31424 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.979694 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407808 cr=0x26903980)
2015-03-31 11:02:25.979712 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.979727 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.979740 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.979750 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.979761 7fbe462be700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979771 7fbe462be700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979786 7fbe462be700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979807 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979818 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979827 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:25.979837 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.979851 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.979862 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:25.979979 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407809 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.979996 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407809 cr=0x26907580)
2015-03-31 11:02:25.979998 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407809 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.980001 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407809 cr=0x26907580) #10000004e4f
2015-03-31 11:02:25.980003 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4f snap head
2015-03-31 11:02:25.980008 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:25.980009 7fbe462be700 10 mds.0.server ref is [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:25.980019 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407809 cr=0x26907580)
2015-03-31 11:02:25.980022 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.980036 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.980047 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.980055 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:25.980062 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:25.980076 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:25.980090 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:25.980100 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:25.980110 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:25.980119 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:25.980128 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:25.980133 7fbe462be700 10 mds.0.cache.ino(10000004e4f) auth_pin by 0x25c25500 on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80] now 1+0
2015-03-31 11:02:25.980140 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.980154 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.980169 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.980179 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.980190 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.980199 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.980208 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980214 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980219 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980234 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980260 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407809 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.980264 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407809 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:25.980274 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:25.980277 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:25.980281 7fbe462be700 10 mds.0.cache.ino(10000004e4f) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:25.980284 7fbe462be700 10 mds.0.cache.ino(10000004e4f) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:25.980296 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407809 cr=0x26907580)
2015-03-31 11:02:25.980315 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.980330 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:25.980344 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.980354 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:25.980364 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.980372 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:25.980392 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980399 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980411 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:25.980416 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:25.980430 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:25.980441 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:25.980450 7fbe462be700 10 mds.0.cache.ino(10000004e4f) auth_unpin by 0x25c25500 on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b2e80] now 0+0
2015-03-31 11:02:26.020029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407810 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.020050 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407810 cr=0x25f48a00)
2015-03-31 11:02:26.020055 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407810 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.020059 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407810 cr=0x25f48a00) #10000004e4f
2015-03-31 11:02:26.020061 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e4f snap head
2015-03-31 11:02:26.020062 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.020064 7fbe462be700 10 mds.0.server ref is [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.020075 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407810 cr=0x25f48a00)
2015-03-31 11:02:26.020078 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.020095 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.020106 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.020115 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.020122 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.020136 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.020151 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.020160 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.020172 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.020180 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.020190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.020196 7fbe462be700 10 mds.0.cache.ino(10000004e4f) auth_pin by 0x25c25500 on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80] now 1+0
2015-03-31 11:02:26.020204 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.020219 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.020233 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.020244 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.020254 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.020273 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.020293 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020305 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020310 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020323 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407810 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.020327 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407810 getattr Xs #10000004e4f 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.020338 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.020341 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.020346 7fbe462be700 10 mds.0.cache.ino(10000004e4f) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.020348 7fbe462be700 10 mds.0.cache.ino(10000004e4f) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.020361 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407810 cr=0x25f48a00)
2015-03-31 11:02:26.020380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.020396 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.020411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.020421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.020432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.020440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.020461 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020468 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020480 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b2e80]
2015-03-31 11:02:26.020487 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.020502 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.020513 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.020522 7fbe462be700 10 mds.0.cache.ino(10000004e4f) auth_unpin by 0x25c25500 on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b2e80] now 0+0
2015-03-31 11:02:26.020788 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407811 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.020806 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407811 cr=0x968e900)
2015-03-31 11:02:26.020808 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407811 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.020811 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407811 cr=0x968e900) #1000006026a
2015-03-31 11:02:26.020813 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.020814 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.020815 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.020828 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407811 cr=0x968e900)
2015-03-31 11:02:26.020831 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.020845 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.020855 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.020865 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.020878 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.020892 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.020901 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.020912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.020920 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.020930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.020944 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.020958 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.020969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.020979 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.020988 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.020998 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.021008 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31424} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.021024 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407811 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.021028 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407811 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.021049 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.021053 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.021069 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31425
2015-03-31 11:02:26.021071 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31425 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.021083 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407811 cr=0x968e900)
2015-03-31 11:02:26.021102 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.021117 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.021131 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.021140 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.021150 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31425} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.021160 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31425} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.021180 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31425} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.021190 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31425} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.021199 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.021213 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.021224 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31425} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:26.021611 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407812 create #1000006026a/blarg10053 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.021632 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407812 cr=0x49d3480)
2015-03-31 11:02:26.021636 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021653 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:26.021655 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021666 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.021667 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021679 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021689 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021698 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021708 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.021709 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407812 create #1000006026a/blarg10053 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.021712 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10053
2015-03-31 11:02:26.021713 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407812 cr=0x49d3480) #1000006026a/blarg10053
2015-03-31 11:02:26.021716 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10053
2015-03-31 11:02:26.021717 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.021718 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.021719 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178713 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.021727 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178713 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.021735 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10053 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178713 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.021743 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407812 cr=0x49d3480)
2015-03-31 11:02:26.021750 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.021765 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.021776 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021790 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dversion lock) v=177696 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772340]
2015-03-31 11:02:26.021798 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.021812 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.021838 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.021858 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.021868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.021877 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.021886 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dversion lock) v=177696 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772340]
2015-03-31 11:02:26.021890 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10053) auth_pin by 0x25c25500 on [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dversion lock) v=177696 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340] now 1+0
2015-03-31 11:02:26.021896 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dversion lock) v=177696 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.021901 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177696 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.021905 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177696 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.021911 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177696 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.021915 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177696 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.021920 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10053) auth_pin by 0x6772498 on [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177696 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340] now 2+0
2015-03-31 11:02:26.021925 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x25c25500) [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) v=177696 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.021931 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.021945 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.021958 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.021971 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.021984 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.021994 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022003 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022012 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022021 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022030 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022038 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022047 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022057 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022067 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022076 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022085 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022095 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022104 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022113 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022132 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2cf ([1000006b2d0~353], 851 left)
2015-03-31 11:02:26.022135 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.022137 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2cf [2,head] #1000006b2cf auth v1 s=0 n() (iversion lock) 0x3f4d9df8]
2015-03-31 11:02:26.022141 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178714
2015-03-31 11:02:26.022142 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10053)  pre_dirty [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) pv=178714 v=177696 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.022150 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4d9df8]
2015-03-31 11:02:26.022157 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x25c25500 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:26.022166 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d5800
2015-03-31 11:02:26.022168 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178715
2015-03-31 11:02:26.022169 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178715 v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.022176 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178715 v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.022182 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4d9df8]
2015-03-31 11:02:26.022188 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.022191 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022205 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295286
2015-03-31 11:02:26.022206 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295286 v=3295284 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.022211 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295286 (current v 3295284)
2015-03-31 11:02:26.022212 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178715 v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.022220 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.022221 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x25c25500 on [dir 10000000000 /test_small/ [2,head] auth v=3295285 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:26.022229 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x69898c0
2015-03-31 11:02:26.022231 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295287
2015-03-31 11:02:26.022232 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022243 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022253 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022264 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.022265 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.10375 < 1, stopping
2015-03-31 11:02:26.022270 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022280 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.022283 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295286 v=3295284 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.022289 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31425} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022301 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4d9df8]
2015-03-31 11:02:26.022308 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.022311 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022318 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.022319 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022327 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022334 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022339 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022346 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022352 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022359 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022365 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022372 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022378 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022384 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022390 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022397 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022403 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022410 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022419 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.022420 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.022423 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4d9df8 tracedn 0x6772340
2015-03-31 11:02:26.022425 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x25c25500) [dentry #1/test_small/small5/blarg10053 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) pv=178714 v=177696 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772340]
2015-03-31 11:02:26.022431 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407812 create #1000006026a/blarg10053 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.022440 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.022443 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31426
2015-03-31 11:02:26.022445 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31426 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.022451 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.022454 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.022457 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) including xattrs version 0
2015-03-31 11:02:26.022493 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.022522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.022537 7fbe406af700  5 mds.0.log _submit_thread 5419631769~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.022537 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.022550 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.022575 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022586 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022597 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022608 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022618 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022630 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022642 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022652 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022663 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022673 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022916 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407813 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.022935 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407813 cr=0xab83e80)
2015-03-31 11:02:26.022937 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407813 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.022941 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407813 cr=0xab83e80) #1000006b2cf
2015-03-31 11:02:26.022942 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cf snap head
2015-03-31 11:02:26.022944 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.022945 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4d9df8]
2015-03-31 11:02:26.022958 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407813 cr=0xab83e80)
2015-03-31 11:02:26.022961 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.022976 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.022987 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.022998 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4d9df8]
2015-03-31 11:02:26.023007 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023021 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.023036 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023045 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.023056 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023066 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.023077 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4d9df8]
2015-03-31 11:02:26.023086 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_pin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4d9df8] now 1+0
2015-03-31 11:02:26.023096 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023111 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023126 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023136 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023147 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023157 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023178 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.023199 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.023214 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407813 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.023218 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407813 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.023228 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.023231 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.023235 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.023238 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.023251 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407813 cr=0xab83e80)
2015-03-31 11:02:26.023270 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023285 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023299 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023310 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023320 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023330 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023352 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.023362 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.023372 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.023387 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.023398 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.023408 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_unpin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8] now 0+0
2015-03-31 11:02:26.023652 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407814 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.023670 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407814 cr=0x968af80)
2015-03-31 11:02:26.023672 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407814 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.023675 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407814 cr=0x968af80) #1000006b2cf
2015-03-31 11:02:26.023677 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cf snap head
2015-03-31 11:02:26.023678 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.023681 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.023693 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407814 cr=0x968af80)
2015-03-31 11:02:26.023695 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023711 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023721 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023732 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.023741 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023755 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.023769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023779 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.023794 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023804 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.023814 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.023824 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_pin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8] now 1+0
2015-03-31 11:02:26.023834 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023848 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.023862 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023872 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.023883 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023893 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.023914 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.023936 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.023951 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407814 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.023955 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407814 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.023965 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.023968 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.023972 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.023974 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.023987 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407814 cr=0x968af80)
2015-03-31 11:02:26.024006 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.024022 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.024035 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.024046 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.024056 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.024078 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.024088 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.024098 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.024108 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.024122 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.024133 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.024144 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_unpin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8] now 0+0
2015-03-31 11:02:26.028094 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4f follows 0 op update
2015-03-31 11:02:26.028098 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028109 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.028111 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.028129 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.028130 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028137 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028145 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.028147 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028158 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028178 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028185 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.028186 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028193 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028198 7fbe406af700  5 mds.0.log _submit_thread 5419633409~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.028200 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028206 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028211 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028218 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028224 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028231 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.028241 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.068029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407815 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.068051 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407815 cr=0x3b0e680)
2015-03-31 11:02:26.068055 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407815 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.068059 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407815 cr=0x3b0e680) #1000006b2cf
2015-03-31 11:02:26.068061 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cf snap head
2015-03-31 11:02:26.068062 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.068063 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.068080 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407815 cr=0x3b0e680)
2015-03-31 11:02:26.068083 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.068100 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.068112 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.068123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.068134 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.068148 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.068163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.068173 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.068184 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.068194 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.068205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.068214 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_pin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8] now 1+0
2015-03-31 11:02:26.068225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.068240 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.068255 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.068275 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.068296 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.068306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.068315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.068325 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.068340 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407815 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.068344 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407815 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.068355 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.068359 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.068363 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.068366 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.068380 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407815 cr=0x3b0e680)
2015-03-31 11:02:26.068399 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.068415 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.068430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.068441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.068451 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.068473 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.068483 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.068494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.068503 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.068518 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.068528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.068539 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_unpin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8] now 0+0
2015-03-31 11:02:26.069750 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e4f follows 0 op update
2015-03-31 11:02:26.069754 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069765 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.069767 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.069792 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.069793 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069800 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069809 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.069810 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069816 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069823 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069829 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.069830 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069838 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069844 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069851 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069857 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.069858 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.069859 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e4f [2,head] /test_small/small1/blarg10053 auth v136924 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2e80]
2015-03-31 11:02:26.069867 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.109043 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407816 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.109065 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407816 cr=0x25f49900)
2015-03-31 11:02:26.109069 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407816 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.109073 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407816 cr=0x25f49900) #1000006b2cf
2015-03-31 11:02:26.109075 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2cf snap head
2015-03-31 11:02:26.109076 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.109077 7fbe462be700 10 mds.0.server ref is [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.109094 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407816 cr=0x25f49900)
2015-03-31 11:02:26.109097 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109115 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.109139 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.109149 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109164 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.109178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109188 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.109200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.109210 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.109221 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.109231 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_pin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8] now 1+0
2015-03-31 11:02:26.109241 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109257 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109281 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109313 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.109323 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.109332 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.109341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.109357 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407816 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.109361 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407816 getattr Xs #1000006b2cf 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.109371 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.109375 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.109379 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:26.109382 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.109396 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407816 cr=0x25f49900)
2015-03-31 11:02:26.109415 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109431 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109466 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.109476 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.109498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.109508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d9df8]
2015-03-31 11:02:26.109518 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.109533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.109543 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.109554 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) auth_unpin by 0x242c9400 on [inode 1000006b2cf [2,head] {#1000006b2cf /test_small/small5/blarg10053} auth v178714 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d9df8] now 0+0
2015-03-31 11:02:26.109840 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407817 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.109858 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407817 cr=0x968a580)
2015-03-31 11:02:26.109860 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407817 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.109863 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407817 cr=0x968a580) #10000004e51
2015-03-31 11:02:26.109865 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e51 snap head
2015-03-31 11:02:26.109866 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.109867 7fbe462be700 10 mds.0.server ref is [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.109879 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407817 cr=0x968a580)
2015-03-31 11:02:26.109882 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109897 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109907 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.109916 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.109923 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.109936 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.109950 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.109960 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.109970 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.109979 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.109988 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.109994 7fbe462be700 10 mds.0.cache.ino(10000004e51) auth_pin by 0x242c9400 on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548] now 1+0
2015-03-31 11:02:26.110001 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.110015 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.110028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.110039 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.110049 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.110059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.110068 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110074 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110081 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110087 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110112 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407817 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.110128 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407817 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.110138 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.110141 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.110145 7fbe462be700 10 mds.0.cache.ino(10000004e51) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.110147 7fbe462be700 10 mds.0.cache.ino(10000004e51) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.110160 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407817 cr=0x968a580)
2015-03-31 11:02:26.110178 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.110193 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.110207 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.110217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.110227 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.110236 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.110256 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110263 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110270 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110276 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.110282 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.110296 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.110307 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.110316 7fbe462be700 10 mds.0.cache.ino(10000004e51) auth_unpin by 0x242c9400 on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b2548] now 0+0
2015-03-31 11:02:26.110602 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407818 lookup #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.110619 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407818 cr=0x236b9180)
2015-03-31 11:02:26.110622 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407818 lookup #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.110625 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407818 cr=0x236b9180) #1000006026a/blarg10054
2015-03-31 11:02:26.110627 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.110630 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10054 [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock) v=177698 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772520]
2015-03-31 11:02:26.110638 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.110640 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407818 lookup #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.110649 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.110658 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407818 cr=0x236b9180)
2015-03-31 11:02:26.111121 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407819 lookup #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.111140 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407819 cr=0x26907080)
2015-03-31 11:02:26.111142 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407819 lookup #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.111145 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407819 cr=0x26907080) #1000006026a/blarg10054
2015-03-31 11:02:26.111147 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.111150 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10054 [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock) v=177698 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772520]
2015-03-31 11:02:26.111158 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.111160 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407819 lookup #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.111171 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.111184 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407819 cr=0x26907080)
2015-03-31 11:02:26.111647 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407820 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.111668 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407820 cr=0x5e8a080)
2015-03-31 11:02:26.111671 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407820 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.111674 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407820 cr=0x5e8a080) #10000004e51
2015-03-31 11:02:26.111676 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e51 snap head
2015-03-31 11:02:26.111677 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.111678 7fbe462be700 10 mds.0.server ref is [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.111689 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407820 cr=0x5e8a080)
2015-03-31 11:02:26.111693 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.111709 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.111721 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.111731 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.111737 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.111751 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.111765 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.111775 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.111791 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.111801 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.111810 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.111815 7fbe462be700 10 mds.0.cache.ino(10000004e51) auth_pin by 0x242c9400 on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548] now 1+0
2015-03-31 11:02:26.111823 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.111837 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.111851 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.111872 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.111881 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.111901 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.111910 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.111916 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.111921 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.111927 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.111940 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407820 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.111944 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407820 getattr Xs #10000004e51 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.111955 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.111959 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.111963 7fbe462be700 10 mds.0.cache.ino(10000004e51) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.111965 7fbe462be700 10 mds.0.cache.ino(10000004e51) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.111979 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407820 cr=0x5e8a080)
2015-03-31 11:02:26.111998 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112014 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112028 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112038 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112048 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.112056 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.112076 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.112083 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.112089 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.112095 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b2548]
2015-03-31 11:02:26.112102 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.112115 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.112126 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242c9400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.112135 7fbe462be700 10 mds.0.cache.ino(10000004e51) auth_unpin by 0x242c9400 on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b2548] now 0+0
2015-03-31 11:02:26.112422 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407821 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.112439 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407821 cr=0xaee8a00)
2015-03-31 11:02:26.112442 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407821 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.112445 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407821 cr=0xaee8a00) #1000006026a
2015-03-31 11:02:26.112447 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.112448 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.112449 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112464 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407821 cr=0xaee8a00)
2015-03-31 11:02:26.112466 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112481 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112491 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112501 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112515 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.112529 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112538 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.112549 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112558 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.112569 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112583 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112597 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112607 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112617 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112627 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112638 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112648 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31426} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112665 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407821 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.112684 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407821 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.112706 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.112708 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.112713 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31427
2015-03-31 11:02:26.112715 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31427 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.112727 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407821 cr=0xaee8a00)
2015-03-31 11:02:26.112746 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112762 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.112775 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112790 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.112801 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112812 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112833 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112843 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.112853 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.112867 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.112877 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.113247 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407822 create #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.113267 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407822 cr=0x8f08f00)
2015-03-31 11:02:26.113271 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407822 create #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.113274 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10054
2015-03-31 11:02:26.113275 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407822 cr=0x8f08f00) #1000006026a/blarg10054
2015-03-31 11:02:26.113278 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10054
2015-03-31 11:02:26.113279 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.113280 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.113282 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178715 v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.113292 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178715 v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.113299 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10054 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178715 v=178713 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.113310 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407822 cr=0x8f08f00)
2015-03-31 11:02:26.113315 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.113334 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113346 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113357 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock) v=177698 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772520]
2015-03-31 11:02:26.113364 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.113378 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.113392 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113402 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.113413 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113423 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.113433 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock) v=177698 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772520]
2015-03-31 11:02:26.113438 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10054) auth_pin by 0x242c9400 on [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock) v=177698 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520] now 1+0
2015-03-31 11:02:26.113445 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock) v=177698 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.113449 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177698 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.113455 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177698 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.113460 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177698 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.113476 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177698 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.113480 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10054) auth_pin by 0x6772678 on [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177698 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520] now 2+0
2015-03-31 11:02:26.113486 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242c9400) [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dn xlock x=1 by 0x242c9400) (dversion lock w=1 last_client=708310) v=177698 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.113505 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.113519 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.113532 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.113545 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.113558 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113568 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113577 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113586 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113596 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113605 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113615 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113625 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113634 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113643 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113653 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113663 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113672 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113682 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113700 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d0 ([1000006b2d1~352], 850 left)
2015-03-31 11:02:26.113703 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.113704 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d0 [2,head] #1000006b2d0 auth v1 s=0 n() (iversion lock) 0x3f405440]
2015-03-31 11:02:26.113708 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178716
2015-03-31 11:02:26.113709 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10054)  pre_dirty [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dn xlock x=1 by 0x242c9400) (dversion lock w=1 last_client=708310) pv=178716 v=177698 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.113717 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f405440]
2015-03-31 11:02:26.113724 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242c9400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178716 v=178713 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:26.113733 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2694fb10
2015-03-31 11:02:26.113734 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178717
2015-03-31 11:02:26.113736 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178717 v=178713 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.113742 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178717 v=178713 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.113749 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f405440]
2015-03-31 11:02:26.113755 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.113757 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295286 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113770 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295288
2015-03-31 11:02:26.113771 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295288 v=3295284 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.113775 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295288 (current v 3295284)
2015-03-31 11:02:26.113777 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178717 v=178713 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.113787 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.113788 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242c9400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295288 v=3295285 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:26.113796 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2694c780
2015-03-31 11:02:26.113797 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295289
2015-03-31 11:02:26.113798 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113809 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113819 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113830 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.113831 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.195319 < 1, stopping
2015-03-31 11:02:26.113836 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.113846 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.113850 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295288 v=3295284 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.113854 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31427} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.113868 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f405440]
2015-03-31 11:02:26.113875 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.113877 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f405440]
2015-03-31 11:02:26.113885 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.113886 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113894 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113900 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113907 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113914 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113920 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113927 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113934 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113940 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113945 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113952 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113958 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113965 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113971 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113978 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f405440]
2015-03-31 11:02:26.113988 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.113989 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.113991 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f405440 tracedn 0x6772520
2015-03-31 11:02:26.113993 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242c9400) [dentry #1/test_small/small5/blarg10054 [2,head] auth NULL (dn xlock x=1 by 0x242c9400) (dversion lock w=1 last_client=708310) pv=178716 v=177698 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772520]
2015-03-31 11:02:26.114000 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407822 create #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.114008 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.114011 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31428
2015-03-31 11:02:26.114013 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31428 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.114019 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.114022 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.114024 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) including xattrs version 0
2015-03-31 11:02:26.114061 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114090 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114105 7fbe406af700  5 mds.0.log _submit_thread 5419634268~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.114105 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114117 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114142 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114153 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114164 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114175 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114185 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114197 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114229 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114239 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114465 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407823 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.114485 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407823 cr=0x968df00)
2015-03-31 11:02:26.114487 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407823 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.114490 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407823 cr=0x968df00) #1000006b2d0
2015-03-31 11:02:26.114492 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d0 snap head
2015-03-31 11:02:26.114494 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.114495 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f405440]
2015-03-31 11:02:26.114508 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407823 cr=0x968df00)
2015-03-31 11:02:26.114511 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114526 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114536 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114547 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f405440]
2015-03-31 11:02:26.114557 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114570 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.114585 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114594 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.114605 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114615 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.114626 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f405440]
2015-03-31 11:02:26.114635 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_pin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f405440] now 1+0
2015-03-31 11:02:26.114645 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114660 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114674 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114685 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114696 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114707 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114732 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.114752 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.114767 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407823 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.114770 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407823 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.114780 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.114788 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.114792 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.114794 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.114807 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407823 cr=0x968df00)
2015-03-31 11:02:26.114825 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114841 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.114855 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114866 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.114876 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114887 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.114907 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.114918 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.114928 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.114942 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.114953 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.114964 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_unpin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440] now 0+0
2015-03-31 11:02:26.115190 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407824 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.115207 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407824 cr=0x25f4cd80)
2015-03-31 11:02:26.115209 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407824 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.115212 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407824 cr=0x25f4cd80) #1000006b2d0
2015-03-31 11:02:26.115214 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d0 snap head
2015-03-31 11:02:26.115216 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.115217 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.115229 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407824 cr=0x25f4cd80)
2015-03-31 11:02:26.115231 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.115246 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.115257 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.115267 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.115277 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.115290 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.115305 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.115314 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.115325 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.115335 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.115345 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.115354 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_pin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440] now 1+0
2015-03-31 11:02:26.115364 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.115379 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.115393 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.115403 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.115414 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.115424 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.115435 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.115455 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.115483 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407824 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.115487 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407824 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.115496 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.115499 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.115503 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.115506 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.115518 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407824 cr=0x25f4cd80)
2015-03-31 11:02:26.115538 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.115554 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.115568 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.115578 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.115599 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.115608 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.115618 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.115629 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.115639 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.115654 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.115664 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.115675 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_unpin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440] now 0+0
2015-03-31 11:02:26.119885 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e51 follows 0 op update
2015-03-31 11:02:26.119888 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119899 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.119901 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.119919 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.119920 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119927 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119935 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.119936 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119947 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119967 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119974 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.119975 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119984 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119988 7fbe406af700  5 mds.0.log _submit_thread 5419635908~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.119991 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.119997 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.120002 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.120009 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.120014 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.120020 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.120029 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.159020 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407825 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.159042 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407825 cr=0x9cc5c80)
2015-03-31 11:02:26.159046 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407825 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.159050 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407825 cr=0x9cc5c80) #1000006b2d0
2015-03-31 11:02:26.159052 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d0 snap head
2015-03-31 11:02:26.159053 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.159055 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.159071 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407825 cr=0x9cc5c80)
2015-03-31 11:02:26.159074 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.159091 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.159103 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.159115 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.159125 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.159139 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.159154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.159163 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.159175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.159185 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.159196 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.159206 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_pin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440] now 1+0
2015-03-31 11:02:26.159216 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.159232 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.159258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.159279 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.159289 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.159299 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.159309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.159318 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.159333 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407825 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.159337 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407825 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.159348 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.159352 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.159356 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.159359 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.159373 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407825 cr=0x9cc5c80)
2015-03-31 11:02:26.159392 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.159408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.159422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.159432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.159443 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.159453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.159475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.159485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.159495 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.159510 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.159520 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.159531 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_unpin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440] now 0+0
2015-03-31 11:02:26.160789 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e51 follows 0 op update
2015-03-31 11:02:26.160792 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160804 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.160806 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.160824 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.160825 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160832 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160841 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.160842 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160848 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160855 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160862 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.160863 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160869 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160875 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160881 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160888 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.160889 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.160890 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e51 [2,head] /test_small/small1/blarg10054 auth v136926 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b2548]
2015-03-31 11:02:26.160897 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.200029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407826 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.200050 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407826 cr=0xaeeda00)
2015-03-31 11:02:26.200052 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407826 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.200055 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407826 cr=0xaeeda00) #1000006b2d0
2015-03-31 11:02:26.200057 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d0 snap head
2015-03-31 11:02:26.200058 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.200060 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.200076 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407826 cr=0xaeeda00)
2015-03-31 11:02:26.200079 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200097 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200108 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.200120 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.200130 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200145 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.200159 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200169 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.200180 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.200190 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.200200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.200210 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_pin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440] now 1+0
2015-03-31 11:02:26.200220 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200235 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200250 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200291 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.200301 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.200311 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.200320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.200334 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407826 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.200338 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407826 getattr Xs #1000006b2d0 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.200348 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.200352 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.200356 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:26.200359 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.200372 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407826 cr=0xaeeda00)
2015-03-31 11:02:26.200391 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200407 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.200452 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.200474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.200485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f405440]
2015-03-31 11:02:26.200495 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.200510 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.200520 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.200531 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) auth_unpin by 0x2367d000 on [inode 1000006b2d0 [2,head] {#1000006b2d0 /test_small/small5/blarg10054} auth v178716 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f405440] now 0+0
2015-03-31 11:02:26.200791 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407827 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.200809 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407827 cr=0x60a8500)
2015-03-31 11:02:26.200811 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407827 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.200814 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407827 cr=0x60a8500) #10000004e8c
2015-03-31 11:02:26.200816 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e8c snap head
2015-03-31 11:02:26.200820 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.200821 7fbe462be700 10 mds.0.server ref is [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.200833 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407827 cr=0x60a8500)
2015-03-31 11:02:26.200836 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200851 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200862 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.200871 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.200878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200891 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.200906 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200915 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.200926 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.200935 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.200944 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.200950 7fbe462be700 10 mds.0.cache.ino(10000004e8c) auth_pin by 0x2367d000 on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10] now 1+0
2015-03-31 11:02:26.200957 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200972 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.200986 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.200996 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.201006 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.201015 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.201024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201041 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201048 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201054 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201078 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407827 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.201082 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407827 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.201092 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.201095 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.201099 7fbe462be700 10 mds.0.cache.ino(10000004e8c) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.201101 7fbe462be700 10 mds.0.cache.ino(10000004e8c) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.201114 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407827 cr=0x60a8500)
2015-03-31 11:02:26.201133 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.201149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.201163 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.201173 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.201184 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.201192 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.201213 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201220 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201225 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201232 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.201239 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.201253 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.201264 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.201273 7fbe462be700 10 mds.0.cache.ino(10000004e8c) auth_unpin by 0x2367d000 on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b1c10] now 0+0
2015-03-31 11:02:26.201642 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407828 lookup #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.201663 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407828 cr=0x23fbb700)
2015-03-31 11:02:26.201665 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407828 lookup #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.201668 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407828 cr=0x23fbb700) #1000006026a/blarg10055
2015-03-31 11:02:26.201670 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.201673 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10055 [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock) v=177700 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772700]
2015-03-31 11:02:26.201682 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.201683 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407828 lookup #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.201696 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.201708 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407828 cr=0x23fbb700)
2015-03-31 11:02:26.202140 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407829 lookup #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.202159 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407829 cr=0x682d000)
2015-03-31 11:02:26.202162 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407829 lookup #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.202165 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407829 cr=0x682d000) #1000006026a/blarg10055
2015-03-31 11:02:26.202167 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.202170 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10055 [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock) v=177700 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772700]
2015-03-31 11:02:26.202178 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.202179 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407829 lookup #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.202191 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.202203 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407829 cr=0x682d000)
2015-03-31 11:02:26.202620 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407830 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.202642 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407830 cr=0x9ae1400)
2015-03-31 11:02:26.202644 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407830 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.202647 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407830 cr=0x9ae1400) #10000004e8c
2015-03-31 11:02:26.202649 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e8c snap head
2015-03-31 11:02:26.202650 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.202651 7fbe462be700 10 mds.0.server ref is [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.202663 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407830 cr=0x9ae1400)
2015-03-31 11:02:26.202667 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.202684 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.202696 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.202705 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.202713 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.202727 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.202741 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.202751 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.202761 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.202770 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.202780 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.202789 7fbe462be700 10 mds.0.cache.ino(10000004e8c) auth_pin by 0x2367d000 on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10] now 1+0
2015-03-31 11:02:26.202797 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.202811 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.202826 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.202846 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.202868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.202876 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.202885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.202891 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.202897 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.202902 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.202915 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407830 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.202919 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407830 getattr Xs #10000004e8c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.202930 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.202934 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.202938 7fbe462be700 10 mds.0.cache.ino(10000004e8c) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.202940 7fbe462be700 10 mds.0.cache.ino(10000004e8c) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.202955 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407830 cr=0x9ae1400)
2015-03-31 11:02:26.202974 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.202990 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.203004 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203015 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203025 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.203034 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.203054 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.203062 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.203069 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.203075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b1c10]
2015-03-31 11:02:26.203081 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.203095 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.203106 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.203115 7fbe462be700 10 mds.0.cache.ino(10000004e8c) auth_unpin by 0x2367d000 on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b1c10] now 0+0
2015-03-31 11:02:26.203371 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407831 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.203388 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407831 cr=0x9ae1b80)
2015-03-31 11:02:26.203391 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407831 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.203394 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407831 cr=0x9ae1b80) #1000006026a
2015-03-31 11:02:26.203396 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.203397 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.203398 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203413 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407831 cr=0x9ae1b80)
2015-03-31 11:02:26.203416 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.203430 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203440 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203451 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.203463 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.203477 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203487 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.203497 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203507 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.203518 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.203532 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.203546 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203556 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203566 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203576 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203587 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203597 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31428} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203614 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407831 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.203635 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407831 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.203657 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.203661 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.203664 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31429
2015-03-31 11:02:26.203666 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31429 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.203679 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407831 cr=0x9ae1b80)
2015-03-31 11:02:26.203698 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.203713 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.203727 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203737 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.203747 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203757 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203779 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203793 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.203803 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.203817 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.203827 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.204208 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407832 create #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.204229 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407832 cr=0x9ae6400)
2015-03-31 11:02:26.204231 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407832 create #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.204234 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10055
2015-03-31 11:02:26.204235 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407832 cr=0x9ae6400) #1000006026a/blarg10055
2015-03-31 11:02:26.204238 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10055
2015-03-31 11:02:26.204239 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.204240 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.204242 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178717 v=178713 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.204252 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178717 v=178713 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.204260 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10055 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178717 v=178713 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.204271 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407832 cr=0x9ae6400)
2015-03-31 11:02:26.204276 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.204307 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204319 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204331 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock) v=177700 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772700]
2015-03-31 11:02:26.204338 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.204353 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.204369 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204379 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.204391 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204402 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.204413 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock) v=177700 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772700]
2015-03-31 11:02:26.204429 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10055) auth_pin by 0x2367d000 on [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock) v=177700 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700] now 1+0
2015-03-31 11:02:26.204434 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock) v=177700 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204440 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177700 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204456 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177700 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204461 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177700 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204466 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177700 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204471 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10055) auth_pin by 0x6772858 on [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177700 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700] now 2+0
2015-03-31 11:02:26.204476 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367d000) [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) v=177700 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204482 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.204498 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.204512 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.204526 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.204540 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204550 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204561 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204571 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204592 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204602 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204612 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204622 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204631 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204641 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204651 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204660 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204670 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204679 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204697 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d1 ([1000006b2d2~351], 849 left)
2015-03-31 11:02:26.204700 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.204701 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d1 [2,head] #1000006b2d1 auth v1 s=0 n() (iversion lock) 0x3f486540]
2015-03-31 11:02:26.204705 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178718
2015-03-31 11:02:26.204707 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10055)  pre_dirty [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) pv=178718 v=177700 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204714 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f486540]
2015-03-31 11:02:26.204721 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367d000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178718 v=178713 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:26.204729 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc69d90
2015-03-31 11:02:26.204731 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178719
2015-03-31 11:02:26.204732 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178719 v=178713 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.204738 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178719 v=178713 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.204745 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f486540]
2015-03-31 11:02:26.204751 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.204755 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295288 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204768 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295290
2015-03-31 11:02:26.204769 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295290 v=3295284 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.204774 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295290 (current v 3295284)
2015-03-31 11:02:26.204775 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178719 v=178713 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.204786 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.204788 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367d000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295290 v=3295285 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:26.204796 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3c32d60
2015-03-31 11:02:26.204797 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295291
2015-03-31 11:02:26.204798 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204810 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204820 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204831 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.204832 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.286317 < 1, stopping
2015-03-31 11:02:26.204836 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.204846 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.204850 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295290 v=3295284 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.204856 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31429} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.204868 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f486540]
2015-03-31 11:02:26.204875 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.204878 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f486540]
2015-03-31 11:02:26.204886 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.204887 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204894 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204900 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204907 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204914 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204921 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204927 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204934 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204940 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204946 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204953 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204959 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204966 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204972 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204978 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f486540]
2015-03-31 11:02:26.204987 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.204988 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.204990 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f486540 tracedn 0x6772700
2015-03-31 11:02:26.204993 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367d000) [dentry #1/test_small/small5/blarg10055 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) pv=178718 v=177700 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772700]
2015-03-31 11:02:26.204999 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407832 create #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.205008 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.205011 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31430
2015-03-31 11:02:26.205013 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31430 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.205019 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.205022 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.205024 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) including xattrs version 0
2015-03-31 11:02:26.205061 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205090 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205105 7fbe406af700  5 mds.0.log _submit_thread 5419636767~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.205105 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205118 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205144 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205155 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205166 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205177 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205187 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205199 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205232 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205242 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205473 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407833 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.205492 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407833 cr=0x2645ad00)
2015-03-31 11:02:26.205495 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407833 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.205498 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407833 cr=0x2645ad00) #1000006b2d1
2015-03-31 11:02:26.205500 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d1 snap head
2015-03-31 11:02:26.205501 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.205502 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f486540]
2015-03-31 11:02:26.205516 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407833 cr=0x2645ad00)
2015-03-31 11:02:26.205518 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205534 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205544 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205555 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f486540]
2015-03-31 11:02:26.205564 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205578 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.205593 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205602 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.205613 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205623 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.205633 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f486540]
2015-03-31 11:02:26.205643 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_pin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f486540] now 1+0
2015-03-31 11:02:26.205652 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205679 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205693 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205704 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205715 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205741 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205761 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.205771 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.205791 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407833 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.205796 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407833 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.205806 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.205810 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.205814 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.205817 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.205831 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407833 cr=0x2645ad00)
2015-03-31 11:02:26.205850 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205866 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.205880 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205891 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.205901 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205912 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.205934 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.205945 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.205955 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.205980 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.205989 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.206000 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_unpin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540] now 0+0
2015-03-31 11:02:26.206216 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407834 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.206234 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407834 cr=0xa251e00)
2015-03-31 11:02:26.206236 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407834 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.206239 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407834 cr=0xa251e00) #1000006b2d1
2015-03-31 11:02:26.206241 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d1 snap head
2015-03-31 11:02:26.206242 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.206243 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.206256 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407834 cr=0xa251e00)
2015-03-31 11:02:26.206259 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.206274 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.206285 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.206295 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.206304 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.206317 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.206332 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.206341 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.206352 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.206362 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.206373 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.206382 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_pin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540] now 1+0
2015-03-31 11:02:26.206392 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.206407 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.206421 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.206432 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.206442 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.206453 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.206463 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.206496 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.206511 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407834 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.206515 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407834 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.206524 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.206527 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.206530 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.206532 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.206545 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407834 cr=0xa251e00)
2015-03-31 11:02:26.206564 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.206579 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.206593 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.206603 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.206625 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.206635 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.206646 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.206656 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.206665 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.206680 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.206691 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.206701 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_unpin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540] now 0+0
2015-03-31 11:02:26.210178 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e8c follows 0 op update
2015-03-31 11:02:26.210181 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210192 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.210194 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.210212 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.210213 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210220 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210228 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.210229 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210240 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210260 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210267 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.210269 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210277 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210281 7fbe406af700  5 mds.0.log _submit_thread 5419638407~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.210284 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210291 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210296 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210303 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210308 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210315 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.210324 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.250039 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407835 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.250066 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407835 cr=0xa250f00)
2015-03-31 11:02:26.250068 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407835 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.250071 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407835 cr=0xa250f00) #1000006b2d1
2015-03-31 11:02:26.250073 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d1 snap head
2015-03-31 11:02:26.250074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.250075 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.250091 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407835 cr=0xa250f00)
2015-03-31 11:02:26.250094 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.250112 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.250123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.250135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.250145 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.250160 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.250174 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.250184 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.250195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.250205 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.250215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.250225 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_pin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540] now 1+0
2015-03-31 11:02:26.250245 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.250270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.250283 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.250293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.250302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.250311 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.250321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.250330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.250345 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407835 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.250349 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407835 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.250360 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.250363 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.250368 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.250370 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.250383 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407835 cr=0xa250f00)
2015-03-31 11:02:26.250402 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.250419 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.250433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.250444 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.250455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.250476 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.250487 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.250497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.250507 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.250521 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.250532 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.250543 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_unpin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540] now 0+0
2015-03-31 11:02:26.251824 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e8c follows 0 op update
2015-03-31 11:02:26.251828 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251839 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.251841 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.251859 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.251860 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251867 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251875 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.251877 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251882 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251890 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251895 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.251896 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251904 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251911 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251917 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251923 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.251924 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.251925 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e8c [2,head] /test_small/small1/blarg10055 auth v136928 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b1c10]
2015-03-31 11:02:26.251933 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.291034 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407836 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.291054 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407836 cr=0x9f78280)
2015-03-31 11:02:26.291059 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407836 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.291063 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407836 cr=0x9f78280) #1000006b2d1
2015-03-31 11:02:26.291065 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d1 snap head
2015-03-31 11:02:26.291066 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.291067 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.291084 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407836 cr=0x9f78280)
2015-03-31 11:02:26.291087 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291104 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291116 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.291127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.291138 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291152 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.291166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291175 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.291186 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.291196 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.291207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.291216 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_pin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540] now 1+0
2015-03-31 11:02:26.291227 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291241 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291256 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291276 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.291308 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.291317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.291327 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.291342 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407836 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.291346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407836 getattr Xs #1000006b2d1 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.291356 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.291360 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.291364 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:26.291367 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.291380 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407836 cr=0x9f78280)
2015-03-31 11:02:26.291400 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291416 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291451 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.291473 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.291483 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.291494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f486540]
2015-03-31 11:02:26.291504 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.291518 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.291529 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.291540 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) auth_unpin by 0x24afa300 on [inode 1000006b2d1 [2,head] {#1000006b2d1 /test_small/small5/blarg10055} auth v178718 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f486540] now 0+0
2015-03-31 11:02:26.291814 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407837 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.291832 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407837 cr=0x51da300)
2015-03-31 11:02:26.291834 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407837 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.291837 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407837 cr=0x51da300) #10000004e6c
2015-03-31 11:02:26.291838 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6c snap head
2015-03-31 11:02:26.291842 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.291843 7fbe462be700 10 mds.0.server ref is [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.291856 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407837 cr=0x51da300)
2015-03-31 11:02:26.291859 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291875 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291885 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.291894 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.291900 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291914 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.291928 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.291937 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.291947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.291956 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.291965 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.291970 7fbe462be700 10 mds.0.cache.ino(10000004e6c) auth_pin by 0x24afa300 on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8] now 1+0
2015-03-31 11:02:26.291978 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.291992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.292006 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.292017 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.292027 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.292036 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.292045 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292053 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292070 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292076 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292101 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407837 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.292104 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407837 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.292114 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.292117 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.292121 7fbe462be700 10 mds.0.cache.ino(10000004e6c) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.292123 7fbe462be700 10 mds.0.cache.ino(10000004e6c) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.292136 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407837 cr=0x51da300)
2015-03-31 11:02:26.292155 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.292171 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.292184 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.292195 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.292205 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.292214 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.292234 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292241 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292248 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292254 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.292260 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.292274 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.292285 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.292294 7fbe462be700 10 mds.0.cache.ino(10000004e6c) auth_unpin by 0x24afa300 on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b12d8] now 0+0
2015-03-31 11:02:26.292667 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407838 lookup #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.292687 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407838 cr=0x45a5c80)
2015-03-31 11:02:26.292690 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407838 lookup #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.292693 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407838 cr=0x45a5c80) #1000006026a/blarg10056
2015-03-31 11:02:26.292695 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.292698 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10056 [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock) v=177702 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67728e0]
2015-03-31 11:02:26.292707 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.292708 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407838 lookup #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.292720 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.292732 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407838 cr=0x45a5c80)
2015-03-31 11:02:26.293197 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407839 lookup #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.293216 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407839 cr=0x5410f00)
2015-03-31 11:02:26.293219 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407839 lookup #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.293222 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407839 cr=0x5410f00) #1000006026a/blarg10056
2015-03-31 11:02:26.293224 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.293226 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10056 [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock) v=177702 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67728e0]
2015-03-31 11:02:26.293234 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.293236 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407839 lookup #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.293248 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.293260 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407839 cr=0x5410f00)
2015-03-31 11:02:26.293681 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407840 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.293702 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407840 cr=0x26903700)
2015-03-31 11:02:26.293705 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407840 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.293708 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407840 cr=0x26903700) #10000004e6c
2015-03-31 11:02:26.293710 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6c snap head
2015-03-31 11:02:26.293711 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.293712 7fbe462be700 10 mds.0.server ref is [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.293723 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407840 cr=0x26903700)
2015-03-31 11:02:26.293727 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.293744 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.293755 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.293764 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.293770 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.293790 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.293804 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.293814 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.293825 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.293833 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.293842 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.293848 7fbe462be700 10 mds.0.cache.ino(10000004e6c) auth_pin by 0x24afa300 on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8] now 1+0
2015-03-31 11:02:26.293855 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.293870 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.293884 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.293905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.293915 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.293935 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.293944 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.293949 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.293955 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.293962 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.293974 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407840 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.293979 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407840 getattr Xs #10000004e6c 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.293989 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.293993 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.293998 7fbe462be700 10 mds.0.cache.ino(10000004e6c) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.294000 7fbe462be700 10 mds.0.cache.ino(10000004e6c) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.294014 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407840 cr=0x26903700)
2015-03-31 11:02:26.294033 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294049 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294063 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294073 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294084 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.294092 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.294112 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.294119 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.294126 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.294132 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b12d8]
2015-03-31 11:02:26.294138 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.294152 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.294163 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x24afa300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.294172 7fbe462be700 10 mds.0.cache.ino(10000004e6c) auth_unpin by 0x24afa300 on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b12d8] now 0+0
2015-03-31 11:02:26.294546 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407841 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.294565 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407841 cr=0x25f4ee00)
2015-03-31 11:02:26.294568 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407841 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.294571 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407841 cr=0x25f4ee00) #1000006026a
2015-03-31 11:02:26.294573 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.294574 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.294575 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294593 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407841 cr=0x25f4ee00)
2015-03-31 11:02:26.294596 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294613 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294624 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294635 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294649 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.294664 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294673 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.294685 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294695 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.294706 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294721 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294735 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294745 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294766 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294776 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294802 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294811 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31430} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294828 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407841 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.294832 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407841 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.294842 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.294846 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.294851 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31431
2015-03-31 11:02:26.294853 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31431 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.294867 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407841 cr=0x25f4ee00)
2015-03-31 11:02:26.294887 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294903 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.294917 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294928 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.294938 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294949 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294970 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294980 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.294990 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.295004 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.295014 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.295395 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407842 create #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.295416 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407842 cr=0x5e8c380)
2015-03-31 11:02:26.295418 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407842 create #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.295421 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10056
2015-03-31 11:02:26.295422 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407842 cr=0x5e8c380) #1000006026a/blarg10056
2015-03-31 11:02:26.295425 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10056
2015-03-31 11:02:26.295426 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.295427 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.295429 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178719 v=178713 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.295439 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178719 v=178713 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.295446 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10056 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178719 v=178713 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.295457 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407842 cr=0x5e8c380)
2015-03-31 11:02:26.295462 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.295481 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295492 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295504 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock) v=177702 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295510 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.295524 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.295539 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295549 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.295560 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295570 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.295581 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock) v=177702 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295586 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10056) auth_pin by 0x24afa300 on [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock) v=177702 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0] now 1+0
2015-03-31 11:02:26.295593 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock) v=177702 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295598 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177702 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295604 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177702 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295619 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177702 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295624 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177702 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295629 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10056) auth_pin by 0x6772a38 on [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177702 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0] now 2+0
2015-03-31 11:02:26.295645 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x24afa300) [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dn xlock x=1 by 0x24afa300) (dversion lock w=1 last_client=708310) v=177702 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295651 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.295665 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.295679 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.295692 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.295705 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295715 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295724 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295733 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295742 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295752 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295762 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295772 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295781 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295796 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295805 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295815 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295824 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295834 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295852 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d2 ([1000006b2d3~350], 848 left)
2015-03-31 11:02:26.295855 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.295857 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d2 [2,head] #1000006b2d2 auth v1 s=0 n() (iversion lock) 0x3f332630]
2015-03-31 11:02:26.295861 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178720
2015-03-31 11:02:26.295862 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10056)  pre_dirty [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dn xlock x=1 by 0x24afa300) (dversion lock w=1 last_client=708310) pv=178720 v=177702 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.295870 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f332630]
2015-03-31 11:02:26.295877 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x24afa300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178720 v=178713 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:26.295886 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc6db70
2015-03-31 11:02:26.295887 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178721
2015-03-31 11:02:26.295888 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178721 v=178713 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.295895 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178721 v=178713 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.295902 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f332630]
2015-03-31 11:02:26.295908 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.295910 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295290 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295923 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295292
2015-03-31 11:02:26.295924 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295292 v=3295284 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.295928 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295292 (current v 3295284)
2015-03-31 11:02:26.295930 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178721 v=178713 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.295937 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.295938 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x24afa300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295292 v=3295285 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:26.295946 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x265a8c60
2015-03-31 11:02:26.295947 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295293
2015-03-31 11:02:26.295948 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295960 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295970 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.295981 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.295982 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.377472 < 1, stopping
2015-03-31 11:02:26.295986 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.295996 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.296000 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295292 v=3295284 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.296004 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31431} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296017 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f332630]
2015-03-31 11:02:26.296024 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.296027 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f332630]
2015-03-31 11:02:26.296035 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.296036 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296044 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296050 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296057 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296064 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296071 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296078 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296083 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296089 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296095 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296102 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296108 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296115 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296121 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296128 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f332630]
2015-03-31 11:02:26.296137 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.296138 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.296140 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f332630 tracedn 0x67728e0
2015-03-31 11:02:26.296143 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x24afa300) [dentry #1/test_small/small5/blarg10056 [2,head] auth NULL (dn xlock x=1 by 0x24afa300) (dversion lock w=1 last_client=708310) pv=178720 v=177702 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x67728e0]
2015-03-31 11:02:26.296149 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407842 create #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.296158 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.296161 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31432
2015-03-31 11:02:26.296163 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31432 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.296168 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.296171 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.296173 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) including xattrs version 0
2015-03-31 11:02:26.296210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296239 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296255 7fbe406af700  5 mds.0.log _submit_thread 5419639266~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.296253 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296266 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296280 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296303 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296314 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296324 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296334 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296346 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296358 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296369 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296379 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296390 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296630 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407843 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.296650 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407843 cr=0xb264880)
2015-03-31 11:02:26.296652 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407843 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.296656 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407843 cr=0xb264880) #1000006b2d2
2015-03-31 11:02:26.296657 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d2 snap head
2015-03-31 11:02:26.296659 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.296660 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f332630]
2015-03-31 11:02:26.296672 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407843 cr=0xb264880)
2015-03-31 11:02:26.296675 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296690 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296701 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296711 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f332630]
2015-03-31 11:02:26.296721 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296735 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.296749 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296759 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.296769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296779 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.296794 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f332630]
2015-03-31 11:02:26.296803 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_pin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f332630] now 1+0
2015-03-31 11:02:26.296813 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296828 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.296842 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.296864 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296875 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.296901 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.296921 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.296936 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407843 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.296940 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407843 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.296950 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.296955 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.296959 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.296963 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.296976 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407843 cr=0xb264880)
2015-03-31 11:02:26.296995 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297010 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297024 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297034 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297075 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.297086 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.297096 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.297110 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.297120 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.297131 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_unpin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630] now 0+0
2015-03-31 11:02:26.297374 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407844 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.297392 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407844 cr=0xb267080)
2015-03-31 11:02:26.297395 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407844 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.297398 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407844 cr=0xb267080) #1000006b2d2
2015-03-31 11:02:26.297400 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d2 snap head
2015-03-31 11:02:26.297401 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.297402 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.297414 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407844 cr=0xb267080)
2015-03-31 11:02:26.297416 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297431 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297441 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297452 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.297461 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297475 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.297489 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297498 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.297509 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297519 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.297529 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.297538 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_pin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630] now 1+0
2015-03-31 11:02:26.297548 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297563 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297577 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297587 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297598 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297608 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297619 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.297638 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.297665 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407844 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.297669 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407844 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.297679 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.297681 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.297686 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.297688 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.297701 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407844 cr=0xb267080)
2015-03-31 11:02:26.297720 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297736 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.297749 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297760 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.297781 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297795 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.297805 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.297816 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.297826 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.297841 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.297851 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.297862 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_unpin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630] now 0+0
2015-03-31 11:02:26.302118 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6c follows 0 op update
2015-03-31 11:02:26.302122 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302132 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.302134 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.302152 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.302153 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302160 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302168 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.302170 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302190 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302211 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302218 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.302220 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302229 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302231 7fbe406af700  5 mds.0.log _submit_thread 5419640906~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.302236 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302241 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302247 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302252 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302257 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302263 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.302273 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.342047 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407845 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.342069 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407845 cr=0x60aa300)
2015-03-31 11:02:26.342074 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407845 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.342077 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407845 cr=0x60aa300) #1000006b2d2
2015-03-31 11:02:26.342079 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d2 snap head
2015-03-31 11:02:26.342081 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.342082 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.342098 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407845 cr=0x60aa300)
2015-03-31 11:02:26.342101 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.342119 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.342131 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.342142 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.342153 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.342167 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.342181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.342191 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.342203 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.342213 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.342224 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.342234 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_pin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630] now 1+0
2015-03-31 11:02:26.342244 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.342260 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.342284 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.342306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.342316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.342326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.342335 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.342344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.342360 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407845 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.342364 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407845 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.342374 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.342378 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.342381 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.342384 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.342397 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407845 cr=0x60aa300)
2015-03-31 11:02:26.342416 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.342433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.342447 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.342458 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.342468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.342479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.342500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.342510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.342520 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.342535 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.342546 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.342557 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_unpin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630] now 0+0
2015-03-31 11:02:26.343851 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6c follows 0 op update
2015-03-31 11:02:26.343854 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343866 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.343867 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.343885 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.343886 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343893 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343901 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.343904 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343909 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343916 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343922 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.343923 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343930 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343937 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343943 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343949 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.343950 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.343951 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e6c [2,head] /test_small/small1/blarg10056 auth v136930 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b12d8]
2015-03-31 11:02:26.343958 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.383031 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407846 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.383052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407846 cr=0x60afa80)
2015-03-31 11:02:26.383056 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407846 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.383060 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407846 cr=0x60afa80) #1000006b2d2
2015-03-31 11:02:26.383061 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d2 snap head
2015-03-31 11:02:26.383063 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.383064 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.383080 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407846 cr=0x60afa80)
2015-03-31 11:02:26.383083 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383113 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.383124 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.383135 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383149 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.383163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383173 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.383184 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.383195 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.383205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.383215 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_pin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630] now 1+0
2015-03-31 11:02:26.383225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383240 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383255 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383288 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.383307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.383317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.383326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.383340 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407846 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.383344 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407846 getattr Xs #1000006b2d2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.383354 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.383358 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.383362 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:26.383365 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.383378 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407846 cr=0x60afa80)
2015-03-31 11:02:26.383397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383413 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383438 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383448 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.383459 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.383480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.383491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f332630]
2015-03-31 11:02:26.383500 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.383515 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.383526 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.383537 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) auth_unpin by 0x28ebe400 on [inode 1000006b2d2 [2,head] {#1000006b2d2 /test_small/small5/blarg10056} auth v178720 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f332630] now 0+0
2015-03-31 11:02:26.383811 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407847 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.383829 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407847 cr=0x43d2800)
2015-03-31 11:02:26.383831 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407847 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.383834 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407847 cr=0x43d2800) #10000004e52
2015-03-31 11:02:26.383836 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e52 snap head
2015-03-31 11:02:26.383837 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.383839 7fbe462be700 10 mds.0.server ref is [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.383850 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407847 cr=0x43d2800)
2015-03-31 11:02:26.383853 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383868 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383879 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.383887 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.383893 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383907 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.383921 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.383930 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.383941 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.383949 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.383959 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.383964 7fbe462be700 10 mds.0.cache.ino(10000004e52) auth_pin by 0x28ebe400 on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0] now 1+0
2015-03-31 11:02:26.383971 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.383986 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.384000 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.384010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.384020 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.384030 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.384039 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384056 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384062 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384079 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384092 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407847 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.384096 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407847 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.384106 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.384109 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.384114 7fbe462be700 10 mds.0.cache.ino(10000004e52) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.384116 7fbe462be700 10 mds.0.cache.ino(10000004e52) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.384128 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407847 cr=0x43d2800)
2015-03-31 11:02:26.384147 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.384163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.384177 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.384187 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.384197 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.384206 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.384227 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384233 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384240 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384246 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.384253 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.384268 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.384279 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.384288 7fbe462be700 10 mds.0.cache.ino(10000004e52) auth_unpin by 0x28ebe400 on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b09a0] now 0+0
2015-03-31 11:02:26.384657 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407848 lookup #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.384677 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407848 cr=0x9cc4880)
2015-03-31 11:02:26.384679 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407848 lookup #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.384682 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407848 cr=0x9cc4880) #1000006026a/blarg10057
2015-03-31 11:02:26.384684 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.384686 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10057 [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock) v=177704 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.384695 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.384697 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407848 lookup #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.384707 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.384719 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407848 cr=0x9cc4880)
2015-03-31 11:02:26.385142 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407849 lookup #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.385161 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407849 cr=0x26d3e180)
2015-03-31 11:02:26.385163 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407849 lookup #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.385166 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407849 cr=0x26d3e180) #1000006026a/blarg10057
2015-03-31 11:02:26.385168 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.385171 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10057 [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock) v=177704 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.385179 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.385181 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407849 lookup #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.385191 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.385204 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407849 cr=0x26d3e180)
2015-03-31 11:02:26.385623 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407850 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.385645 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407850 cr=0x26d39900)
2015-03-31 11:02:26.385649 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407850 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.385652 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407850 cr=0x26d39900) #10000004e52
2015-03-31 11:02:26.385654 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e52 snap head
2015-03-31 11:02:26.385655 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.385656 7fbe462be700 10 mds.0.server ref is [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.385667 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407850 cr=0x26d39900)
2015-03-31 11:02:26.385670 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.385688 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.385700 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.385709 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.385714 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.385728 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.385743 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.385752 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.385763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.385772 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.385787 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.385794 7fbe462be700 10 mds.0.cache.ino(10000004e52) auth_pin by 0x28ebe400 on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0] now 1+0
2015-03-31 11:02:26.385801 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.385816 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.385830 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.385851 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.385872 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.385881 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.385889 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.385896 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.385901 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.385906 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.385919 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407850 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.385923 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407850 getattr Xs #10000004e52 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.385934 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.385937 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.385940 7fbe462be700 10 mds.0.cache.ino(10000004e52) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.385943 7fbe462be700 10 mds.0.cache.ino(10000004e52) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.385956 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407850 cr=0x26d39900)
2015-03-31 11:02:26.385975 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.385991 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.386005 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386016 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386026 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.386035 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.386056 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.386063 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.386070 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.386077 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b09a0]
2015-03-31 11:02:26.386082 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.386097 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.386108 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.386117 7fbe462be700 10 mds.0.cache.ino(10000004e52) auth_unpin by 0x28ebe400 on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b09a0] now 0+0
2015-03-31 11:02:26.386487 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407851 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.386509 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407851 cr=0x26d3af80)
2015-03-31 11:02:26.386511 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407851 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.386514 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407851 cr=0x26d3af80) #1000006026a
2015-03-31 11:02:26.386516 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.386518 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.386519 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386537 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407851 cr=0x26d3af80)
2015-03-31 11:02:26.386540 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.386556 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386567 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386579 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.386592 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.386607 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386616 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.386628 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386638 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.386649 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.386664 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.386678 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386689 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386709 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386731 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386741 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386751 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31432} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386766 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407851 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.386770 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407851 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.386781 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.386787 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.386791 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31433
2015-03-31 11:02:26.386793 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31433 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.386806 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407851 cr=0x26d3af80)
2015-03-31 11:02:26.386825 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.386841 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.386856 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386866 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.386876 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386887 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386908 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386918 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.386928 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.386941 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.386952 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.387238 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407852 create #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.387254 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407852 cr=0x26d3df00)
2015-03-31 11:02:26.387257 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407852 create #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.387260 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10057
2015-03-31 11:02:26.387261 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407852 cr=0x26d3df00) #1000006026a/blarg10057
2015-03-31 11:02:26.387263 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10057
2015-03-31 11:02:26.387265 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.387266 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.387268 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178721 v=178713 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.387276 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178721 v=178713 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.387284 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10057 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178721 v=178713 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.387295 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407852 cr=0x26d3df00)
2015-03-31 11:02:26.387300 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.387316 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387327 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387338 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock) v=177704 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387345 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.387359 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.387373 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387382 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.387392 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387402 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.387413 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock) v=177704 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387418 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10057) auth_pin by 0x28ebe400 on [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock) v=177704 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0] now 1+0
2015-03-31 11:02:26.387423 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock) v=177704 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387428 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177704 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387434 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177704 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387438 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177704 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387444 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177704 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387450 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10057) auth_pin by 0x6772c18 on [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177704 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0] now 2+0
2015-03-31 11:02:26.387455 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28ebe400) [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dn xlock x=1 by 0x28ebe400) (dversion lock w=1 last_client=708310) v=177704 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387461 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.387478 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.387507 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.387531 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.387543 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387553 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387562 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387571 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387581 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387590 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387600 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387610 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387619 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387629 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387638 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387648 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387657 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387666 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387686 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d3 ([1000006b2d4~34f], 847 left)
2015-03-31 11:02:26.387689 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.387690 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d3 [2,head] #1000006b2d3 auth v1 s=0 n() (iversion lock) 0x3f3d7bf8]
2015-03-31 11:02:26.387694 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178722
2015-03-31 11:02:26.387695 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10057)  pre_dirty [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dn xlock x=1 by 0x28ebe400) (dversion lock w=1 last_client=708310) pv=178722 v=177704 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387703 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3d7bf8]
2015-03-31 11:02:26.387709 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28ebe400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178722 v=178713 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:26.387719 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2694f380
2015-03-31 11:02:26.387720 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178723
2015-03-31 11:02:26.387721 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178723 v=178713 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.387728 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178723 v=178713 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.387735 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3d7bf8]
2015-03-31 11:02:26.387741 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.387742 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295292 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387756 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295294
2015-03-31 11:02:26.387757 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295294 v=3295284 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.387761 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295294 (current v 3295284)
2015-03-31 11:02:26.387762 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178723 v=178713 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.387770 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.387772 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28ebe400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295294 v=3295285 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:26.387780 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9a36460
2015-03-31 11:02:26.387781 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295295
2015-03-31 11:02:26.387786 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387798 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387808 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387818 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.387820 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.469304 < 1, stopping
2015-03-31 11:02:26.387824 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.387834 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.387838 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295294 v=3295284 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.387843 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31433} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.387857 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3d7bf8]
2015-03-31 11:02:26.387864 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.387866 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387873 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.387874 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387881 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387888 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387895 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387902 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387908 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387915 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387921 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387928 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387934 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387940 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387947 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387954 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387959 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387965 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.387975 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.387976 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.387979 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3d7bf8 tracedn 0x6772ac0
2015-03-31 11:02:26.387981 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28ebe400) [dentry #1/test_small/small5/blarg10057 [2,head] auth NULL (dn xlock x=1 by 0x28ebe400) (dversion lock w=1 last_client=708310) pv=178722 v=177704 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ac0]
2015-03-31 11:02:26.387987 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407852 create #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.387995 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.387999 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31434
2015-03-31 11:02:26.388001 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31434 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.388006 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.388009 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.388012 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) including xattrs version 0
2015-03-31 11:02:26.388048 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388077 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388093 7fbe406af700  5 mds.0.log _submit_thread 5419641765~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.388092 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388104 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388118 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388140 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388151 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388161 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388172 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388184 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388195 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388206 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388216 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388227 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388468 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407853 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.388488 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407853 cr=0x2a509900)
2015-03-31 11:02:26.388490 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407853 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.388494 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407853 cr=0x2a509900) #1000006b2d3
2015-03-31 11:02:26.388495 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d3 snap head
2015-03-31 11:02:26.388496 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.388498 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.388511 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407853 cr=0x2a509900)
2015-03-31 11:02:26.388514 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388529 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388539 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388549 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.388559 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388572 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.388587 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388596 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.388607 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388617 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.388627 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3d7bf8]
2015-03-31 11:02:26.388637 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_pin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3d7bf8] now 1+0
2015-03-31 11:02:26.388647 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388662 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388676 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388687 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388697 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388707 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388732 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.388754 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.388768 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407853 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.388772 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407853 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.388785 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.388788 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.388791 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.388793 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.388806 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407853 cr=0x2a509900)
2015-03-31 11:02:26.388825 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388841 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.388854 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388865 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.388875 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388885 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.388906 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.388916 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.388926 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.388941 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.388951 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.388961 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_unpin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8] now 0+0
2015-03-31 11:02:26.389184 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407854 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.389203 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407854 cr=0x929a300)
2015-03-31 11:02:26.389205 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407854 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.389208 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407854 cr=0x929a300) #1000006b2d3
2015-03-31 11:02:26.389210 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d3 snap head
2015-03-31 11:02:26.389211 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.389212 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.389225 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407854 cr=0x929a300)
2015-03-31 11:02:26.389227 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.389243 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.389253 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.389264 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.389273 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.389287 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.389301 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.389310 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.389320 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.389329 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.389340 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.389349 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_pin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8] now 1+0
2015-03-31 11:02:26.389359 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.389373 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.389388 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.389398 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.389409 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.389419 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.389430 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.389450 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.389476 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407854 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.389479 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407854 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.389488 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.389492 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.389497 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.389499 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.389511 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407854 cr=0x929a300)
2015-03-31 11:02:26.389530 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.389546 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.389560 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.389571 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.389593 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.389604 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.389614 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.389625 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.389635 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.389649 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.389660 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.389670 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_unpin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8] now 0+0
2015-03-31 11:02:26.393408 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e52 follows 0 op update
2015-03-31 11:02:26.393412 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393423 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.393424 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.393442 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.393443 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393450 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393458 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.393460 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393470 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393490 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393497 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.393499 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393507 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393511 7fbe406af700  5 mds.0.log _submit_thread 5419643405~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.393514 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393520 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393526 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393532 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393539 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393544 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.393554 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.433033 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407855 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.433055 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407855 cr=0x929cd80)
2015-03-31 11:02:26.433060 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407855 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.433063 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407855 cr=0x929cd80) #1000006b2d3
2015-03-31 11:02:26.433065 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d3 snap head
2015-03-31 11:02:26.433066 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.433068 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.433085 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407855 cr=0x929cd80)
2015-03-31 11:02:26.433088 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.433105 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.433117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.433129 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.433139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.433153 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.433168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.433178 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.433189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.433199 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.433210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.433219 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_pin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8] now 1+0
2015-03-31 11:02:26.433230 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.433245 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.433270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.433292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.433301 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.433311 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.433321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.433330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.433346 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407855 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.433350 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407855 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.433360 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.433364 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.433368 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.433371 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.433385 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407855 cr=0x929cd80)
2015-03-31 11:02:26.433404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.433420 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.433434 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.433445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.433455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.433465 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.433486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.433497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.433506 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.433521 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.433532 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.433542 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_unpin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8] now 0+0
2015-03-31 11:02:26.434827 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e52 follows 0 op update
2015-03-31 11:02:26.434831 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434842 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.434844 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.434862 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.434862 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434869 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434878 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.434880 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434886 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434893 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434900 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.434901 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434908 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434915 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434921 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434927 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.434929 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.434930 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e52 [2,head] /test_small/small1/blarg10057 auth v136932 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b09a0]
2015-03-31 11:02:26.434937 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.474023 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407856 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.474044 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407856 cr=0x9299400)
2015-03-31 11:02:26.474048 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407856 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.474052 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407856 cr=0x9299400) #1000006b2d3
2015-03-31 11:02:26.474054 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d3 snap head
2015-03-31 11:02:26.474055 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.474056 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.474073 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407856 cr=0x9299400)
2015-03-31 11:02:26.474076 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474093 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474105 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.474117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.474128 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474142 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.474156 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474166 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.474177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.474187 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.474198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.474207 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_pin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8] now 1+0
2015-03-31 11:02:26.474218 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474233 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474290 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.474299 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.474308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.474318 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.474333 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407856 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.474337 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407856 getattr Xs #1000006b2d3 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.474348 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.474352 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.474356 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:26.474359 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.474373 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407856 cr=0x9299400)
2015-03-31 11:02:26.474392 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474443 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.474453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.474475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.474486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3d7bf8]
2015-03-31 11:02:26.474495 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.474510 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.474520 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.474531 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) auth_unpin by 0x2a626e00 on [inode 1000006b2d3 [2,head] {#1000006b2d3 /test_small/small5/blarg10057} auth v178722 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3d7bf8] now 0+0
2015-03-31 11:02:26.474820 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407857 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.474838 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407857 cr=0x929e680)
2015-03-31 11:02:26.474840 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407857 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.474843 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407857 cr=0x929e680) #10000004e57
2015-03-31 11:02:26.474845 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e57 snap head
2015-03-31 11:02:26.474846 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.474847 7fbe462be700 10 mds.0.server ref is [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.474859 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407857 cr=0x929e680)
2015-03-31 11:02:26.474862 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474877 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474888 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.474897 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.474904 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474917 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.474931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.474940 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.474951 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.474960 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.474969 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=1 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.474976 7fbe462be700 10 mds.0.cache.ino(10000004e57) auth_pin by 0x2a626e00 on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068] now 1+0
2015-03-31 11:02:26.474983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.474997 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.475011 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.475022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.475032 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.475041 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.475050 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475057 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475064 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475081 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=1 lock=2 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475107 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407857 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.475111 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407857 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.475121 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.475124 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.475128 7fbe462be700 10 mds.0.cache.ino(10000004e57) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.475130 7fbe462be700 10 mds.0.cache.ino(10000004e57) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.475143 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407857 cr=0x929e680)
2015-03-31 11:02:26.475161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.475177 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.475190 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.475201 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.475211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.475220 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.475240 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475247 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475254 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475260 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.475266 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.475280 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.475290 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.475299 7fbe462be700 10 mds.0.cache.ino(10000004e57) auth_unpin by 0x2a626e00 on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b0068] now 0+0
2015-03-31 11:02:26.475570 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407858 lookup #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.475586 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407858 cr=0x9298a00)
2015-03-31 11:02:26.475588 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407858 lookup #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.475591 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407858 cr=0x9298a00) #1000006026a/blarg10058
2015-03-31 11:02:26.475593 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.475595 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10058 [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock) v=177706 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.475603 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.475605 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407858 lookup #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.475614 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.475625 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407858 cr=0x9298a00)
2015-03-31 11:02:26.476089 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407859 lookup #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.476108 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407859 cr=0x929da00)
2015-03-31 11:02:26.476111 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407859 lookup #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.476114 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407859 cr=0x929da00) #1000006026a/blarg10058
2015-03-31 11:02:26.476116 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.476118 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10058 [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock) v=177706 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.476127 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.476128 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407859 lookup #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.476140 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.476152 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407859 cr=0x929da00)
2015-03-31 11:02:26.476616 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407860 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.476637 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407860 cr=0x9299900)
2015-03-31 11:02:26.476641 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407860 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.476644 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407860 cr=0x9299900) #10000004e57
2015-03-31 11:02:26.476646 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e57 snap head
2015-03-31 11:02:26.476647 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.476648 7fbe462be700 10 mds.0.server ref is [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.476661 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407860 cr=0x9299900)
2015-03-31 11:02:26.476664 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.476681 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.476693 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.476702 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.476708 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.476722 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.476737 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.476747 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.476758 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.476766 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.476775 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.476789 7fbe462be700 10 mds.0.cache.ino(10000004e57) auth_pin by 0x2a626e00 on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068] now 1+0
2015-03-31 11:02:26.476797 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.476812 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.476826 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.476847 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.476869 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.476877 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.476885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.476891 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.476897 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.476903 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/Fc@8} | request=1 lock=2 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.476916 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407860 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.476920 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407860 getattr Xs #10000004e57 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.476931 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.476934 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.476939 7fbe462be700 10 mds.0.cache.ino(10000004e57) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.476941 7fbe462be700 10 mds.0.cache.ino(10000004e57) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.476955 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407860 cr=0x9299900)
2015-03-31 11:02:26.476974 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.476990 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.477004 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477015 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477025 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.477034 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.477054 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.477061 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=1 lock=1 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.477069 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.477075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=1 lock=0 caps=1 authpin=1 0x1e9b0068]
2015-03-31 11:02:26.477082 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.477096 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.477107 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.477116 7fbe462be700 10 mds.0.cache.ino(10000004e57) auth_unpin by 0x2a626e00 on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=1 lock=0 caps=1 authpin=0 0x1e9b0068] now 0+0
2015-03-31 11:02:26.477395 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407861 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.477413 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407861 cr=0x9298280)
2015-03-31 11:02:26.477415 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407861 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.477419 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407861 cr=0x9298280) #1000006026a
2015-03-31 11:02:26.477420 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.477422 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.477423 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477438 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407861 cr=0x9298280)
2015-03-31 11:02:26.477441 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.477456 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477466 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477477 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.477490 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.477504 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477513 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.477524 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477534 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.477545 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.477559 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.477573 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477583 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477594 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477604 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477615 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477625 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31434} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477641 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407861 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.477661 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407861 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.477683 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.477687 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.477690 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31435
2015-03-31 11:02:26.477692 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31435 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.477704 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407861 cr=0x9298280)
2015-03-31 11:02:26.477722 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.477738 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.477751 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477761 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.477771 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477781 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477806 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477816 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.477826 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.477840 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.477850 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.478235 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407862 create #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.478254 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407862 cr=0x9299e00)
2015-03-31 11:02:26.478257 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407862 create #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.478260 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10058
2015-03-31 11:02:26.478261 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407862 cr=0x9299e00) #1000006026a/blarg10058
2015-03-31 11:02:26.478263 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10058
2015-03-31 11:02:26.478264 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.478266 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.478267 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178723 v=178713 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.478277 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178723 v=178713 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.478285 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10058 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178723 v=178713 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.478296 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407862 cr=0x9299e00)
2015-03-31 11:02:26.478301 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.478320 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478332 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478343 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock) v=177706 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478350 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.478364 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.478379 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478389 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.478400 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478410 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.478420 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock) v=177706 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478425 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10058) auth_pin by 0x2a626e00 on [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock) v=177706 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0] now 1+0
2015-03-31 11:02:26.478432 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock) v=177706 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478437 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177706 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478443 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177706 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478458 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177706 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478463 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177706 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478468 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10058) auth_pin by 0x6772df8 on [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177706 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0] now 2+0
2015-03-31 11:02:26.478484 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2a626e00) [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) v=177706 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478490 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.478505 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.478518 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.478530 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.478543 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478553 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478562 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478571 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478580 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478590 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478599 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478609 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478619 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478628 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478638 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478648 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478657 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478666 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478685 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d4 ([1000006b2d5~34e], 846 left)
2015-03-31 11:02:26.478688 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.478689 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d4 [2,head] #1000006b2d4 auth v1 s=0 n() (iversion lock) 0x3f391748]
2015-03-31 11:02:26.478693 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178724
2015-03-31 11:02:26.478694 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10058)  pre_dirty [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) pv=178724 v=177706 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478702 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f391748]
2015-03-31 11:02:26.478709 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2a626e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178724 v=178713 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:26.478718 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d30d0
2015-03-31 11:02:26.478719 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178725
2015-03-31 11:02:26.478720 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178713 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.478727 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178713 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.478733 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f391748]
2015-03-31 11:02:26.478738 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.478740 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295294 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478754 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295296
2015-03-31 11:02:26.478755 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295284 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.478759 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295296 (current v 3295284)
2015-03-31 11:02:26.478760 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178713 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=64+1540,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.478767 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.478769 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2a626e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295296 v=3295285 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:26.478777 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x47fd1d0
2015-03-31 11:02:26.478778 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295297
2015-03-31 11:02:26.478779 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478795 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478806 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478816 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.478817 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.560304 < 1, stopping
2015-03-31 11:02:26.478822 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.478830 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.478834 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295284 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.478838 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31435} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.478852 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f391748]
2015-03-31 11:02:26.478858 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.478861 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f391748]
2015-03-31 11:02:26.478869 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.478870 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478878 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478886 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478892 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478899 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478905 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478911 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478918 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478924 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478930 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478937 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478943 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478949 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478956 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478962 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f391748]
2015-03-31 11:02:26.478972 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.478973 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.478976 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f391748 tracedn 0x6772ca0
2015-03-31 11:02:26.478978 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2a626e00) [dentry #1/test_small/small5/blarg10058 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) pv=178724 v=177706 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772ca0]
2015-03-31 11:02:26.478984 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407862 create #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.478993 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.478996 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31436
2015-03-31 11:02:26.478998 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31436 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.479004 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.479007 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.479010 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) including xattrs version 0
2015-03-31 11:02:26.479048 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479077 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479088 7fbe406af700  5 mds.0.log _submit_thread 5419644264~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.479092 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479105 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479131 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479142 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479153 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479164 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479174 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479186 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479198 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479209 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479220 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479230 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479460 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407863 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.479479 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407863 cr=0x929cb00)
2015-03-31 11:02:26.479481 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407863 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.479485 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407863 cr=0x929cb00) #1000006b2d4
2015-03-31 11:02:26.479487 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d4 snap head
2015-03-31 11:02:26.479488 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.479489 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f391748]
2015-03-31 11:02:26.479502 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407863 cr=0x929cb00)
2015-03-31 11:02:26.479505 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479521 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479532 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479543 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f391748]
2015-03-31 11:02:26.479552 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479566 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:26.479580 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479590 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:26.479601 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479611 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:26.479621 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f391748]
2015-03-31 11:02:26.479630 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_pin by 0x2b0c2300 on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f391748] now 1+0
2015-03-31 11:02:26.479641 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479655 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479670 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479681 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479691 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479702 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479727 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.479748 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.479762 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407863 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.479766 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407863 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.479776 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.479779 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.479787 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.479790 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.479803 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407863 cr=0x929cb00)
2015-03-31 11:02:26.479822 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479838 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.479853 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479863 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.479873 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479884 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.479905 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.479916 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.479925 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.479940 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.479950 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.479961 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_unpin by 0x2b0c2300 on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f391748] now 0+0
2015-03-31 11:02:26.480192 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407864 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.480210 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407864 cr=0x9f78f00)
2015-03-31 11:02:26.480212 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407864 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.480215 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407864 cr=0x9f78f00) #1000006b2d4
2015-03-31 11:02:26.480217 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d4 snap head
2015-03-31 11:02:26.480219 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.480220 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.480232 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407864 cr=0x9f78f00)
2015-03-31 11:02:26.480235 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.480250 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.480261 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.480271 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.480281 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.480294 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:26.480308 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.480317 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:26.480327 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.480337 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:26.480348 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.480357 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_pin by 0x2b0c2300 on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748] now 1+0
2015-03-31 11:02:26.480367 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.480382 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.480396 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.480407 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.480417 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.480428 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.480438 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.480470 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.480484 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407864 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.480488 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407864 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.480498 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.480501 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.480504 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.480507 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.480520 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407864 cr=0x9f78f00)
2015-03-31 11:02:26.480539 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.480554 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.480568 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.480579 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.480600 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.480611 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.480621 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.480632 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.480641 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.480656 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.480666 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.480677 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_unpin by 0x2b0c2300 on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f391748] now 0+0
2015-03-31 11:02:26.484592 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e57 follows 0 op update
2015-03-31 11:02:26.484595 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484607 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.484608 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.484626 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.484627 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484634 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484642 7fbe462be700 10 mds.0.locker  wanted Fc -> pFscr
2015-03-31 11:02:26.484644 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484652 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484659 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.484660 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484668 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484675 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484682 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484688 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484693 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484699 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484705 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.484714 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.524042 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407865 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524066 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407865 cr=0x9f79b80)
2015-03-31 11:02:26.524071 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407865 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524074 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407865 cr=0x9f79b80) #1000006b2d4
2015-03-31 11:02:26.524076 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d4 snap head
2015-03-31 11:02:26.524078 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.524079 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.524095 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407865 cr=0x9f79b80)
2015-03-31 11:02:26.524098 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524115 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524127 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524139 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.524149 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524164 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:26.524178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524188 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:26.524199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524209 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:26.524220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.524230 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_pin by 0x2b0c2300 on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748] now 1+0
2015-03-31 11:02:26.524240 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524256 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524281 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524314 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524335 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.524344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.524360 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407865 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524364 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407865 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524374 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.524377 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.524381 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.524383 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.524397 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407865 cr=0x9f79b80)
2015-03-31 11:02:26.524417 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524448 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524459 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524502 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.524513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.524523 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.524537 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.524548 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.524559 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_unpin by 0x2b0c2300 on [inode 1000006b2d4 [2,head] {#1000006b2d4 /test_small/small5/blarg10058} auth v178724 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f391748] now 0+0
2015-03-31 11:02:26.524597 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407866 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524615 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407866 cr=0x9f7c600)
2015-03-31 11:02:26.524617 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407866 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524620 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407866 cr=0x9f7c600) #1000006026a
2015-03-31 11:02:26.524622 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.524623 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.524624 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524638 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407866 cr=0x9f7c600)
2015-03-31 11:02:26.524641 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524655 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524665 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524676 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524689 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:26.524703 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524712 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:26.524733 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524742 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:26.524753 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524766 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524779 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524795 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524805 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524815 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524825 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524835 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31436} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524852 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407866 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524855 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407866 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.524866 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.524869 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.524873 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31437
2015-03-31 11:02:26.524875 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31437 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.524889 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407866 cr=0x9f7c600)
2015-03-31 11:02:26.524908 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524925 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.524939 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524950 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.524960 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524971 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524982 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.524992 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525002 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.525016 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.525026 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.525269 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407867 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.525290 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407867 cr=0x9f7e400)
2015-03-31 11:02:26.525292 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407867 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.525297 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407867 cr=0x9f7e400) #1000006026a
2015-03-31 11:02:26.525299 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.525301 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.525302 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525316 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407867 cr=0x9f7e400)
2015-03-31 11:02:26.525319 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.525333 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.525343 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525353 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.525367 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:26.525380 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.525389 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:26.525400 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525409 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:26.525420 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.525433 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.525447 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.525457 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.525467 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525477 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525487 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525498 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525508 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=8+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:26.525529 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=8+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.525539 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x2649b420 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:26.525553 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=8+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.541712 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:26.541718 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:26.541727 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:26.541732 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) mark_dirty [inode 1000006b2cf [2,head] /test_small/small5/blarg10053 auth v178713 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.541748 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10053)  mark_dirty [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178714 v=177696 ap=2+0 inode=0x3f4d9df8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340]
2015-03-31 11:02:26.541757 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178714 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 64=64+0) hs=65+1539,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178714
2015-03-31 11:02:26.541767 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) mark_dirty_parent
2015-03-31 11:02:26.541769 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295284 pv3295296 ap=8+1 f(v0 m2015-03-31 11:03:03.000000 64=64+0) n(v1 rc2015-03-31 11:03:03.000000 65=64+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.541791 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295284 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.541796 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295286 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295286
2015-03-31 11:02:26.541806 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178715 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 65=65+0) hs=65+1539,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178715
2015-03-31 11:02:26.541814 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295287 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382361+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295287
2015-03-31 11:02:26.541824 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2cf [2,head] /test_small/small5/blarg10053 auth v178714 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4d9df8]
2015-03-31 11:02:26.541834 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:26.541837 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27539 client_caps(grant ino 1000006b2cf 1851524 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:26.541859 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178714 ap=2+0 inode=0x3f4d9df8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340]
2015-03-31 11:02:26.541869 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407812 create #1000006026a/blarg10053 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.541881 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2cf
2015-03-31 11:02:26.541885 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178714 ap=2+0 inode=0x3f4d9df8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340]
2015-03-31 11:02:26.541893 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178714 ap=2+0 inode=0x3f4d9df8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340]
2015-03-31 11:02:26.541899 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178714 ap=2+0 inode=0x3f4d9df8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340]
2015-03-31 11:02:26.541905 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10053) auth_unpin by 0x6772498 on [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178714 ap=1+0 inode=0x3f4d9df8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340] now 1+0
2015-03-31 11:02:26.541912 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178714 ap=1+0 inode=0x3f4d9df8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340]
2015-03-31 11:02:26.541918 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.541944 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295286 pv3295296 ap=8+1 f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 66=65+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.541971 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295286 pv3295296 ap=8+1 f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 66=65+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.541993 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295286 pv3295296 ap=8+1 f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 66=65+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542003 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178714 ap=1+0 inode=0x3f4d9df8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772340]
2015-03-31 11:02:26.542019 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407812 cr=0x49d3480)
2015-03-31 11:02:26.542026 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53472 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:26.542042 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:26.542053 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x25c25500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295287 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382361+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:26.542064 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x25c25500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178715 cv=170705/170705 ap=5+11+11 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 65=65+0) hs=65+1539,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 11
2015-03-31 11:02:26.542071 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295286 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 66=65+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:26.542083 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10053) auth_unpin by 0x25c25500 on [dentry #1/test_small/small5/blarg10053 [2,head] auth (dn sync l=1) (dversion lock) v=178714 inode=0x3f4d9df8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6772340] now 0+0
2015-03-31 11:02:26.542105 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:26.542107 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:26.542111 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:26.542112 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) mark_dirty [inode 1000006b2d0 [2,head] /test_small/small5/blarg10054 auth v178715 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.542135 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10054)  mark_dirty [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178716 v=177698 ap=2+0 inode=0x3f405440 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520]
2015-03-31 11:02:26.542142 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178716 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 65=65+0) hs=66+1538,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178716
2015-03-31 11:02:26.542151 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) mark_dirty_parent
2015-03-31 11:02:26.542152 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295286 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 65=65+0) n(v1 rc2015-03-31 11:03:03.000000 66=65+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542174 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295286 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.542178 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295288 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382361+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295288
2015-03-31 11:02:26.542189 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178717 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 66=66+0) hs=66+1538,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178717
2015-03-31 11:02:26.542196 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295289 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382369=382362+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295289
2015-03-31 11:02:26.542205 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d0 [2,head] /test_small/small5/blarg10054 auth v178716 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f405440]
2015-03-31 11:02:26.542216 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:26.542218 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27540 client_caps(grant ino 1000006b2d0 1851525 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:26.542237 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178716 ap=2+0 inode=0x3f405440 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520]
2015-03-31 11:02:26.542245 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407822 create #1000006026a/blarg10054 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.542256 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d0
2015-03-31 11:02:26.542258 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178716 ap=2+0 inode=0x3f405440 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520]
2015-03-31 11:02:26.542266 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178716 ap=2+0 inode=0x3f405440 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520]
2015-03-31 11:02:26.542272 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178716 ap=2+0 inode=0x3f405440 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520]
2015-03-31 11:02:26.542277 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10054) auth_unpin by 0x6772678 on [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178716 ap=1+0 inode=0x3f405440 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520] now 1+0
2015-03-31 11:02:26.542284 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178716 ap=1+0 inode=0x3f405440 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520]
2015-03-31 11:02:26.542289 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.542303 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295288 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 67=66+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542315 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295288 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 67=66+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542326 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295288 pv3295296 ap=7+1 f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 67=66+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542337 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178716 ap=1+0 inode=0x3f405440 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772520]
2015-03-31 11:02:26.542351 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407822 cr=0x8f08f00)
2015-03-31 11:02:26.542358 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53472 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:26.542375 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:26.542386 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242c9400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295289 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382369=382362+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:26.542396 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242c9400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178717 cv=170705/170705 ap=4+9+9 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 66=66+0) hs=66+1538,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 9
2015-03-31 11:02:26.542403 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295288 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 67=66+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:26.542415 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10054) auth_unpin by 0x242c9400 on [dentry #1/test_small/small5/blarg10054 [2,head] auth (dn sync l=1) (dversion lock) v=178716 inode=0x3f405440 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6772520] now 0+0
2015-03-31 11:02:26.542447 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:26.542448 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:26.542453 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:26.542454 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) mark_dirty [inode 1000006b2d1 [2,head] /test_small/small5/blarg10055 auth v178717 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.542477 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10055)  mark_dirty [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178718 v=177700 ap=2+0 inode=0x3f486540 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700]
2015-03-31 11:02:26.542483 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178718 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 66=66+0) hs=67+1537,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178718
2015-03-31 11:02:26.542492 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) mark_dirty_parent
2015-03-31 11:02:26.542493 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295288 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 66=66+0) n(v1 rc2015-03-31 11:03:03.000000 67=66+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542506 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295288 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.542510 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295290 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382369=382362+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295290
2015-03-31 11:02:26.542519 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178719 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 67=67+0) hs=67+1537,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178719
2015-03-31 11:02:26.542527 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295291 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382370=382363+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295291
2015-03-31 11:02:26.542535 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d1 [2,head] /test_small/small5/blarg10055 auth v178718 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f486540]
2015-03-31 11:02:26.542545 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:26.542548 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27541 client_caps(grant ino 1000006b2d1 1851526 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:26.542567 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178718 ap=2+0 inode=0x3f486540 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700]
2015-03-31 11:02:26.542575 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407832 create #1000006026a/blarg10055 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.542584 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d1
2015-03-31 11:02:26.542586 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178718 ap=2+0 inode=0x3f486540 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700]
2015-03-31 11:02:26.542592 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178718 ap=2+0 inode=0x3f486540 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700]
2015-03-31 11:02:26.542598 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178718 ap=2+0 inode=0x3f486540 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700]
2015-03-31 11:02:26.542603 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10055) auth_unpin by 0x6772858 on [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178718 ap=1+0 inode=0x3f486540 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700] now 1+0
2015-03-31 11:02:26.542610 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178718 ap=1+0 inode=0x3f486540 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700]
2015-03-31 11:02:26.542617 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.542631 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295290 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 68=67+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542643 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295290 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 68=67+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542655 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295290 pv3295296 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 68=67+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542665 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178718 ap=1+0 inode=0x3f486540 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772700]
2015-03-31 11:02:26.542680 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407832 cr=0x9ae6400)
2015-03-31 11:02:26.542687 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53472 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:26.542703 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:26.542715 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367d000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295291 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382370=382363+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:26.542725 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367d000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178719 cv=170705/170705 ap=3+7+7 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 67=67+0) hs=67+1537,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 7
2015-03-31 11:02:26.542732 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295290 pv3295296 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 68=67+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:26.542754 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10055) auth_unpin by 0x2367d000 on [dentry #1/test_small/small5/blarg10055 [2,head] auth (dn sync l=1) (dversion lock) v=178718 inode=0x3f486540 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6772700] now 0+0
2015-03-31 11:02:26.542774 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:26.542776 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:26.542780 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:26.542797 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) mark_dirty [inode 1000006b2d2 [2,head] /test_small/small5/blarg10056 auth v178719 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.542808 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10056)  mark_dirty [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178720 v=177702 ap=2+0 inode=0x3f332630 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0]
2015-03-31 11:02:26.542815 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178720 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 67=67+0) hs=68+1536,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178720
2015-03-31 11:02:26.542823 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) mark_dirty_parent
2015-03-31 11:02:26.542824 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295290 pv3295296 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 67=67+0) n(v1 rc2015-03-31 11:03:03.000000 68=67+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542836 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295290 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.542840 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295292 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382370=382363+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295292
2015-03-31 11:02:26.542850 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178721 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 68=68+0) hs=68+1536,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178721
2015-03-31 11:02:26.542857 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295293 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382371=382364+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295293
2015-03-31 11:02:26.542866 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d2 [2,head] /test_small/small5/blarg10056 auth v178720 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f332630]
2015-03-31 11:02:26.542876 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:26.542878 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27542 client_caps(grant ino 1000006b2d2 1851527 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:26.542897 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178720 ap=2+0 inode=0x3f332630 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0]
2015-03-31 11:02:26.542905 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407842 create #1000006026a/blarg10056 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.542915 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d2
2015-03-31 11:02:26.542917 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178720 ap=2+0 inode=0x3f332630 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0]
2015-03-31 11:02:26.542925 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178720 ap=2+0 inode=0x3f332630 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0]
2015-03-31 11:02:26.542931 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178720 ap=2+0 inode=0x3f332630 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0]
2015-03-31 11:02:26.542935 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10056) auth_unpin by 0x6772a38 on [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178720 ap=1+0 inode=0x3f332630 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0] now 1+0
2015-03-31 11:02:26.542941 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178720 ap=1+0 inode=0x3f332630 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0]
2015-03-31 11:02:26.542946 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.542960 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295292 pv3295296 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 69=68+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542972 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295292 pv3295296 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 69=68+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542984 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295292 pv3295296 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 69=68+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.542994 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178720 ap=1+0 inode=0x3f332630 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x67728e0]
2015-03-31 11:02:26.543008 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407842 cr=0x5e8c380)
2015-03-31 11:02:26.543016 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53472 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.543032 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.543043 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x24afa300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295293 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382371=382364+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:26.543053 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x24afa300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178721 cv=170705/170705 ap=2+5+5 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 68=68+0) hs=68+1536,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 5
2015-03-31 11:02:26.543061 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295292 pv3295296 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 69=68+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:26.543083 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10056) auth_unpin by 0x24afa300 on [dentry #1/test_small/small5/blarg10056 [2,head] auth (dn sync l=1) (dversion lock) v=178720 inode=0x3f332630 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x67728e0] now 0+0
2015-03-31 11:02:26.543103 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:26.543105 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:26.543109 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:26.543110 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) mark_dirty [inode 1000006b2d3 [2,head] /test_small/small5/blarg10057 auth v178721 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.543132 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10057)  mark_dirty [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178722 v=177704 ap=2+0 inode=0x3f3d7bf8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0]
2015-03-31 11:02:26.543139 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178722 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 68=68+0) hs=69+1535,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178722
2015-03-31 11:02:26.543148 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) mark_dirty_parent
2015-03-31 11:02:26.543149 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295292 pv3295296 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 68=68+0) n(v1 rc2015-03-31 11:03:03.000000 69=68+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543161 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295292 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.543165 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295294 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382371=382364+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295294
2015-03-31 11:02:26.543175 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178723 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 69=69+0) hs=69+1535,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178723
2015-03-31 11:02:26.543183 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295295 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382372=382365+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295295
2015-03-31 11:02:26.543192 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d3 [2,head] /test_small/small5/blarg10057 auth v178722 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3d7bf8]
2015-03-31 11:02:26.543202 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:26.543204 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27543 client_caps(grant ino 1000006b2d3 1851528 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:26.543222 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178722 ap=2+0 inode=0x3f3d7bf8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0]
2015-03-31 11:02:26.543230 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407852 create #1000006026a/blarg10057 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.543240 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d3
2015-03-31 11:02:26.543243 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178722 ap=2+0 inode=0x3f3d7bf8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0]
2015-03-31 11:02:26.543251 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178722 ap=2+0 inode=0x3f3d7bf8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0]
2015-03-31 11:02:26.543257 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178722 ap=2+0 inode=0x3f3d7bf8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0]
2015-03-31 11:02:26.543262 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10057) auth_unpin by 0x6772c18 on [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178722 ap=1+0 inode=0x3f3d7bf8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0] now 1+0
2015-03-31 11:02:26.543267 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178722 ap=1+0 inode=0x3f3d7bf8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0]
2015-03-31 11:02:26.543273 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.543287 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295294 pv3295296 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 70=69+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543299 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295294 pv3295296 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 70=69+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543310 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295294 pv3295296 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 70=69+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543321 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178722 ap=1+0 inode=0x3f3d7bf8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ac0]
2015-03-31 11:02:26.543336 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407852 cr=0x26d3df00)
2015-03-31 11:02:26.543343 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.543359 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.543370 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28ebe400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295295 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382372=382365+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:26.543381 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28ebe400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178723 cv=170705/170705 ap=1+3+3 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 69=69+0) hs=69+1535,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 3
2015-03-31 11:02:26.543389 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295294 pv3295296 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 70=69+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.543410 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10057) auth_unpin by 0x28ebe400 on [dentry #1/test_small/small5/blarg10057 [2,head] auth (dn sync l=1) (dversion lock) v=178722 inode=0x3f3d7bf8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6772ac0] now 0+0
2015-03-31 11:02:26.543430 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:26.543432 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:26.543436 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:26.543449 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) mark_dirty [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178723 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.543459 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10058)  mark_dirty [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178724 v=177706 ap=2+0 inode=0x3f391748 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0]
2015-03-31 11:02:26.543466 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178724 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 69=69+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178724
2015-03-31 11:02:26.543475 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) mark_dirty_parent
2015-03-31 11:02:26.543476 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295294 pv3295296 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 69=69+0) n(v1 rc2015-03-31 11:03:03.000000 70=69+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543488 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295296 v=3295294 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.543492 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295296 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382372=382365+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295296
2015-03-31 11:02:26.543502 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178725 v=178725 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178725
2015-03-31 11:02:26.543510 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295297 v=3295297 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382373=382366+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295297
2015-03-31 11:02:26.543518 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.543528 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:26.543531 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27544 client_caps(grant ino 1000006b2d4 1851529 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:26.543549 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178724 ap=2+0 inode=0x3f391748 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0]
2015-03-31 11:02:26.543557 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407862 create #1000006026a/blarg10058 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.543568 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d4
2015-03-31 11:02:26.543570 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178724 ap=2+0 inode=0x3f391748 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0]
2015-03-31 11:02:26.543577 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178724 ap=2+0 inode=0x3f391748 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0]
2015-03-31 11:02:26.543584 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178724 ap=2+0 inode=0x3f391748 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0]
2015-03-31 11:02:26.543588 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10058) auth_unpin by 0x6772df8 on [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178724 ap=1+0 inode=0x3f391748 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0] now 1+0
2015-03-31 11:02:26.543595 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178724 ap=1+0 inode=0x3f391748 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0]
2015-03-31 11:02:26.543600 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.543614 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.543625 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543638 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543747 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543759 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:26.543762 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.543773 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.543788 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:26.543790 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407867 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.543794 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407867 cr=0x9f7e400) #1000006026a
2015-03-31 11:02:26.543796 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.543797 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.543798 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543809 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407867 cr=0x9f7e400)
2015-03-31 11:02:26.543812 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.543837 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.543847 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543856 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.543869 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.543880 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543889 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.543902 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.543912 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543922 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543932 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543941 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543951 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543961 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.543990 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544000 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544009 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31437} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544025 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407867 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.544030 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407867 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.544040 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.544043 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.544047 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31438
2015-03-31 11:02:26.544049 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31438 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.544062 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407867 cr=0x9f7e400)
2015-03-31 11:02:26.544081 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.544096 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.544110 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.544120 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.544129 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544140 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544163 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544173 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544183 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544193 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544204 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544214 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544224 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544233 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544242 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.544256 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.544267 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.544292 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544304 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544314 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544324 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178724 ap=1+0 inode=0x3f391748 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772ca0]
2015-03-31 11:02:26.544332 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544354 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407862 cr=0x9299e00)
2015-03-31 11:02:26.544361 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.544376 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.544386 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2a626e00 on [dir 10000000000 /test_small/ [2,head] auth v=3295297 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382373=382366+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:26.544397 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2a626e00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178725 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:26.544405 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:26.544415 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10058) auth_unpin by 0x2a626e00 on [dentry #1/test_small/small5/blarg10058 [2,head] auth (dn sync l=1) (dversion lock) v=178724 inode=0x3f391748 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6772ca0] now 0+0
2015-03-31 11:02:26.544463 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e57 follows 0 op update
2015-03-31 11:02:26.544472 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544487 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.544489 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.544509 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.544510 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544518 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544526 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.544529 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544534 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544541 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544548 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.544549 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544556 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544563 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544568 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544574 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.544575 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.544576 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e57 [2,head] /test_small/small1/blarg10058 auth v136934 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9b0068]
2015-03-31 11:02:26.544584 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.544602 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407868 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.544623 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407868 cr=0x9f7af80)
2015-03-31 11:02:26.544625 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407868 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.544629 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407868 cr=0x9f7af80) #1000006b2d4
2015-03-31 11:02:26.544631 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d4 snap head
2015-03-31 11:02:26.544632 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.544634 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.544648 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407868 cr=0x9f7af80)
2015-03-31 11:02:26.544651 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.544667 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.544679 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.544690 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.544699 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.544725 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.544740 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.544749 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.544761 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.544770 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.544780 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f391748]
2015-03-31 11:02:26.544795 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_pin by 0x2b0c2800 on [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f391748] now 1+0
2015-03-31 11:02:26.544805 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.544820 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.544834 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.544857 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.544866 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544875 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.544885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.544894 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.544910 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407868 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.544914 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407868 getattr Xs #1000006b2d4 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.544925 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.544928 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.544932 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:26.544935 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.544950 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407868 cr=0x9f7af80)
2015-03-31 11:02:26.544969 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.544985 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.544999 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545009 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545019 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545029 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545050 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.545060 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f391748]
2015-03-31 11:02:26.545070 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.545085 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.545096 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:26.545106 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) auth_unpin by 0x2b0c2800 on [inode 1000006b2d4 [2,head] /test_small/small5/blarg10058 auth v178724 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f391748] now 0+0
2015-03-31 11:02:26.545144 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407869 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545162 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407869 cr=0x9f7a300)
2015-03-31 11:02:26.545164 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407869 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545167 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407869 cr=0x9f7a300) #1000006026a
2015-03-31 11:02:26.545169 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.545170 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.545172 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.545184 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407869 cr=0x9f7a300)
2015-03-31 11:02:26.545187 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.545201 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.545211 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.545220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.545234 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.545249 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.545258 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.545268 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.545287 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.545297 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545311 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545336 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545345 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545372 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545381 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31438} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545397 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407869 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545401 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407869 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545409 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.545412 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.545415 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31439
2015-03-31 11:02:26.545417 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31439 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.545429 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407869 cr=0x9f7a300)
2015-03-31 11:02:26.545448 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545463 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545496 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545506 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545525 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545534 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.545544 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.545558 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.545568 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:26.545602 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407870 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545620 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407870 cr=0x9f7d780)
2015-03-31 11:02:26.545622 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407870 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545624 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407870 cr=0x9f7d780) #10000004e67
2015-03-31 11:02:26.545626 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e67 snap head
2015-03-31 11:02:26.545627 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.545628 7fbe462be700 10 mds.0.server ref is [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.545638 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407870 cr=0x9f7d780)
2015-03-31 11:02:26.545640 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.545655 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.545665 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.545674 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.545679 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.545692 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.545706 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.545716 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.545727 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.545736 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.545745 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.545751 7fbe462be700 10 mds.0.cache.ino(10000004e67) auth_pin by 0x2b0c2800 on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9af730] now 1+0
2015-03-31 11:02:26.545758 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545773 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545790 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545801 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545811 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.545820 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.545830 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.545836 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.545843 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.545860 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.545883 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407870 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545887 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407870 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.545896 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.545899 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.545902 7fbe462be700 10 mds.0.cache.ino(10000004e67) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.545904 7fbe462be700 10 mds.0.cache.ino(10000004e67) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.545916 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407870 cr=0x9f7d780)
2015-03-31 11:02:26.545935 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545951 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.545964 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545975 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.545984 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.545993 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.546013 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.546020 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.546026 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.546033 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.546038 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.546052 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.546063 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.546072 7fbe462be700 10 mds.0.cache.ino(10000004e67) auth_unpin by 0x2b0c2800 on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9af730] now 0+0
2015-03-31 11:02:26.546182 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407871 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.546200 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407871 cr=0x9f7c380)
2015-03-31 11:02:26.546202 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407871 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.546205 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407871 cr=0x9f7c380) #1000006026a
2015-03-31 11:02:26.546207 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.546208 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.546209 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.546223 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407871 cr=0x9f7c380)
2015-03-31 11:02:26.546226 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.546240 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.546249 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.546259 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.546271 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.546285 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.546294 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.546305 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.546313 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.546324 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.546337 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.546351 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.546360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.546370 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546379 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546389 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546399 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31439} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546415 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407871 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.546419 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407871 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.546440 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.546442 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.546446 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31440
2015-03-31 11:02:26.546460 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31440 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.546473 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407871 cr=0x9f7c380)
2015-03-31 11:02:26.546491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.546507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.546521 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.546531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.546540 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546550 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546570 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546580 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.546590 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.546604 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.546614 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:26.546720 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407872 lookup #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.546737 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407872 cr=0x9ae3e80)
2015-03-31 11:02:26.546739 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407872 lookup #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.546741 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407872 cr=0x9ae3e80) #1000006026a/blarg10059
2015-03-31 11:02:26.546743 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.546746 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10059 [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock) v=177708 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772e80]
2015-03-31 11:02:26.546757 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.546759 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407872 lookup #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.546768 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.546780 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407872 cr=0x9ae3e80)
2015-03-31 11:02:26.587009 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407873 lookup #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587030 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407873 cr=0x9ae7300)
2015-03-31 11:02:26.587032 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407873 lookup #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587035 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407873 cr=0x9ae7300) #1000006026a/blarg10059
2015-03-31 11:02:26.587037 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.587040 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10059 [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock) v=177708 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772e80]
2015-03-31 11:02:26.587049 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.587050 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407873 lookup #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587063 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.587075 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407873 cr=0x9ae7300)
2015-03-31 11:02:26.587107 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407874 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587125 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407874 cr=0x9ae3200)
2015-03-31 11:02:26.587126 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407874 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587129 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407874 cr=0x9ae3200) #1000006026a
2015-03-31 11:02:26.587131 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.587132 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.587133 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.587149 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407874 cr=0x9ae3200)
2015-03-31 11:02:26.587152 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.587168 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.587179 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.587189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.587203 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.587218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.587228 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.587239 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.587248 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.587259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587273 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587287 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587329 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587339 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31440} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587356 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407874 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587360 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407874 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587370 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.587373 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.587378 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31441
2015-03-31 11:02:26.587391 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31441 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.587406 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407874 cr=0x9ae3200)
2015-03-31 11:02:26.587416 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587447 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587459 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587470 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587480 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587501 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587512 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.587526 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.587537 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:26.587575 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407875 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587593 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407875 cr=0x9ae1680)
2015-03-31 11:02:26.587597 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407875 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587600 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407875 cr=0x9ae1680) #1000006026a
2015-03-31 11:02:26.587602 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.587603 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.587604 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.587615 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407875 cr=0x9ae1680)
2015-03-31 11:02:26.587617 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.587632 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.587642 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.587652 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.587666 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.587681 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.587690 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.587701 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.587710 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.587721 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587735 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587759 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587769 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587780 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587796 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587807 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587817 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31441} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587833 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407875 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587837 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407875 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.587848 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.587851 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.587854 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31442
2015-03-31 11:02:26.587857 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31442 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.587872 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407875 cr=0x9ae1680)
2015-03-31 11:02:26.587891 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587909 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.587924 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587935 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.587946 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587957 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587967 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587976 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.587987 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.588001 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.588012 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:26.588049 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407876 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.588067 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407876 cr=0x9ae4d80)
2015-03-31 11:02:26.588069 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407876 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.588072 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407876 cr=0x9ae4d80) #10000004e67
2015-03-31 11:02:26.588074 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e67 snap head
2015-03-31 11:02:26.588075 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.588076 7fbe462be700 10 mds.0.server ref is [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.588085 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407876 cr=0x9ae4d80)
2015-03-31 11:02:26.588087 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.588101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.588111 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.588120 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.588127 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.588140 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.588154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.588164 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.588175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.588183 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.588193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.588200 7fbe462be700 10 mds.0.cache.ino(10000004e67) auth_pin by 0x2b0c2800 on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9af730] now 1+0
2015-03-31 11:02:26.588207 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.588222 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.588246 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.588256 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.588266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.588275 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.588284 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588291 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588298 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588315 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588327 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407876 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.588331 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407876 getattr Xs #10000004e67 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.588341 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.588343 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.588348 7fbe462be700 10 mds.0.cache.ino(10000004e67) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.588350 7fbe462be700 10 mds.0.cache.ino(10000004e67) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.588363 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407876 cr=0x9ae4d80)
2015-03-31 11:02:26.588382 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.588398 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.588412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.588422 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.588432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.588440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.588461 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588468 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9af730]
2015-03-31 11:02:26.588487 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.588502 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.588513 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.588522 7fbe462be700 10 mds.0.cache.ino(10000004e67) auth_unpin by 0x2b0c2800 on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9af730] now 0+0
2015-03-31 11:02:26.588775 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407877 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.588797 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407877 cr=0x9ae4b00)
2015-03-31 11:02:26.588799 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407877 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.588802 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407877 cr=0x9ae4b00) #1000006026a
2015-03-31 11:02:26.588804 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.588806 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.588807 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.588821 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407877 cr=0x9ae4b00)
2015-03-31 11:02:26.588824 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.588838 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.588849 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.588858 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.588872 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.588888 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.588897 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.588908 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.588918 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.588929 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.588943 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.588958 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.588968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.588979 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.588989 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589000 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589010 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31442} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589027 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407877 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.589031 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407877 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.589042 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.589046 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.589051 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31443
2015-03-31 11:02:26.589053 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31443 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.589068 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407877 cr=0x9ae4b00)
2015-03-31 11:02:26.589076 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.589092 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.589107 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.589118 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.589128 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31443} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589139 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31443} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31443} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589159 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31443} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589169 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.589183 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.589194 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31443} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:26.589381 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407878 create #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.589398 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407878 cr=0x9ae1e00)
2015-03-31 11:02:26.589401 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589414 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:26.589416 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589436 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.589439 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589449 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589459 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589468 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589477 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.589478 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407878 create #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.589481 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10059
2015-03-31 11:02:26.589482 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407878 cr=0x9ae1e00) #1000006026a/blarg10059
2015-03-31 11:02:26.589484 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10059
2015-03-31 11:02:26.589486 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.589487 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.589488 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178725 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.589496 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178725 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.589502 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10059 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178725 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.589511 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407878 cr=0x9ae1e00)
2015-03-31 11:02:26.589516 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.589531 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.589541 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589550 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock) v=177708 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589557 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.589570 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.589584 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.589593 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.589604 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.589613 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.589622 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock) v=177708 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589639 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10059) auth_pin by 0x2b0c2800 on [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock) v=177708 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80] now 1+0
2015-03-31 11:02:26.589645 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock) v=177708 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589649 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177708 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589654 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177708 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589658 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177708 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589663 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177708 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589668 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10059) auth_pin by 0x6772fd8 on [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177708 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80] now 2+0
2015-03-31 11:02:26.589673 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2b0c2800) [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) v=177708 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589678 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.589692 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.589705 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.589718 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.589732 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.589741 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.589751 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.589760 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.589769 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589778 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589792 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589801 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589811 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589820 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589830 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589839 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589848 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589858 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589867 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589884 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d5 ([1000006b2d6~34d], 845 left)
2015-03-31 11:02:26.589887 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.589888 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d5 [2,head] #1000006b2d5 auth v1 s=0 n() (iversion lock) 0x3f36c010]
2015-03-31 11:02:26.589892 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178726
2015-03-31 11:02:26.589893 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10059)  pre_dirty [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) pv=178726 v=177708 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.589902 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f36c010]
2015-03-31 11:02:26.589909 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2b0c2800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178725 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:26.589917 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x995fd20
2015-03-31 11:02:26.589919 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178727
2015-03-31 11:02:26.589920 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178727 v=178725 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.589927 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178727 v=178725 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.589933 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f36c010]
2015-03-31 11:02:26.589939 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.589941 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.589954 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295298
2015-03-31 11:02:26.589956 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295298 v=3295296 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.589960 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295298 (current v 3295296)
2015-03-31 11:02:26.589961 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178727 v=178725 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=70+1534,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.589967 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.589968 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2b0c2800 on [dir 10000000000 /test_small/ [2,head] auth v=3295297 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382373=382366+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:26.589977 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa06bbd0
2015-03-31 11:02:26.589980 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295299
2015-03-31 11:02:26.589981 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.589993 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590003 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590013 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.590014 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.671504 < 1, stopping
2015-03-31 11:02:26.590019 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590029 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.590033 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295298 v=3295296 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.590038 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31443} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590051 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f36c010]
2015-03-31 11:02:26.590058 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.590061 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f36c010]
2015-03-31 11:02:26.590068 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.590070 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590078 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590085 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590091 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590098 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590104 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590111 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590117 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590123 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590130 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590135 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590142 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590148 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590154 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590161 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36c010]
2015-03-31 11:02:26.590171 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.590172 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.590174 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f36c010 tracedn 0x6772e80
2015-03-31 11:02:26.590176 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2b0c2800) [dentry #1/test_small/small5/blarg10059 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) pv=178726 v=177708 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x6772e80]
2015-03-31 11:02:26.590183 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407878 create #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.590191 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.590194 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31444
2015-03-31 11:02:26.590196 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31444 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.590202 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.590205 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.590207 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) including xattrs version 0
2015-03-31 11:02:26.590245 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590273 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590288 7fbe406af700  5 mds.0.log _submit_thread 5419645904~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.590289 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590301 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590315 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590338 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590349 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590359 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590370 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590382 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590393 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590403 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590414 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590424 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590486 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407879 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.590506 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407879 cr=0x9ae3c00)
2015-03-31 11:02:26.590508 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407879 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.590512 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407879 cr=0x9ae3c00) #1000006026a
2015-03-31 11:02:26.590513 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.590515 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.590516 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590530 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407879 cr=0x9ae3c00)
2015-03-31 11:02:26.590533 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590548 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590559 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590570 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590583 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.590608 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590617 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.590628 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590638 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.590648 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590663 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590677 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590688 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590698 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590709 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590719 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590729 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31444} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590767 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407879 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.590771 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407879 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.590781 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.590788 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.590791 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31445
2015-03-31 11:02:26.590793 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31445 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.590806 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407879 cr=0x9ae3c00)
2015-03-31 11:02:26.590825 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590841 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.590856 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590866 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.590876 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590887 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590908 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590919 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.590928 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.590941 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.590952 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.591070 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407880 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.591087 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407880 cr=0x9ae4380)
2015-03-31 11:02:26.591090 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407880 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.591093 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407880 cr=0x9ae4380) #1000006b2d5
2015-03-31 11:02:26.591095 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d5 snap head
2015-03-31 11:02:26.591096 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.591097 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f36c010]
2015-03-31 11:02:26.591111 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407880 cr=0x9ae4380)
2015-03-31 11:02:26.591114 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.591130 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.591141 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.591151 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f36c010]
2015-03-31 11:02:26.591161 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.591185 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.591200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.591209 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.591220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.591230 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.591240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f36c010]
2015-03-31 11:02:26.591250 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_pin by 0x242cdf00 on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f36c010] now 1+0
2015-03-31 11:02:26.591260 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.591274 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.591289 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.591299 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.591309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.591330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.591352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.591361 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.591374 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407880 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.591378 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407880 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.591388 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.591391 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.591396 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.591398 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.591410 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407880 cr=0x9ae4380)
2015-03-31 11:02:26.591429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.591445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.591458 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.591469 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.591479 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.591489 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.591510 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.591521 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.591530 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.591545 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.591555 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.591565 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_unpin by 0x242cdf00 on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36c010] now 0+0
2015-03-31 11:02:26.631071 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407881 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.631093 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407881 cr=0x9ae5f00)
2015-03-31 11:02:26.631098 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407881 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.631101 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407881 cr=0x9ae5f00) #1000006b2d5
2015-03-31 11:02:26.631104 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d5 snap head
2015-03-31 11:02:26.631105 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.631106 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.631123 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407881 cr=0x9ae5f00)
2015-03-31 11:02:26.631127 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631145 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631156 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631168 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.631179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631194 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.631209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631219 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.631231 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631242 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.631253 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.631263 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_pin by 0x242cdf00 on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36c010] now 1+0
2015-03-31 11:02:26.631274 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631342 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631363 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631373 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631383 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.631392 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.631407 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407881 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.631411 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407881 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.631421 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.631425 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.631429 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.631432 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.631445 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407881 cr=0x9ae5f00)
2015-03-31 11:02:26.631465 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631495 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631506 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631516 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631548 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.631559 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.631569 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.631583 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.631594 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.631605 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_unpin by 0x242cdf00 on [inode 1000006b2d5 [2,head] {#1000006b2d5 /test_small/small5/blarg10059} auth v178726 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36c010] now 0+0
2015-03-31 11:02:26.631643 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407882 readdir #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.631659 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407882 cr=0xa250c80)
2015-03-31 11:02:26.631662 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407882 readdir #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.631665 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407882 cr=0xa250c80) #1000006026a
2015-03-31 11:02:26.631667 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.631668 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.631670 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631684 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407882 cr=0xa250c80)
2015-03-31 11:02:26.631687 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631701 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631711 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631722 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631735 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.631749 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631759 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.631769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631794 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.631815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631827 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.631840 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631849 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.631859 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631868 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631878 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631887 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631897 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.631906 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.631916 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0xb37be70 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:26.631918 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.635208 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e67 follows 0 op update
2015-03-31 11:02:26.635211 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635222 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.635224 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.635242 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.635243 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635249 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635258 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.635260 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635271 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635291 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635298 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.635299 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635308 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635310 7fbe406af700  5 mds.0.log _submit_thread 5419647544~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.635315 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635321 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635326 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635333 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635338 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635345 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.635354 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.645981 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:26.645987 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:26.645996 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:26.646001 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) mark_dirty [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178725 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.646017 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10059)  mark_dirty [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178726 v=177708 ap=2+0 inode=0x3f36c010 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80]
2015-03-31 11:02:26.646024 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178727 v=178726 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 70=70+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178726
2015-03-31 11:02:26.646035 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) mark_dirty_parent
2015-03-31 11:02:26.646036 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295296 pv3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 70=70+0) n(v1 rc2015-03-31 11:03:03.000000 71=70+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.646051 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295298 v=3295296 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.646056 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295299 v=3295298 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382373=382366+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295298
2015-03-31 11:02:26.646066 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178727 v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178727
2015-03-31 11:02:26.646074 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295299 v=3295299 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295299
2015-03-31 11:02:26.646083 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.646094 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:26.646097 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27545 client_caps(grant ino 1000006b2d5 1851530 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:26.646119 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178726 ap=2+0 inode=0x3f36c010 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80]
2015-03-31 11:02:26.646128 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407878 create #1000006026a/blarg10059 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.646140 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d5
2015-03-31 11:02:26.646142 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178726 ap=2+0 inode=0x3f36c010 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80]
2015-03-31 11:02:26.646151 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178726 ap=2+0 inode=0x3f36c010 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80]
2015-03-31 11:02:26.646157 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178726 ap=2+0 inode=0x3f36c010 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80]
2015-03-31 11:02:26.646162 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10059) auth_unpin by 0x6772fd8 on [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178726 ap=1+0 inode=0x3f36c010 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80] now 1+0
2015-03-31 11:02:26.646169 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178726 ap=1+0 inode=0x3f36c010 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80]
2015-03-31 11:02:26.646175 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.646190 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.646202 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.646216 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.646228 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.646248 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:26.646251 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:26.646262 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.646273 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:26.646274 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407882 readdir #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.646277 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407882 cr=0xa250c80) #1000006026a
2015-03-31 11:02:26.646279 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.646281 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.646281 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646292 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407882 cr=0xa250c80)
2015-03-31 11:02:26.646295 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.646310 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.646320 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646341 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.646355 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.646365 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646375 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.646389 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.646400 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646411 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646422 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646432 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646442 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31445} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646458 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:26.646459 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178727 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.646468 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:26.646473 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:26.646476 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646481 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:26.646483 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646487 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:26.646489 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646492 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:26.646494 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646497 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:26.646499 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646502 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:26.646504 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646507 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:26.646509 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646512 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:26.646514 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646517 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:26.646519 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646522 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:26.646524 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646527 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:26.646528 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646532 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:26.646534 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646537 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:26.646539 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646542 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:26.646543 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646546 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:26.646549 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646553 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:26.646554 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646557 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:26.646559 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646562 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:26.646564 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646567 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:26.646568 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646572 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:26.646573 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646576 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:26.646578 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646581 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:26.646583 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646586 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:26.646587 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646590 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:26.646592 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646595 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:26.646597 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646600 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:26.646602 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646605 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:26.646606 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646609 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:26.646611 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646614 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:26.646616 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646619 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:26.646621 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646624 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:26.646626 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646629 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:26.646630 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646633 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:26.646635 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646638 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:26.646640 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646642 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:26.646644 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646647 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:26.646649 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646652 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:26.646653 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646656 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:26.646658 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646661 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:26.646663 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646675 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:26.646677 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646680 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:26.646682 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646694 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:26.646696 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646699 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:26.646700 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646703 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:26.646705 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646719 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:26.646721 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646723 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:26.646725 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646727 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:26.646729 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646731 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:26.646733 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646735 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:26.646737 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646739 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:26.646741 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646743 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:26.646744 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646747 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:26.646748 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646751 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:26.646752 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646755 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:26.646756 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646759 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:26.646760 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646763 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:26.646764 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646766 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:26.646768 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646771 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:26.646772 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646775 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:26.646776 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646778 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:26.646780 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646789 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:26.646790 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646793 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:26.646794 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646797 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:26.646798 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646801 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:26.646803 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646805 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:26.646807 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646809 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:26.646811 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646814 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:26.646815 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646818 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:26.646819 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646822 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:26.646823 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646826 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:26.646827 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646830 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:26.646831 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646876 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407882 readdir #1000006026a 2015-03-31 11:03:03.000000) v2 readdir num=71 bytes=19383 end=1 complete=1
2015-03-31 11:02:26.646881 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407882 readdir #1000006026a 2015-03-31 11:03:03.000000) v2 readdir num=71 end=1 complete=1
2015-03-31 11:02:26.646884 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407882 readdir #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.646893 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.646896 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.646899 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31446
2015-03-31 11:02:26.646901 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31446 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.646912 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407882 cr=0xa250c80)
2015-03-31 11:02:26.646929 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.646945 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.646958 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.646967 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.646977 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646988 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.646998 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647019 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647030 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647039 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647049 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.647063 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.647073 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.647097 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647108 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647118 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647139 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178726 ap=1+0 inode=0x3f36c010 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x6772e80]
2015-03-31 11:02:26.647149 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647170 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407878 cr=0x9ae1e00)
2015-03-31 11:02:26.647177 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.647193 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.647204 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2b0c2800 on [dir 10000000000 /test_small/ [2,head] auth v=3295299 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:26.647215 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2b0c2800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178727 cv=170705/170705 ap=0+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 1
2015-03-31 11:02:26.647223 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:26.647233 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10059) auth_unpin by 0x2b0c2800 on [dentry #1/test_small/small5/blarg10059 [2,head] auth (dn sync l=1) (dversion lock) v=178726 inode=0x3f36c010 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x6772e80] now 0+0
2015-03-31 11:02:26.647279 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407883 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.647311 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407883 cr=0xa253700)
2015-03-31 11:02:26.647314 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407883 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.647318 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407883 cr=0xa253700) #1000006b2d5
2015-03-31 11:02:26.647320 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d5 snap head
2015-03-31 11:02:26.647321 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.647322 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.647339 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407883 cr=0xa253700)
2015-03-31 11:02:26.647342 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.647361 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.647373 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.647384 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.647394 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.647409 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.647425 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.647435 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.647447 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.647456 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.647484 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.647502 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_pin by 0x23dd2300 on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010] now 1+0
2015-03-31 11:02:26.647512 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.647538 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.647551 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.647561 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.647570 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647580 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647589 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.647598 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.647611 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407883 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.647615 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407883 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.647626 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.647629 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.647633 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:26.647635 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.647650 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407883 cr=0xa253700)
2015-03-31 11:02:26.647669 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.647685 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.647699 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.647710 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.647720 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647729 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.647750 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.647759 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.647769 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.647792 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.647803 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:26.647812 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_unpin by 0x23dd2300 on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010] now 0+0
2015-03-31 11:02:26.649068 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e67 follows 0 op update
2015-03-31 11:02:26.649071 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649083 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.649085 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.649102 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.649103 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649110 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649118 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.649120 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649125 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649133 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649138 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.649139 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649147 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649154 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649161 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649167 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.649168 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.649169 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e67 [2,head] /test_small/small1/blarg10059 auth v136936 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9af730]
2015-03-31 11:02:26.649177 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.689061 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407884 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.689086 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407884 cr=0xa251180)
2015-03-31 11:02:26.689088 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407884 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.689092 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407884 cr=0xa251180) #1000006b2d5
2015-03-31 11:02:26.689094 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d5 snap head
2015-03-31 11:02:26.689095 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.689097 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.689113 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407884 cr=0xa251180)
2015-03-31 11:02:26.689116 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.689134 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.689146 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.689157 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.689167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.689182 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.689197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.689207 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.689218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.689237 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.689248 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010]
2015-03-31 11:02:26.689257 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_pin by 0x23dd2300 on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010] now 1+0
2015-03-31 11:02:26.689267 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.689292 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.689316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.689326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.689336 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.689345 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.689354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.689363 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.689378 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407884 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.689382 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407884 getattr Xs #1000006b2d5 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.689393 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.689397 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.689401 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:26.689404 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.689418 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407884 cr=0xa251180)
2015-03-31 11:02:26.689437 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.689453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.689467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.689478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.689488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.689498 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.689518 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.689528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f36c010]
2015-03-31 11:02:26.689538 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.689552 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.689563 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:26.689574 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) auth_unpin by 0x23dd2300 on [inode 1000006b2d5 [2,head] /test_small/small5/blarg10059 auth v178726 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36c010] now 0+0
2015-03-31 11:02:26.689870 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407885 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.689888 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407885 cr=0xa256900)
2015-03-31 11:02:26.689890 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407885 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.689894 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407885 cr=0xa256900) #100000003f2
2015-03-31 11:02:26.689895 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f2 snap head
2015-03-31 11:02:26.689897 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.689898 7fbe462be700 10 mds.0.server ref is [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.689909 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407885 cr=0xa256900)
2015-03-31 11:02:26.689912 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.689927 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.689938 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.689947 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.689954 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.689968 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.689983 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.689992 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.690004 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.690012 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.690022 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.690027 7fbe462be700 10 mds.0.cache.ino(100000003f2) auth_pin by 0x23dd2300 on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890] now 1+0
2015-03-31 11:02:26.690035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.690050 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.690074 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.690085 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.690095 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.690104 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.690113 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690129 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690147 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690152 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690165 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407885 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.690169 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407885 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.690179 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.690182 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.690187 7fbe462be700 10 mds.0.cache.ino(100000003f2) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.690189 7fbe462be700 10 mds.0.cache.ino(100000003f2) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.690201 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407885 cr=0xa256900)
2015-03-31 11:02:26.690220 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.690236 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.690249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.690260 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.690269 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.690278 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.690297 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690304 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690311 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690317 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.690323 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.690338 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.690348 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.690357 7fbe462be700 10 mds.0.cache.ino(100000003f2) auth_unpin by 0x23dd2300 on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a8890] now 0+0
2015-03-31 11:02:26.690705 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407886 lookup #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.690727 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407886 cr=0x3b08f00)
2015-03-31 11:02:26.690729 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407886 lookup #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.690732 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407886 cr=0x3b08f00) #1000006026a/blarg1006
2015-03-31 11:02:26.690734 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.690737 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1006 [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock) v=177710 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.690746 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.690747 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407886 lookup #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.690759 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.690773 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407886 cr=0x3b08f00)
2015-03-31 11:02:26.691272 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407887 lookup #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.691293 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407887 cr=0x3b0e180)
2015-03-31 11:02:26.691296 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407887 lookup #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.691299 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407887 cr=0x3b0e180) #1000006026a/blarg1006
2015-03-31 11:02:26.691301 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.691303 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1006 [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock) v=177710 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.691312 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.691313 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407887 lookup #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.691324 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.691337 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407887 cr=0x3b0e180)
2015-03-31 11:02:26.691814 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407888 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.691836 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407888 cr=0x237c1400)
2015-03-31 11:02:26.691839 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407888 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.691842 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407888 cr=0x237c1400) #100000003f2
2015-03-31 11:02:26.691844 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f2 snap head
2015-03-31 11:02:26.691846 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.691847 7fbe462be700 10 mds.0.server ref is [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.691859 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407888 cr=0x237c1400)
2015-03-31 11:02:26.691862 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.691880 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.691891 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.691900 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.691907 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.691921 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.691936 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.691946 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.691968 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.691977 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.691987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.691993 7fbe462be700 10 mds.0.cache.ino(100000003f2) auth_pin by 0x23dd2300 on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890] now 1+0
2015-03-31 11:02:26.692001 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692017 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692042 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692053 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692063 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.692072 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.692082 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692089 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692095 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692102 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692116 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407888 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.692119 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407888 getattr Xs #100000003f2 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.692131 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.692135 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.692139 7fbe462be700 10 mds.0.cache.ino(100000003f2) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.692143 7fbe462be700 10 mds.0.cache.ino(100000003f2) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.692159 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407888 cr=0x237c1400)
2015-03-31 11:02:26.692168 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692184 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692199 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692210 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692220 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.692230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.692239 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692247 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692254 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692259 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a8890]
2015-03-31 11:02:26.692266 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.692281 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.692292 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.692301 7fbe462be700 10 mds.0.cache.ino(100000003f2) auth_unpin by 0x23dd2300 on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a8890] now 0+0
2015-03-31 11:02:26.692616 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407889 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.692636 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407889 cr=0x237c5780)
2015-03-31 11:02:26.692638 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407889 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.692641 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407889 cr=0x237c5780) #1000006026a
2015-03-31 11:02:26.692643 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.692644 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.692645 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.692659 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407889 cr=0x237c5780)
2015-03-31 11:02:26.692662 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.692676 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.692685 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.692695 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.692709 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.692723 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.692733 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.692744 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.692753 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:26.692764 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692777 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692796 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692806 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692816 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.692826 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.692836 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.692846 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31446} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.692878 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407889 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.692893 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407889 getattr Xs #1000006026a 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.692903 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.692906 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.692910 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31447
2015-03-31 11:02:26.692912 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31447 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.692925 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407889 cr=0x237c5780)
2015-03-31 11:02:26.692944 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692960 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.692974 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692984 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.692994 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31447} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693005 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31447} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693025 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31447} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693035 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+0 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31447} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693044 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:26.693058 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:26.693069 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31447} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:26.693441 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407890 create #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.693461 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407890 cr=0x237c7a80)
2015-03-31 11:02:26.693465 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693482 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:26.693484 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693495 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.693496 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693508 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693518 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693528 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693537 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.693538 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407890 create #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.693542 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1006
2015-03-31 11:02:26.693543 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407890 cr=0x237c7a80) #1000006026a/blarg1006
2015-03-31 11:02:26.693545 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1006
2015-03-31 11:02:26.693546 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.693547 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.693549 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178727 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.693556 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178727 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.693563 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1006 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178727 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:26.693572 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407890 cr=0x237c7a80)
2015-03-31 11:02:26.693578 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.693594 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.693604 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock) v=177710 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693611 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693621 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:26.693635 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.693649 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:26.693669 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:26.693691 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock) v=177710 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693695 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1006) auth_pin by 0x23dd2300 on [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock) v=177710 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260] now 1+0
2015-03-31 11:02:26.693702 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=0+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:26.693711 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.693721 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock) v=177710 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693726 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177710 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693731 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177710 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693736 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177710 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693741 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177710 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693745 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1006) auth_pin by 0x3ce73b8 on [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177710 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260] now 2+0
2015-03-31 11:02:26.693750 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd2300) [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) v=177710 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693756 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.693770 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.693788 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.693801 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.693815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.693824 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.693834 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.693843 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.693852 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693861 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693870 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693879 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693889 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693899 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693908 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693917 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693927 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693936 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693945 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.693964 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d6 ([1000006b2d7~34c], 844 left)
2015-03-31 11:02:26.693967 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.693969 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d6 [2,head] #1000006b2d6 auth v1 s=0 n() (iversion lock) 0x3f3fdc68]
2015-03-31 11:02:26.693973 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178728
2015-03-31 11:02:26.693974 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1006)  pre_dirty [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) pv=178728 v=177710 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.693982 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3fdc68]
2015-03-31 11:02:26.693989 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd2300 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:26.693998 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0xa06ebf0
2015-03-31 11:02:26.694000 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178729
2015-03-31 11:02:26.694001 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178729 v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.694008 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178729 v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.694015 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3fdc68]
2015-03-31 11:02:26.694020 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.694021 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694034 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295300
2015-03-31 11:02:26.694036 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295300 v=3295298 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.694039 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295300 (current v 3295298)
2015-03-31 11:02:26.694041 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178729 v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.694048 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.694050 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd2300 on [dir 10000000000 /test_small/ [2,head] auth v=3295299 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:26.694058 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa0693f0
2015-03-31 11:02:26.694060 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295301
2015-03-31 11:02:26.694061 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694072 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694082 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694092 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.694094 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.775583 < 1, stopping
2015-03-31 11:02:26.694098 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694108 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:26.694111 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295300 v=3295298 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.694116 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31447} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694129 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3fdc68]
2015-03-31 11:02:26.694136 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.694139 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694146 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.694148 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694156 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694163 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694169 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694176 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694182 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694189 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694195 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694201 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694207 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694213 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694220 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694226 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694233 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694239 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694249 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.694250 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.694252 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3fdc68 tracedn 0x3ce7260
2015-03-31 11:02:26.694254 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd2300) [dentry #1/test_small/small5/blarg1006 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) pv=178728 v=177710 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7260]
2015-03-31 11:02:26.694261 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407890 create #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.694269 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.694273 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31448
2015-03-31 11:02:26.694275 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31448 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.694280 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.694282 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.694285 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) including xattrs version 0
2015-03-31 11:02:26.694322 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694351 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694367 7fbe406af700  5 mds.0.log _submit_thread 5419648403~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:26.694366 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694379 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694392 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694415 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694426 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694436 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694447 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694459 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694480 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694491 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694502 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694768 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407891 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.694792 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407891 cr=0x237c5500)
2015-03-31 11:02:26.694794 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407891 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.694797 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407891 cr=0x237c5500) #1000006b2d6
2015-03-31 11:02:26.694799 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d6 snap head
2015-03-31 11:02:26.694800 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.694801 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694814 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407891 cr=0x237c5500)
2015-03-31 11:02:26.694817 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694832 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694843 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694853 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694863 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694877 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.694891 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694900 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.694911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.694921 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.694931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3fdc68]
2015-03-31 11:02:26.694941 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_pin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3fdc68] now 1+0
2015-03-31 11:02:26.694951 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694965 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.694979 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.694990 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695000 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.695056 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.695071 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407891 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.695075 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407891 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.695085 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.695089 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.695092 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.695095 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.695109 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407891 cr=0x237c5500)
2015-03-31 11:02:26.695129 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695145 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695169 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695179 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695190 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.695221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.695231 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.695246 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.695256 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.695267 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_unpin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68] now 0+0
2015-03-31 11:02:26.695581 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407892 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.695600 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407892 cr=0x237c5f00)
2015-03-31 11:02:26.695602 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407892 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.695605 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407892 cr=0x237c5f00) #1000006b2d6
2015-03-31 11:02:26.695607 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d6 snap head
2015-03-31 11:02:26.695609 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.695610 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.695623 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407892 cr=0x237c5f00)
2015-03-31 11:02:26.695626 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695641 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695652 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695662 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.695671 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695685 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.695699 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695709 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.695718 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695728 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.695738 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.695748 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_pin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68] now 1+0
2015-03-31 11:02:26.695758 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695773 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695793 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695804 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695814 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695840 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695862 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.695871 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.695886 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407892 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.695890 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407892 getattr Xs #1000006b2d6 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:26.695899 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.695902 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.695905 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.695908 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.695921 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407892 cr=0x237c5f00)
2015-03-31 11:02:26.695940 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695955 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.695969 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695979 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.695989 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.695999 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.696020 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.696031 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.696040 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.696055 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.696065 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.696075 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_unpin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68] now 0+0
2015-03-31 11:02:26.900770 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f2 follows 0 op update
2015-03-31 11:02:26.900775 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900789 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.900791 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.900808 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.900809 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900815 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900823 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.900825 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900836 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900845 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900853 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.900854 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900861 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900868 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900871 7fbe406af700  5 mds.0.log _submit_thread 5419650042~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.900875 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900880 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900886 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900891 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900896 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.900906 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.900920 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407893 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.900939 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407893 cr=0x237c2300)
2015-03-31 11:02:26.900942 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407893 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.900945 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407893 cr=0x237c2300) #1000006b2d6
2015-03-31 11:02:26.900947 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d6 snap head
2015-03-31 11:02:26.900948 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.900949 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.900962 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407893 cr=0x237c2300)
2015-03-31 11:02:26.900965 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.900981 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.900991 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.901003 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.901012 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.901026 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.901041 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.901051 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.901072 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.901092 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.901102 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.901111 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_pin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68] now 1+0
2015-03-31 11:02:26.901120 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.901134 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.901159 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.901169 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.901178 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.901188 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.901197 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.901206 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.901221 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407893 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.901225 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407893 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.901234 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.901237 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.901242 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.901244 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.901256 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407893 cr=0x237c2300)
2015-03-31 11:02:26.901275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.901291 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.901305 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.901315 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.901325 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.901335 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.901356 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.901367 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.901377 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.901391 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.901402 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.901412 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_unpin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68] now 0+0
2015-03-31 11:02:26.902734 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f2 follows 0 op update
2015-03-31 11:02:26.902737 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902749 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.902751 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.902769 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.902770 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902777 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902790 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.902791 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902797 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902803 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902809 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.902810 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902817 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902823 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902829 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902835 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.902836 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.902837 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003f2 [2,head] /test_small/small1/blarg1006 auth v59074 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a8890]
2015-03-31 11:02:26.902844 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.942060 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407894 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.942082 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407894 cr=0x237c6400)
2015-03-31 11:02:26.942087 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407894 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.942090 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407894 cr=0x237c6400) #1000006b2d6
2015-03-31 11:02:26.942092 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d6 snap head
2015-03-31 11:02:26.942094 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.942095 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.942112 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407894 cr=0x237c6400)
2015-03-31 11:02:26.942115 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942133 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.942157 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.942168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942183 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.942198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942209 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.942220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.942241 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.942251 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:26.942260 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_pin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68] now 1+0
2015-03-31 11:02:26.942281 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942295 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942320 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942339 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.942349 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.942359 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.942368 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.942383 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407894 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.942387 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407894 getattr Xs #1000006b2d6 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.942398 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.942401 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.942405 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:26.942408 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.942422 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407894 cr=0x237c6400)
2015-03-31 11:02:26.942441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942472 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942482 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942493 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.942502 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.942523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.942534 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fdc68]
2015-03-31 11:02:26.942544 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.942558 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.942569 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.942580 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) auth_unpin by 0x2a623200 on [inode 1000006b2d6 [2,head] {#1000006b2d6 /test_small/small5/blarg1006} auth v178728 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fdc68] now 0+0
2015-03-31 11:02:26.942870 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407895 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.942888 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407895 cr=0x4a0c100)
2015-03-31 11:02:26.942891 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407895 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.942895 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407895 cr=0x4a0c100) #10000004e65
2015-03-31 11:02:26.942897 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e65 snap head
2015-03-31 11:02:26.942899 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.942900 7fbe462be700 10 mds.0.server ref is [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.942910 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407895 cr=0x4a0c100)
2015-03-31 11:02:26.942913 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942928 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942939 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.942948 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.942954 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.942968 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.942982 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.942992 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.943002 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.943011 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.943020 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.943025 7fbe462be700 10 mds.0.cache.ino(10000004e65) auth_pin by 0x2a623200 on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0] now 1+0
2015-03-31 11:02:26.943032 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.943046 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.943060 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.943070 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.943080 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.943090 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.943099 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943106 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943112 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943130 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943156 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407895 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.943160 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407895 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.943170 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.943173 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.943178 7fbe462be700 10 mds.0.cache.ino(10000004e65) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:26.943180 7fbe462be700 10 mds.0.cache.ino(10000004e65) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.943192 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407895 cr=0x4a0c100)
2015-03-31 11:02:26.943212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.943227 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.943242 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.943252 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.943262 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.943271 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.943291 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943297 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943303 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943310 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.943315 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.943330 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.943340 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.943349 7fbe462be700 10 mds.0.cache.ino(10000004e65) auth_unpin by 0x2a623200 on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ae4c0] now 0+0
2015-03-31 11:02:26.943715 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407896 lookup #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.943736 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407896 cr=0x968b480)
2015-03-31 11:02:26.943738 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407896 lookup #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.943741 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407896 cr=0x968b480) #1000006026a/blarg10060
2015-03-31 11:02:26.943743 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.943746 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10060 [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock) v=177712 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.943755 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.943756 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407896 lookup #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.943767 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.943778 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407896 cr=0x968b480)
2015-03-31 11:02:26.944264 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407897 lookup #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.944284 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407897 cr=0x6883200)
2015-03-31 11:02:26.944287 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407897 lookup #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.944290 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407897 cr=0x6883200) #1000006026a/blarg10060
2015-03-31 11:02:26.944292 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.944294 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10060 [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock) v=177712 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.944302 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:26.944304 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407897 lookup #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.944317 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.944329 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407897 cr=0x6883200)
2015-03-31 11:02:26.944811 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407898 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.944833 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407898 cr=0x6883980)
2015-03-31 11:02:26.944837 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407898 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.944841 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407898 cr=0x6883980) #10000004e65
2015-03-31 11:02:26.944842 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e65 snap head
2015-03-31 11:02:26.944844 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.944845 7fbe462be700 10 mds.0.server ref is [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.944858 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407898 cr=0x6883980)
2015-03-31 11:02:26.944861 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.944878 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.944890 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.944899 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.944906 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.944920 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.944934 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.944944 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.944954 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:26.944963 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:26.944973 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.944979 7fbe462be700 10 mds.0.cache.ino(10000004e65) auth_pin by 0x2a623200 on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0] now 1+0
2015-03-31 11:02:26.944986 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945001 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945015 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945036 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945046 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.945064 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.945073 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945079 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945085 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945090 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945104 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407898 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.945108 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407898 getattr Xs #10000004e65 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.945118 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.945121 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.945124 7fbe462be700 10 mds.0.cache.ino(10000004e65) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:26.945126 7fbe462be700 10 mds.0.cache.ino(10000004e65) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.945141 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407898 cr=0x6883980)
2015-03-31 11:02:26.945161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945177 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945191 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945202 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.945221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:26.945242 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945249 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945256 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945261 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ae4c0]
2015-03-31 11:02:26.945268 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.945282 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.945293 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a623200 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:26.945302 7fbe462be700 10 mds.0.cache.ino(10000004e65) auth_unpin by 0x2a623200 on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9ae4c0] now 0+0
2015-03-31 11:02:26.945653 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407899 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.945674 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407899 cr=0x6884880)
2015-03-31 11:02:26.945677 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407899 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.945680 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407899 cr=0x6884880) #1000006026a
2015-03-31 11:02:26.945682 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.945683 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.945684 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.945702 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407899 cr=0x6884880)
2015-03-31 11:02:26.945705 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945721 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945732 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.945743 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945757 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.945771 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945780 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.945796 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.945806 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.945817 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945831 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.945845 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945856 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.945876 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.945886 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.945907 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.945917 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31448} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.945934 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407899 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.945938 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407899 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.945949 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.945952 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.945956 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31449
2015-03-31 11:02:26.945958 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31449 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.945972 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407899 cr=0x6884880)
2015-03-31 11:02:26.945991 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946007 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946021 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946032 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946042 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946053 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946075 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946084 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946095 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:26.946109 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:26.946119 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:26.946500 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407900 create #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.946520 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407900 cr=0x37d5500)
2015-03-31 11:02:26.946522 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407900 create #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.946525 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10060
2015-03-31 11:02:26.946527 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407900 cr=0x37d5500) #1000006026a/blarg10060
2015-03-31 11:02:26.946529 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10060
2015-03-31 11:02:26.946530 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:26.946531 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.946533 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178729 v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.946543 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178729 v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.946551 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10060 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178729 v=178727 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.946562 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407900 cr=0x37d5500)
2015-03-31 11:02:26.946567 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946587 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946599 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock) v=177712 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946606 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946618 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946633 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.946647 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946657 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.946668 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock) v=177712 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946673 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10060) auth_pin by 0x2a623200 on [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock) v=177712 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440] now 1+0
2015-03-31 11:02:26.946680 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=1+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946691 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.946702 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock) v=177712 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946708 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177712 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946723 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177712 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946729 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177712 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946734 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177712 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946749 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10060) auth_pin by 0x3ce7598 on [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177712 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440] now 2+0
2015-03-31 11:02:26.946754 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2a623200) [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dn xlock x=1 by 0x2a623200) (dversion lock w=1 last_client=708310) v=177712 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946760 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946775 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946793 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946806 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.946820 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946830 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946839 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946849 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.946859 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946869 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946879 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946889 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946899 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946908 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946918 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946928 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946938 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946948 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.946968 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d7 ([1000006b2d8~34b], 843 left)
2015-03-31 11:02:26.946971 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:26.946972 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d7 [2,head] #1000006b2d7 auth v1 s=0 n() (iversion lock) 0x3f450be8]
2015-03-31 11:02:26.946977 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178730
2015-03-31 11:02:26.946978 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10060)  pre_dirty [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dn xlock x=1 by 0x2a623200) (dversion lock w=1 last_client=708310) pv=178730 v=177712 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.946986 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f450be8]
2015-03-31 11:02:26.946992 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2a623200 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178730 v=178727 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:26.947001 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x924e1a0
2015-03-31 11:02:26.947003 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178731
2015-03-31 11:02:26.947004 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178731 v=178727 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.947010 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178731 v=178727 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.947017 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f450be8]
2015-03-31 11:02:26.947024 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.947026 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295300 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947040 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295302
2015-03-31 11:02:26.947041 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295302 v=3295298 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.947045 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295302 (current v 3295298)
2015-03-31 11:02:26.947046 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178731 v=178727 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:26.947054 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.947056 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2a623200 on [dir 10000000000 /test_small/ [2,head] auth pv=3295302 v=3295299 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:26.947066 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924fb10
2015-03-31 11:02:26.947067 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295303
2015-03-31 11:02:26.947068 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947080 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947090 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947101 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.947102 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.02859 ago, continuing
2015-03-31 11:02:26.947106 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120418 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947118 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120420
2015-03-31 11:02:26.947119 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120420 v=120418 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:26.947122 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120420 (current v 120418)
2015-03-31 11:02:26.947123 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295303 v=3295299 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:26.947132 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:26.947134 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x2a623200 on [dir 1 / [2,head] auth v=120419 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:03.000000 b422190196760 382384=382375+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 3
2015-03-31 11:02:26.947143 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x924d070
2015-03-31 11:02:26.947145 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120421
2015-03-31 11:02:26.947146 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.947160 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.947174 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947185 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:26.947186 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.02859 ago, continuing
2015-03-31 11:02:26.947188 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53472 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.947208 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120420 v=120418 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:26.947213 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947225 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295302 v=3295298 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:26.947230 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31449} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947243 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f450be8]
2015-03-31 11:02:26.947250 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:26.947253 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f450be8]
2015-03-31 11:02:26.947261 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.947263 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947272 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947279 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947286 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947293 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947300 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947307 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947313 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947320 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947326 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947333 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947339 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947345 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947352 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947359 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f450be8]
2015-03-31 11:02:26.947368 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.947370 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:26.947371 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f450be8 tracedn 0x3ce7440
2015-03-31 11:02:26.947373 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2a623200) [dentry #1/test_small/small5/blarg10060 [2,head] auth NULL (dn xlock x=1 by 0x2a623200) (dversion lock w=1 last_client=708310) pv=178730 v=177712 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7440]
2015-03-31 11:02:26.947380 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407900 create #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.947389 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.947392 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31450
2015-03-31 11:02:26.947394 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31450 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.947421 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:26.947425 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:26.947427 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) including xattrs version 0
2015-03-31 11:02:26.947465 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.947494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.947510 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.947518 7fbe406af700  5 mds.0.log _submit_thread 5419650900~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:26.947531 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.947556 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947568 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947579 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947590 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.947600 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947612 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947623 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947634 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947644 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.947654 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948023 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407901 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.948045 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407901 cr=0x2a508c80)
2015-03-31 11:02:26.948049 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407901 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.948053 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407901 cr=0x2a508c80) #1000006b2d7
2015-03-31 11:02:26.948055 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d7 snap head
2015-03-31 11:02:26.948056 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.948058 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f450be8]
2015-03-31 11:02:26.948074 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407901 cr=0x2a508c80)
2015-03-31 11:02:26.948077 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948095 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948107 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948118 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f450be8]
2015-03-31 11:02:26.948128 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948143 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.948157 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948168 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.948179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948189 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.948199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f450be8]
2015-03-31 11:02:26.948209 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_pin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f450be8] now 1+0
2015-03-31 11:02:26.948219 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948244 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948289 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948299 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.948317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.948332 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407901 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.948336 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407901 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.948347 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.948351 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.948355 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:26.948358 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.948371 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407901 cr=0x2a508c80)
2015-03-31 11:02:26.948390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948444 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948465 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.948486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.948497 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.948512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.948523 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.948533 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_unpin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8] now 0+0
2015-03-31 11:02:26.948832 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407902 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.948850 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407902 cr=0x9ae4d80)
2015-03-31 11:02:26.948852 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407902 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.948855 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407902 cr=0x9ae4d80) #1000006b2d7
2015-03-31 11:02:26.948857 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d7 snap head
2015-03-31 11:02:26.948858 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.948859 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:26.948871 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407902 cr=0x9ae4d80)
2015-03-31 11:02:26.948874 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948890 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948901 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948911 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:26.948921 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.948935 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.948949 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.948959 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.948970 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.948979 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.948989 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:26.948999 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_pin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8] now 1+0
2015-03-31 11:02:26.949009 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.949023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.949038 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.949048 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.949059 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.949070 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.949080 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.949101 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.949116 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407902 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.949119 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407902 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.949128 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.949132 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.949136 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:26.949138 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.949152 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407902 cr=0x9ae4d80)
2015-03-31 11:02:26.949171 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.949188 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.949203 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.949214 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.949236 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.949247 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.949258 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.949269 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.949278 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.949294 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.949305 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.949316 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_unpin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8] now 0+0
2015-03-31 11:02:26.953023 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e65 follows 0 op update
2015-03-31 11:02:26.953026 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953034 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.953036 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.953052 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.953053 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953059 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953067 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:26.953069 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953080 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953099 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953106 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:26.953107 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953115 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953120 7fbe406af700  5 mds.0.log _submit_thread 5419653690~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:26.953122 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953127 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953133 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953138 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953143 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953150 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.953159 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:26.993055 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407903 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.993072 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407903 cr=0x9ae1680)
2015-03-31 11:02:26.993074 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407903 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.993078 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407903 cr=0x9ae1680) #1000006b2d7
2015-03-31 11:02:26.993080 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d7 snap head
2015-03-31 11:02:26.993081 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:26.993082 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:26.993098 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407903 cr=0x9ae1680)
2015-03-31 11:02:26.993101 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.993121 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.993134 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.993145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:26.993155 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.993170 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:26.993186 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.993197 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:26.993209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.993220 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:26.993231 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:26.993241 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_pin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8] now 1+0
2015-03-31 11:02:26.993252 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.993279 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.993304 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.993314 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.993325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.993335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.993345 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.993355 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.993370 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407903 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.993374 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407903 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:26.993385 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:26.993389 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:26.993394 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:26.993397 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:26.993411 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407903 cr=0x9ae1680)
2015-03-31 11:02:26.993431 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.993448 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.993463 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.993475 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:26.993486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.993508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:26.993518 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.993529 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:26.993539 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:26.993555 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:26.993566 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:26.993577 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_unpin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8] now 0+0
2015-03-31 11:02:26.994849 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e65 follows 0 op update
2015-03-31 11:02:26.994852 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994864 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:26.994866 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:26.994885 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:26.994886 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994893 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994902 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:26.994904 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994910 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994918 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994924 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:26.994925 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994932 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994939 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994945 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994951 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:26.994952 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:26.994953 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e65 [2,head] /test_small/small1/blarg10060 auth v136938 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ae4c0]
2015-03-31 11:02:26.994961 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.034057 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407904 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.034079 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407904 cr=0x9ae3200)
2015-03-31 11:02:27.034083 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407904 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.034087 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407904 cr=0x9ae3200) #1000006b2d7
2015-03-31 11:02:27.034089 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d7 snap head
2015-03-31 11:02:27.034091 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.034092 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:27.034109 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407904 cr=0x9ae3200)
2015-03-31 11:02:27.034112 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034131 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034144 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.034156 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:27.034167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034182 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.034197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034208 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.034219 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.034240 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.034251 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:27.034261 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_pin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8] now 1+0
2015-03-31 11:02:27.034281 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034341 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.034350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.034360 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:27.034369 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:27.034385 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407904 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.034389 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407904 getattr Xs #1000006b2d7 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.034399 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.034403 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.034407 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:27.034410 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.034423 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407904 cr=0x9ae3200)
2015-03-31 11:02:27.034443 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034459 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034496 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.034517 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.034528 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:27.034538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f450be8]
2015-03-31 11:02:27.034548 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.034564 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.034575 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.034585 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) auth_unpin by 0x242ca800 on [inode 1000006b2d7 [2,head] {#1000006b2d7 /test_small/small5/blarg10060} auth v178730 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f450be8] now 0+0
2015-03-31 11:02:27.034865 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407905 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.034883 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407905 cr=0x9ae7300)
2015-03-31 11:02:27.034885 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407905 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.034888 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407905 cr=0x9ae7300) #10000004e5c
2015-03-31 11:02:27.034890 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5c snap head
2015-03-31 11:02:27.034892 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.034893 7fbe462be700 10 mds.0.server ref is [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.034904 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407905 cr=0x9ae7300)
2015-03-31 11:02:27.034907 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034923 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034934 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.034943 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.034950 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.034964 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.034979 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.034989 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.035000 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.035009 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.035018 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.035024 7fbe462be700 10 mds.0.cache.ino(10000004e5c) auth_pin by 0x242ca800 on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88] now 1+0
2015-03-31 11:02:27.035032 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.035047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.035061 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.035072 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.035082 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.035092 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.035101 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035108 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035125 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035131 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035156 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407905 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.035160 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407905 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.035170 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.035173 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.035177 7fbe462be700 10 mds.0.cache.ino(10000004e5c) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.035179 7fbe462be700 10 mds.0.cache.ino(10000004e5c) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.035192 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407905 cr=0x9ae7300)
2015-03-31 11:02:27.035211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.035227 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.035241 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.035252 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.035262 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.035271 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.035290 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035297 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035304 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035310 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.035316 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.035330 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.035341 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.035349 7fbe462be700 10 mds.0.cache.ino(10000004e5c) auth_unpin by 0x242ca800 on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9adb88] now 0+0
2015-03-31 11:02:27.035662 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407906 lookup #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.035679 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407906 cr=0x9ae3e80)
2015-03-31 11:02:27.035681 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407906 lookup #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.035684 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407906 cr=0x9ae3e80) #1000006026a/blarg10061
2015-03-31 11:02:27.035686 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.035689 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10061 [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock) v=177714 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.035697 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.035699 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407906 lookup #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.035708 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.035720 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407906 cr=0x9ae3e80)
2015-03-31 11:02:27.036214 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407907 lookup #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.036234 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407907 cr=0x9f7c380)
2015-03-31 11:02:27.036236 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407907 lookup #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.036239 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407907 cr=0x9f7c380) #1000006026a/blarg10061
2015-03-31 11:02:27.036241 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.036244 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10061 [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock) v=177714 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.036252 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.036254 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407907 lookup #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.036266 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.036278 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407907 cr=0x9f7c380)
2015-03-31 11:02:27.036758 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407908 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.036780 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407908 cr=0x9f7d780)
2015-03-31 11:02:27.036789 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407908 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.036793 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407908 cr=0x9f7d780) #10000004e5c
2015-03-31 11:02:27.036795 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5c snap head
2015-03-31 11:02:27.036796 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.036797 7fbe462be700 10 mds.0.server ref is [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.036808 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407908 cr=0x9f7d780)
2015-03-31 11:02:27.036811 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.036830 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.036842 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.036852 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.036859 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.036873 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.036888 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.036898 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.036910 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.036919 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.036928 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.036935 7fbe462be700 10 mds.0.cache.ino(10000004e5c) auth_pin by 0x242ca800 on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88] now 1+0
2015-03-31 11:02:27.036942 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.036957 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.036982 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.036993 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.037014 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.037022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.037031 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037037 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037044 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037049 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037061 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407908 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.037064 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407908 getattr Xs #10000004e5c 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.037074 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.037078 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.037082 7fbe462be700 10 mds.0.cache.ino(10000004e5c) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.037084 7fbe462be700 10 mds.0.cache.ino(10000004e5c) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.037099 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407908 cr=0x9f7d780)
2015-03-31 11:02:27.037120 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037137 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037152 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.037163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.037173 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.037193 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.037202 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037210 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037216 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037223 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9adb88]
2015-03-31 11:02:27.037228 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.037243 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.037254 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.037263 7fbe462be700 10 mds.0.cache.ino(10000004e5c) auth_unpin by 0x242ca800 on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9adb88] now 0+0
2015-03-31 11:02:27.037615 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407909 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.037637 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407909 cr=0x9f7a300)
2015-03-31 11:02:27.037639 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407909 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.037643 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407909 cr=0x9f7a300) #1000006026a
2015-03-31 11:02:27.037645 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.037646 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.037647 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.037666 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407909 cr=0x9f7a300)
2015-03-31 11:02:27.037669 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037685 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.037697 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.037708 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037722 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.037737 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.037747 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.037758 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.037769 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.037780 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037799 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.037826 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.037846 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.037867 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.037877 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.037887 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31450} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.037903 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407909 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.037907 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407909 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.037918 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.037921 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.037925 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31451
2015-03-31 11:02:27.037927 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31451 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.037941 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407909 cr=0x9f7a300)
2015-03-31 11:02:27.037960 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037976 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.037990 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038001 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038012 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038034 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038064 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.038079 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.038090 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.038471 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407910 create #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.038492 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407910 cr=0x9f7af80)
2015-03-31 11:02:27.038494 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407910 create #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.038497 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10061
2015-03-31 11:02:27.038499 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407910 cr=0x9f7af80) #1000006026a/blarg10061
2015-03-31 11:02:27.038501 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10061
2015-03-31 11:02:27.038502 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.038504 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.038505 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178731 v=178727 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.038515 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178731 v=178727 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.038524 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10061 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178731 v=178727 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.038534 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407910 cr=0x9f7af80)
2015-03-31 11:02:27.038540 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.038559 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038572 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock) v=177714 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038579 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038591 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.038606 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.038621 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038632 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.038643 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock) v=177714 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038648 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10061) auth_pin by 0x242ca800 on [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock) v=177714 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620] now 1+0
2015-03-31 11:02:27.038655 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=2+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038666 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.038677 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock) v=177714 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038694 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177714 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038699 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177714 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038704 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177714 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038721 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177714 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038727 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10061) auth_pin by 0x3ce7778 on [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177714 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620] now 2+0
2015-03-31 11:02:27.038732 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242ca800) [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) v=177714 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038738 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.038753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.038766 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.038779 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.038797 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038807 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038816 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038826 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.038836 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038846 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038855 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038865 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038874 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038883 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038893 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038902 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038911 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038921 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.038940 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d8 ([1000006b2d9~34a], 842 left)
2015-03-31 11:02:27.038942 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.038944 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d8 [2,head] #1000006b2d8 auth v1 s=0 n() (iversion lock) 0x3f45dff0]
2015-03-31 11:02:27.038948 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178732
2015-03-31 11:02:27.038949 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10061)  pre_dirty [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) pv=178732 v=177714 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.038958 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f45dff0]
2015-03-31 11:02:27.038965 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242ca800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178732 v=178727 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:27.038975 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x698a5d0
2015-03-31 11:02:27.038976 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178733
2015-03-31 11:02:27.038977 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178733 v=178727 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.038984 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178733 v=178727 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.038991 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f45dff0]
2015-03-31 11:02:27.038997 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.038999 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295302 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039013 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295304
2015-03-31 11:02:27.039014 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295304 v=3295298 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.039018 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295304 (current v 3295298)
2015-03-31 11:02:27.039020 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178733 v=178727 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.039027 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.039029 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242ca800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295304 v=3295299 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:27.039038 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x6988580
2015-03-31 11:02:27.039039 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295305
2015-03-31 11:02:27.039040 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039052 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039063 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039073 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.039074 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.091972 < 1, stopping
2015-03-31 11:02:27.039078 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039089 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.039093 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295304 v=3295298 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.039098 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31451} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039111 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f45dff0]
2015-03-31 11:02:27.039118 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.039120 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039128 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.039130 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039138 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039144 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039151 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039157 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039164 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039170 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039177 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039183 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039189 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039196 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039202 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039209 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039215 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039222 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f45dff0]
2015-03-31 11:02:27.039231 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.039232 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.039235 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f45dff0 tracedn 0x3ce7620
2015-03-31 11:02:27.039237 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242ca800) [dentry #1/test_small/small5/blarg10061 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) pv=178732 v=177714 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7620]
2015-03-31 11:02:27.039243 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407910 create #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.039252 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.039255 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31452
2015-03-31 11:02:27.039257 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31452 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.039263 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.039266 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.039269 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) including xattrs version 0
2015-03-31 11:02:27.039306 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039335 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039350 7fbe406af700  5 mds.0.log _submit_thread 5419654549~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.039350 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039363 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039388 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039400 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039412 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039423 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039433 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039445 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039478 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039488 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039764 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407911 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.039788 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407911 cr=0x9f79b80)
2015-03-31 11:02:27.039791 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407911 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.039794 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407911 cr=0x9f79b80) #1000006b2d8
2015-03-31 11:02:27.039796 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d8 snap head
2015-03-31 11:02:27.039797 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.039798 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f45dff0]
2015-03-31 11:02:27.039812 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407911 cr=0x9f79b80)
2015-03-31 11:02:27.039815 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039831 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039842 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039852 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f45dff0]
2015-03-31 11:02:27.039862 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039876 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.039890 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039900 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.039911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.039920 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.039931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f45dff0]
2015-03-31 11:02:27.039940 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_pin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f45dff0] now 1+0
2015-03-31 11:02:27.039950 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039966 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.039980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.039991 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040027 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040049 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.040059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.040074 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407911 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.040077 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407911 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.040088 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.040090 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.040093 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.040096 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.040109 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407911 cr=0x9f79b80)
2015-03-31 11:02:27.040128 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040169 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040179 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040189 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.040221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.040230 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.040245 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.040256 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.040266 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_unpin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0] now 0+0
2015-03-31 11:02:27.040561 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407912 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.040579 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407912 cr=0x9f78f00)
2015-03-31 11:02:27.040581 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407912 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.040585 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407912 cr=0x9f78f00) #1000006b2d8
2015-03-31 11:02:27.040587 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d8 snap head
2015-03-31 11:02:27.040588 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.040589 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.040602 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407912 cr=0x9f78f00)
2015-03-31 11:02:27.040604 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040620 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040631 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040641 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.040651 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040665 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.040679 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040689 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.040700 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040710 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.040720 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.040730 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_pin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0] now 1+0
2015-03-31 11:02:27.040739 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040754 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040768 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040779 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040793 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040804 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040824 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.040845 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.040859 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407912 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.040863 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407912 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.040873 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.040876 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.040880 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.040883 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.040895 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407912 cr=0x9f78f00)
2015-03-31 11:02:27.040914 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.040945 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040956 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.040978 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040988 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.040999 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.041009 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.041019 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.041034 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.041045 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.041055 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_unpin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0] now 0+0
2015-03-31 11:02:27.044166 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5c follows 0 op update
2015-03-31 11:02:27.044169 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044177 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.044179 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.044195 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.044196 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044202 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044209 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.044210 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044221 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044240 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044247 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.044249 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044258 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044261 7fbe406af700  5 mds.0.log _submit_thread 5419656189~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.044265 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044271 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044276 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044283 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044288 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044294 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.044304 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.084054 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407913 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.084076 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407913 cr=0x929cb00)
2015-03-31 11:02:27.084081 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407913 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.084085 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407913 cr=0x929cb00) #1000006b2d8
2015-03-31 11:02:27.084087 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d8 snap head
2015-03-31 11:02:27.084088 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.084089 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.084106 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407913 cr=0x929cb00)
2015-03-31 11:02:27.084109 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.084128 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.084141 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.084153 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.084163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.084179 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.084194 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.084205 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.084217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.084237 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.084248 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.084258 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_pin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0] now 1+0
2015-03-31 11:02:27.084278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.084304 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.084318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.084328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.084338 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.084348 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.084357 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.084367 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.084382 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407913 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.084386 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407913 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.084396 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.084400 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.084404 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:27.084407 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.084420 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407913 cr=0x929cb00)
2015-03-31 11:02:27.084440 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.084457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.084472 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.084483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.084493 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.084515 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.084526 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.084537 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.084547 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.084562 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.084573 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.084584 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_unpin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0] now 0+0
2015-03-31 11:02:27.085846 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5c follows 0 op update
2015-03-31 11:02:27.085850 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085861 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.085863 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.085881 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.085882 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085889 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085897 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.085900 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085905 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085913 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085917 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.085918 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085925 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085932 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085938 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085945 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.085946 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.085947 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e5c [2,head] /test_small/small1/blarg10061 auth v136940 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9adb88]
2015-03-31 11:02:27.085954 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.125070 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407914 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.125091 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407914 cr=0x9298280)
2015-03-31 11:02:27.125096 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407914 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.125099 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407914 cr=0x9298280) #1000006b2d8
2015-03-31 11:02:27.125102 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d8 snap head
2015-03-31 11:02:27.125103 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.125104 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.125121 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407914 cr=0x9298280)
2015-03-31 11:02:27.125124 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125143 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.125156 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.125167 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.125178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125194 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.125209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.125220 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.125232 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.125252 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.125263 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.125273 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_pin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0] now 1+0
2015-03-31 11:02:27.125293 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125333 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.125343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.125353 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.125363 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.125372 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.125382 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.125397 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407914 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.125401 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407914 getattr Xs #1000006b2d8 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.125411 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.125414 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.125419 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:27.125421 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.125435 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407914 cr=0x9298280)
2015-03-31 11:02:27.125454 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125471 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125485 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.125496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.125507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.125528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.125539 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.125550 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f45dff0]
2015-03-31 11:02:27.125560 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.125575 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.125586 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.125597 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) auth_unpin by 0x2876a800 on [inode 1000006b2d8 [2,head] {#1000006b2d8 /test_small/small5/blarg10061} auth v178732 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f45dff0] now 0+0
2015-03-31 11:02:27.125899 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407915 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.125917 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407915 cr=0x9299900)
2015-03-31 11:02:27.125919 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407915 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.125922 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407915 cr=0x9299900) #10000004e5b
2015-03-31 11:02:27.125924 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5b snap head
2015-03-31 11:02:27.125926 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.125927 7fbe462be700 10 mds.0.server ref is [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.125939 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407915 cr=0x9299900)
2015-03-31 11:02:27.125942 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125958 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.125969 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.125978 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.125984 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.125997 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.126012 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.126022 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.126032 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.126041 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.126050 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.126056 7fbe462be700 10 mds.0.cache.ino(10000004e5b) auth_pin by 0x2876a800 on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250] now 1+0
2015-03-31 11:02:27.126064 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.126078 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.126093 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.126103 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.126113 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.126122 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.126132 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126139 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126144 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126162 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126187 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407915 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.126190 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407915 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.126201 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.126204 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.126208 7fbe462be700 10 mds.0.cache.ino(10000004e5b) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.126210 7fbe462be700 10 mds.0.cache.ino(10000004e5b) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.126223 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407915 cr=0x9299900)
2015-03-31 11:02:27.126242 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.126258 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.126272 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.126283 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.126293 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.126302 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.126323 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126330 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126336 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126342 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.126348 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.126362 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.126373 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.126382 7fbe462be700 10 mds.0.cache.ino(10000004e5b) auth_unpin by 0x2876a800 on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ad250] now 0+0
2015-03-31 11:02:27.126752 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407916 lookup #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.126772 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407916 cr=0x929da00)
2015-03-31 11:02:27.126775 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407916 lookup #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.126778 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407916 cr=0x929da00) #1000006026a/blarg10062
2015-03-31 11:02:27.126780 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.126787 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10062 [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock) v=177716 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.126795 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.126797 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407916 lookup #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.126809 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.126822 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407916 cr=0x929da00)
2015-03-31 11:02:27.127301 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407917 lookup #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.127322 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407917 cr=0x9298a00)
2015-03-31 11:02:27.127324 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407917 lookup #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.127327 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407917 cr=0x9298a00) #1000006026a/blarg10062
2015-03-31 11:02:27.127329 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.127331 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10062 [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock) v=177716 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.127339 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.127341 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407917 lookup #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.127353 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.127366 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407917 cr=0x9298a00)
2015-03-31 11:02:27.127847 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407918 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.127868 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407918 cr=0x929e680)
2015-03-31 11:02:27.127871 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407918 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.127874 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407918 cr=0x929e680) #10000004e5b
2015-03-31 11:02:27.127876 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5b snap head
2015-03-31 11:02:27.127878 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.127879 7fbe462be700 10 mds.0.server ref is [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.127891 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407918 cr=0x929e680)
2015-03-31 11:02:27.127894 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.127913 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.127925 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.127934 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.127941 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.127955 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.127970 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.127980 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.127992 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.128001 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.128010 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.128016 7fbe462be700 10 mds.0.cache.ino(10000004e5b) auth_pin by 0x2876a800 on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250] now 1+0
2015-03-31 11:02:27.128023 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128053 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128074 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128085 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.128105 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.128113 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128120 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128126 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128131 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128145 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407918 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.128149 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407918 getattr Xs #10000004e5b 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.128159 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.128162 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.128167 7fbe462be700 10 mds.0.cache.ino(10000004e5b) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.128169 7fbe462be700 10 mds.0.cache.ino(10000004e5b) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.128183 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407918 cr=0x929e680)
2015-03-31 11:02:27.128202 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128234 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128245 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128256 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.128275 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.128284 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128292 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128298 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128304 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ad250]
2015-03-31 11:02:27.128310 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.128324 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.128336 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.128345 7fbe462be700 10 mds.0.cache.ino(10000004e5b) auth_unpin by 0x2876a800 on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9ad250] now 0+0
2015-03-31 11:02:27.128718 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407919 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.128740 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407919 cr=0x9299400)
2015-03-31 11:02:27.128743 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407919 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.128746 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407919 cr=0x9299400) #1000006026a
2015-03-31 11:02:27.128748 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.128749 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.128750 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.128769 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407919 cr=0x9299400)
2015-03-31 11:02:27.128772 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128793 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128805 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.128815 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128830 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.128844 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128855 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.128866 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.128875 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.128886 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128901 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.128915 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.128946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.128967 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.128977 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.128986 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31452} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129001 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407919 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.129005 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407919 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.129016 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.129020 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.129024 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31453
2015-03-31 11:02:27.129026 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31453 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.129039 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407919 cr=0x9299400)
2015-03-31 11:02:27.129058 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129074 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129089 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129099 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129110 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129120 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129141 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129151 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129161 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.129175 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.129185 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.129574 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407920 create #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.129594 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407920 cr=0x929cd80)
2015-03-31 11:02:27.129596 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407920 create #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.129599 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10062
2015-03-31 11:02:27.129601 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407920 cr=0x929cd80) #1000006026a/blarg10062
2015-03-31 11:02:27.129603 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10062
2015-03-31 11:02:27.129604 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.129606 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.129607 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178733 v=178727 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.129617 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178733 v=178727 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.129625 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10062 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178733 v=178727 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.129636 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407920 cr=0x929cd80)
2015-03-31 11:02:27.129641 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129660 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129672 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock) v=177716 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129680 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129691 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129706 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.129721 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129731 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.129742 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock) v=177716 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129748 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10062) auth_pin by 0x2876a800 on [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock) v=177716 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800] now 1+0
2015-03-31 11:02:27.129754 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=3+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129765 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.129776 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock) v=177716 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129796 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177716 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129802 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177716 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129807 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177716 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129824 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177716 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129829 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10062) auth_pin by 0x3ce7958 on [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177716 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800] now 2+0
2015-03-31 11:02:27.129834 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2876a800) [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) v=177716 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.129839 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129854 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129868 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129881 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.129894 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129905 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129915 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129924 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.129934 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129944 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129954 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129963 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129972 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129982 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.129991 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130001 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130010 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130019 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130038 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2d9 ([1000006b2da~349], 841 left)
2015-03-31 11:02:27.130041 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.130043 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2d9 [2,head] #1000006b2d9 auth v1 s=0 n() (iversion lock) 0x3f3ea2f8]
2015-03-31 11:02:27.130047 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178734
2015-03-31 11:02:27.130048 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10062)  pre_dirty [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) pv=178734 v=177716 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.130055 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ea2f8]
2015-03-31 11:02:27.130062 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2876a800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178734 v=178727 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:27.130071 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3b6caf0
2015-03-31 11:02:27.130074 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178735
2015-03-31 11:02:27.130075 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178727 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.130082 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178727 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.130089 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3ea2f8]
2015-03-31 11:02:27.130093 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.130095 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295304 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130108 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295306
2015-03-31 11:02:27.130110 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295306 v=3295298 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.130113 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295306 (current v 3295298)
2015-03-31 11:02:27.130115 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178727 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=71+1533,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.130122 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.130124 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2876a800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295306 v=3295299 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:27.130134 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x698a310
2015-03-31 11:02:27.130134 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295307
2015-03-31 11:02:27.130136 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.130147 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.130157 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130168 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.130169 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.183071 < 1, stopping
2015-03-31 11:02:27.130173 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.130183 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.130187 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295306 v=3295298 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.130193 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31453} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130206 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3ea2f8]
2015-03-31 11:02:27.130213 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.130216 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130224 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.130225 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130233 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130240 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130247 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130253 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130260 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130266 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130272 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130278 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130284 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130290 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130296 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130303 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130309 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130316 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130325 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.130326 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.130328 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3ea2f8 tracedn 0x3ce7800
2015-03-31 11:02:27.130331 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2876a800) [dentry #1/test_small/small5/blarg10062 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) pv=178734 v=177716 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7800]
2015-03-31 11:02:27.130337 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407920 create #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.130346 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.130349 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31454
2015-03-31 11:02:27.130351 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31454 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.130356 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.130360 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.130362 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) including xattrs version 0
2015-03-31 11:02:27.130400 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.130428 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.130445 7fbe406af700  5 mds.0.log _submit_thread 5419657048~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.130444 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.130457 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.130482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.130493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.130505 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.130515 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.130526 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130537 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130549 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130559 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130570 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130581 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.130939 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407921 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.130960 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407921 cr=0x929a300)
2015-03-31 11:02:27.130963 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407921 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.130967 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407921 cr=0x929a300) #1000006b2d9
2015-03-31 11:02:27.130969 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d9 snap head
2015-03-31 11:02:27.130970 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.130971 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.130987 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407921 cr=0x929a300)
2015-03-31 11:02:27.130990 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131009 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131021 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131032 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.131042 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131057 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:27.131072 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131081 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:27.131093 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131103 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:27.131114 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3ea2f8]
2015-03-31 11:02:27.131124 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_pin by 0x23dd3700 on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ea2f8] now 1+0
2015-03-31 11:02:27.131144 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131159 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131184 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131195 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131204 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131214 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131223 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.131232 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.131248 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407921 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.131252 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407921 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.131262 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.131265 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.131270 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.131272 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.131286 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407921 cr=0x929a300)
2015-03-31 11:02:27.131305 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131322 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131336 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131347 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131358 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131380 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.131401 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.131410 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.131425 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.131436 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.131446 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_unpin by 0x23dd3700 on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ea2f8] now 0+0
2015-03-31 11:02:27.131739 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407922 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.131757 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407922 cr=0x2a509900)
2015-03-31 11:02:27.131760 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407922 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.131763 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407922 cr=0x2a509900) #1000006b2d9
2015-03-31 11:02:27.131765 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d9 snap head
2015-03-31 11:02:27.131766 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.131767 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.131780 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407922 cr=0x2a509900)
2015-03-31 11:02:27.131787 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131815 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131827 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131837 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.131847 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131862 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:27.131876 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131886 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:27.131897 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.131907 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:27.131918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.131927 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_pin by 0x23dd3700 on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8] now 1+0
2015-03-31 11:02:27.131937 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131953 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.131968 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.131979 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.132000 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.132010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.132021 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.132031 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.132047 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407922 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.132051 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407922 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.132062 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.132066 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.132071 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.132073 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.132098 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407922 cr=0x2a509900)
2015-03-31 11:02:27.132106 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.132122 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.132136 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.132147 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.132169 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.132179 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.132189 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.132200 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.132210 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.132224 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.132235 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.132245 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_unpin by 0x23dd3700 on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ea2f8] now 0+0
2015-03-31 11:02:27.135357 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5b follows 0 op update
2015-03-31 11:02:27.135360 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135368 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.135371 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.135386 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.135387 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135393 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135401 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.135404 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135414 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135434 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135441 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.135452 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135456 7fbe406af700  5 mds.0.log _submit_thread 5419658688~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.135460 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135467 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135472 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135479 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135486 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135492 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135498 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.135508 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.175063 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407923 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175086 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407923 cr=0x26d3af80)
2015-03-31 11:02:27.175090 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407923 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175094 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407923 cr=0x26d3af80) #1000006b2d9
2015-03-31 11:02:27.175096 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d9 snap head
2015-03-31 11:02:27.175097 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.175098 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.175116 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407923 cr=0x26d3af80)
2015-03-31 11:02:27.175119 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175138 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175151 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175162 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.175173 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175189 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:27.175204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175215 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:27.175226 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175247 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:27.175258 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.175268 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_pin by 0x23dd3700 on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8] now 1+0
2015-03-31 11:02:27.175278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175319 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175340 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175350 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175359 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175368 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.175377 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.175393 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407923 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175397 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407923 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175407 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.175411 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.175414 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:27.175417 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.175431 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407923 cr=0x26d3af80)
2015-03-31 11:02:27.175450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175504 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175525 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175535 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.175546 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.175556 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.175572 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.175583 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.175593 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_unpin by 0x23dd3700 on [inode 1000006b2d9 [2,head] {#1000006b2d9 /test_small/small5/blarg10062} auth v178734 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3ea2f8] now 0+0
2015-03-31 11:02:27.175630 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407924 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175660 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407924 cr=0x26d39900)
2015-03-31 11:02:27.175663 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407924 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175666 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407924 cr=0x26d39900) #1000006026a
2015-03-31 11:02:27.175667 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.175669 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.175670 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175684 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407924 cr=0x26d39900)
2015-03-31 11:02:27.175687 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175703 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175714 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175724 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175738 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:27.175753 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175773 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:27.175801 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175811 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:27.175821 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175835 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175849 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175859 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.175869 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175879 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175889 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175900 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31454} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.175916 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407924 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175920 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407924 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.175941 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.175944 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.175949 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31455
2015-03-31 11:02:27.175951 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31455 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.175963 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407924 cr=0x26d39900)
2015-03-31 11:02:27.175982 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.175998 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.176012 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.176022 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.176032 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176043 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176063 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176073 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176083 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.176097 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.176108 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.176413 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407925 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.176434 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407925 cr=0x26d3e180)
2015-03-31 11:02:27.176436 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407925 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.176439 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407925 cr=0x26d3e180) #1000006026a
2015-03-31 11:02:27.176441 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.176443 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.176444 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176457 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407925 cr=0x26d3e180)
2015-03-31 11:02:27.176460 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.176475 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.176485 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176496 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.176509 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:27.176523 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.176533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:27.176544 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176552 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:27.176563 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.176577 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53472 pv53473 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.176591 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.176602 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.176612 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176622 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176632 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176642 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176653 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:27.176675 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.176696 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0xb37bc60 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:27.176699 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.191794 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.191800 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.191809 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.191811 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) mark_dirty [inode 1000006b2d6 [2,head] /test_small/small5/blarg1006 auth v178727 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:27.191826 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1006)  mark_dirty [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178728 v=177710 ap=2+0 inode=0x3f3fdc68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260]
2015-03-31 11:02:27.191835 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178728 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 71=71+0) hs=72+1532,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178728
2015-03-31 11:02:27.191846 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) mark_dirty_parent
2015-03-31 11:02:27.191848 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295298 pv3295306 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 71=71+0) n(v1 rc2015-03-31 11:03:03.000000 72=71+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.191863 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295306 v=3295298 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.191867 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295300 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382374=382367+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295300
2015-03-31 11:02:27.191878 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178729 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 72=72+0) hs=72+1532,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178729
2015-03-31 11:02:27.191885 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295301 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382375=382368+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295301
2015-03-31 11:02:27.191894 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d6 [2,head] /test_small/small5/blarg1006 auth v178728 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3fdc68]
2015-03-31 11:02:27.191905 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.191908 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27546 client_caps(grant ino 1000006b2d6 1851531 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:03.000000) v4
2015-03-31 11:02:27.191930 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178728 ap=2+0 inode=0x3f3fdc68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260]
2015-03-31 11:02:27.191939 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407890 create #1000006026a/blarg1006 2015-03-31 11:03:03.000000) v2
2015-03-31 11:02:27.191952 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d6
2015-03-31 11:02:27.191954 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178728 ap=2+0 inode=0x3f3fdc68 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260]
2015-03-31 11:02:27.191963 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178728 ap=2+0 inode=0x3f3fdc68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260]
2015-03-31 11:02:27.191970 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178728 ap=2+0 inode=0x3f3fdc68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260]
2015-03-31 11:02:27.191975 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1006) auth_unpin by 0x3ce73b8 on [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178728 ap=1+0 inode=0x3f3fdc68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260] now 1+0
2015-03-31 11:02:27.191982 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178728 ap=1+0 inode=0x3f3fdc68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260]
2015-03-31 11:02:27.191987 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.192002 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178728 ap=1+0 inode=0x3f3fdc68 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7260]
2015-03-31 11:02:27.192010 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295300 pv3295306 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 73=72+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192023 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295300 pv3295306 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 73=72+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192035 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295300 pv3295306 ap=6+1 f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 73=72+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192065 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407890 cr=0x237c7a80)
2015-03-31 11:02:27.192072 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.192088 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.192100 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1006) auth_unpin by 0x23dd2300 on [dentry #1/test_small/small5/blarg1006 [2,head] auth (dn sync l=1) (dversion lock) v=178728 inode=0x3f3fdc68 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce7260] now 0+0
2015-03-31 11:02:27.192106 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd2300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295301 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382375=382368+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:27.192117 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd2300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178729 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 72=72+0) hs=72+1532,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:27.192125 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295300 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 73=72+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:27.192163 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.192165 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.192170 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.192171 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) mark_dirty [inode 1000006b2d7 [2,head] /test_small/small5/blarg10060 auth v178729 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f450be8]
2015-03-31 11:02:27.192182 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10060)  mark_dirty [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178730 v=177712 ap=2+0 inode=0x3f450be8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440]
2015-03-31 11:02:27.192189 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178730 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 72=72+0) hs=73+1531,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178730
2015-03-31 11:02:27.192197 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) mark_dirty_parent
2015-03-31 11:02:27.192199 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295300 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:03.000000 72=72+0) n(v1 rc2015-03-31 11:03:03.000000 73=72+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192211 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295306 v=3295300 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.192215 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295302 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382375=382368+7)/n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382367=382360+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295302
2015-03-31 11:02:27.192235 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120418 pv120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:03.000000 b422190090565 382368=382360+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.192247 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120420 v=120418 ap=0+5 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:27.192250 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120421 v=120420 cv=119911/119911 dir_auth=0 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:03.000000 b422190196760 382384=382375+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120420
2015-03-31 11:02:27.192261 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53472 pv53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.192277 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178731 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 73=73+0) hs=73+1531,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178731
2015-03-31 11:02:27.192285 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295303 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295303
2015-03-31 11:02:27.192291 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120421 v=120421 cv=119911/119911 dir_auth=0 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:04.000000 b422190196760 382393=382384+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120421
2015-03-31 11:02:27.192301 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d7 [2,head] /test_small/small5/blarg10060 auth v178730 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f450be8]
2015-03-31 11:02:27.192311 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.192314 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27547 client_caps(grant ino 1000006b2d7 1851532 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.192333 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178730 ap=2+0 inode=0x3f450be8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440]
2015-03-31 11:02:27.192342 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407900 create #1000006026a/blarg10060 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.192353 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d7
2015-03-31 11:02:27.192356 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178730 ap=2+0 inode=0x3f450be8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440]
2015-03-31 11:02:27.192364 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178730 ap=2+0 inode=0x3f450be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440]
2015-03-31 11:02:27.192370 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178730 ap=2+0 inode=0x3f450be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440]
2015-03-31 11:02:27.192374 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10060) auth_unpin by 0x3ce7598 on [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178730 ap=1+0 inode=0x3f450be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440] now 1+0
2015-03-31 11:02:27.192381 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178730 ap=1+0 inode=0x3f450be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440]
2015-03-31 11:02:27.192386 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.192405 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.192420 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.192435 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.192447 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.192458 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178730 ap=1+0 inode=0x3f450be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7440]
2015-03-31 11:02:27.192465 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295302 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 74=73+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192477 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295302 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 74=73+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192488 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295302 pv3295306 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 74=73+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192507 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407900 cr=0x37d5500)
2015-03-31 11:02:27.192514 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.192530 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.192542 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10060) auth_unpin by 0x2a623200 on [dentry #1/test_small/small5/blarg10060 [2,head] auth (dn sync l=1) (dversion lock) v=178730 inode=0x3f450be8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce7440] now 0+0
2015-03-31 11:02:27.192549 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x2a623200 on [dir 1 / [2,head] auth v=120421 cv=119911/119911 dir_auth=0 ap=0+3+4 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:04.000000 b422190196760 382393=382384+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 4
2015-03-31 11:02:27.192560 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2a623200 on [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295303 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:27.192568 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2a623200 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178731 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 73=73+0) hs=73+1531,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:27.192576 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295302 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 74=73+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.192602 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.192604 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.192608 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.192610 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) mark_dirty [inode 1000006b2d8 [2,head] /test_small/small5/blarg10061 auth v178731 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.192620 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10061)  mark_dirty [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178732 v=177714 ap=2+0 inode=0x3f45dff0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620]
2015-03-31 11:02:27.192627 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178732 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 73=73+0) hs=74+1530,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178732
2015-03-31 11:02:27.192635 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) mark_dirty_parent
2015-03-31 11:02:27.192636 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295302 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 73=73+0) n(v1 rc2015-03-31 11:03:04.000000 74=73+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192649 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295306 v=3295302 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.192653 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295304 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295304
2015-03-31 11:02:27.192661 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178733 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 74=74+0) hs=74+1530,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178733
2015-03-31 11:02:27.192669 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295305 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382370+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295305
2015-03-31 11:02:27.192678 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d8 [2,head] /test_small/small5/blarg10061 auth v178732 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f45dff0]
2015-03-31 11:02:27.192688 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.192690 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27548 client_caps(grant ino 1000006b2d8 1851533 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.192709 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178732 ap=2+0 inode=0x3f45dff0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620]
2015-03-31 11:02:27.192717 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407910 create #1000006026a/blarg10061 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.192727 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d8
2015-03-31 11:02:27.192729 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178732 ap=2+0 inode=0x3f45dff0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620]
2015-03-31 11:02:27.192736 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178732 ap=2+0 inode=0x3f45dff0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620]
2015-03-31 11:02:27.192742 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178732 ap=2+0 inode=0x3f45dff0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620]
2015-03-31 11:02:27.192746 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10061) auth_unpin by 0x3ce7778 on [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178732 ap=1+0 inode=0x3f45dff0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620] now 1+0
2015-03-31 11:02:27.192753 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178732 ap=1+0 inode=0x3f45dff0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620]
2015-03-31 11:02:27.192758 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.192772 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178732 ap=1+0 inode=0x3f45dff0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7620]
2015-03-31 11:02:27.192777 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295304 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 75=74+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192802 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295304 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 75=74+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192814 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295304 pv3295306 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 75=74+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192833 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407910 cr=0x9f7af80)
2015-03-31 11:02:27.192841 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.192856 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.192868 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10061) auth_unpin by 0x242ca800 on [dentry #1/test_small/small5/blarg10061 [2,head] auth (dn sync l=1) (dversion lock) v=178732 inode=0x3f45dff0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce7620] now 0+0
2015-03-31 11:02:27.192875 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242ca800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295305 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382370+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:27.192885 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242ca800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178733 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 74=74+0) hs=74+1530,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:27.192893 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295304 pv3295306 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 75=74+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.192919 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.192921 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.192926 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.192927 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) mark_dirty [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178733 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.192937 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10062)  mark_dirty [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178734 v=177716 ap=2+0 inode=0x3f3ea2f8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800]
2015-03-31 11:02:27.192945 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178734 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 74=74+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178734
2015-03-31 11:02:27.192953 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) mark_dirty_parent
2015-03-31 11:02:27.192955 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295304 pv3295306 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 74=74+0) n(v1 rc2015-03-31 11:03:04.000000 75=74+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.192967 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295306 v=3295304 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.192971 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295306 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382370+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295306
2015-03-31 11:02:27.192980 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178735 v=178735 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178735
2015-03-31 11:02:27.192987 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295307 v=3295307 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382378=382371+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295307
2015-03-31 11:02:27.192996 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.193005 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.193008 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27549 client_caps(grant ino 1000006b2d9 1851534 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.193026 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178734 ap=2+0 inode=0x3f3ea2f8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800]
2015-03-31 11:02:27.193034 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407920 create #1000006026a/blarg10062 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.193045 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2d9
2015-03-31 11:02:27.193047 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178734 ap=2+0 inode=0x3f3ea2f8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800]
2015-03-31 11:02:27.193055 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178734 ap=2+0 inode=0x3f3ea2f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800]
2015-03-31 11:02:27.193060 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178734 ap=2+0 inode=0x3f3ea2f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800]
2015-03-31 11:02:27.193065 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10062) auth_unpin by 0x3ce7958 on [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178734 ap=1+0 inode=0x3f3ea2f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800] now 1+0
2015-03-31 11:02:27.193070 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178734 ap=1+0 inode=0x3f3ea2f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800]
2015-03-31 11:02:27.193075 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.193090 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.193101 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178734 ap=1+0 inode=0x3f3ea2f8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7800]
2015-03-31 11:02:27.193106 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.193119 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.193130 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.193141 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:27.193144 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.193155 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.193166 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:27.193167 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407925 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.193171 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407925 cr=0x26d3e180) #1000006026a
2015-03-31 11:02:27.193173 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.193174 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.193175 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193186 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407925 cr=0x26d3e180)
2015-03-31 11:02:27.193189 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.193204 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.193215 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193225 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.193239 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.193249 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193259 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.193273 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.193284 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193294 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193305 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193327 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193347 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193357 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193366 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193376 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193386 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31455} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193403 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407925 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.193407 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407925 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.193418 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.193421 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.193424 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31456
2015-03-31 11:02:27.193427 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31456 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.193440 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407925 cr=0x26d3e180)
2015-03-31 11:02:27.193460 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.193485 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.193499 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.193509 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.193519 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193529 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193551 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193561 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193572 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193581 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193593 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193603 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193612 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193621 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193631 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.193645 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.193667 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.193693 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193705 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193715 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193726 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.193747 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407920 cr=0x929cd80)
2015-03-31 11:02:27.193755 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.193770 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.193780 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10062) auth_unpin by 0x2876a800 on [dentry #1/test_small/small5/blarg10062 [2,head] auth (dn sync l=1) (dversion lock) v=178734 inode=0x3f3ea2f8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce7800] now 0+0
2015-03-31 11:02:27.193792 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2876a800 on [dir 10000000000 /test_small/ [2,head] auth v=3295307 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382378=382371+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:27.193803 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2876a800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:27.193811 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.193860 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5b follows 0 op update
2015-03-31 11:02:27.193869 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193884 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.193886 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.193906 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.193907 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193914 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193923 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.193925 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193930 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193938 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193944 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.193946 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193953 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193960 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193966 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193973 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.193974 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.193975 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e5b [2,head] /test_small/small1/blarg10062 auth v136942 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ad250]
2015-03-31 11:02:27.193982 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.194001 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407926 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194023 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407926 cr=0x9cc4880)
2015-03-31 11:02:27.194026 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407926 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194029 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407926 cr=0x9cc4880) #1000006b2d9
2015-03-31 11:02:27.194031 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2d9 snap head
2015-03-31 11:02:27.194032 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.194034 7fbe462be700 10 mds.0.server ref is [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.194046 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407926 cr=0x9cc4880)
2015-03-31 11:02:27.194049 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.194065 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.194077 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.194087 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.194097 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.194121 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.194136 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.194146 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.194167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.194188 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.194197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ea2f8]
2015-03-31 11:02:27.194205 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_pin by 0x23dd1900 on [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3ea2f8] now 1+0
2015-03-31 11:02:27.194214 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194228 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194241 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194251 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194260 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194269 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.194287 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.194302 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407926 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194306 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407926 getattr Xs #1000006b2d9 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194317 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.194320 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.194324 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:27.194327 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.194341 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407926 cr=0x9cc4880)
2015-03-31 11:02:27.194360 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194376 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194401 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194420 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.194450 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3ea2f8]
2015-03-31 11:02:27.194460 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.194475 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.194485 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:27.194495 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) auth_unpin by 0x23dd1900 on [inode 1000006b2d9 [2,head] /test_small/small5/blarg10062 auth v178734 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3ea2f8] now 0+0
2015-03-31 11:02:27.194544 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407927 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194561 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407927 cr=0x43d2800)
2015-03-31 11:02:27.194563 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407927 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194566 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407927 cr=0x43d2800) #1000006026a
2015-03-31 11:02:27.194568 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.194570 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.194571 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.194583 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407927 cr=0x43d2800)
2015-03-31 11:02:27.194586 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.194601 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.194611 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.194620 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.194634 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.194648 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.194658 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.194679 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.194687 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.194697 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194720 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194733 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194743 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194753 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194762 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194772 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194787 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31456} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194803 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407927 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194807 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407927 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.194818 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.194821 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.194825 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31457
2015-03-31 11:02:27.194839 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31457 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.194853 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407927 cr=0x43d2800)
2015-03-31 11:02:27.194871 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194887 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.194900 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194910 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.194920 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194930 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194951 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194960 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.194970 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.194983 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.194994 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.195133 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407928 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.195151 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407928 cr=0x60afa80)
2015-03-31 11:02:27.195154 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407928 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.195157 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407928 cr=0x60afa80) #10000004e7f
2015-03-31 11:02:27.195159 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7f snap head
2015-03-31 11:02:27.195160 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.195161 7fbe462be700 10 mds.0.server ref is [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.195172 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407928 cr=0x60afa80)
2015-03-31 11:02:27.195175 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.195190 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.195200 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.195209 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.195226 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.195239 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.195252 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.195262 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.195272 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.195281 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.195290 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.195295 7fbe462be700 10 mds.0.cache.ino(10000004e7f) auth_pin by 0x23dd1900 on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918] now 1+0
2015-03-31 11:02:27.195301 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.195314 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.195328 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.195338 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.195348 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.195358 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.195367 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195374 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195390 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195397 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195420 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407928 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.195424 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407928 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.195434 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.195436 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.195439 7fbe462be700 10 mds.0.cache.ino(10000004e7f) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.195441 7fbe462be700 10 mds.0.cache.ino(10000004e7f) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.195454 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407928 cr=0x60afa80)
2015-03-31 11:02:27.195473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.195488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.195502 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.195513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.195522 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.195531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.195551 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195557 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195563 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195569 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.195575 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.195589 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.195599 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.195608 7fbe462be700 10 mds.0.cache.ino(10000004e7f) auth_unpin by 0x23dd1900 on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ac918] now 0+0
2015-03-31 11:02:27.195742 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407929 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.195760 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407929 cr=0x60aa300)
2015-03-31 11:02:27.195763 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407929 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.195766 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407929 cr=0x60aa300) #1000006026a
2015-03-31 11:02:27.195767 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.195769 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.195770 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.195789 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407929 cr=0x60aa300)
2015-03-31 11:02:27.195792 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.195807 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.195827 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.195836 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.195849 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.195863 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.195873 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.195883 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.195892 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.195903 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.195916 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.195930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.195940 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.195950 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.195959 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.195969 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.195980 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31457} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.196006 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407929 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.196021 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407929 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.196031 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.196033 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.196036 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31458
2015-03-31 11:02:27.196038 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31458 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.196051 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407929 cr=0x60aa300)
2015-03-31 11:02:27.196069 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.196085 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.196098 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.196108 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.196118 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.196139 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.196149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.196158 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.196179 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.196193 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.196204 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.196255 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407930 lookup #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.196272 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407930 cr=0xb267080)
2015-03-31 11:02:27.196275 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407930 lookup #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.196277 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407930 cr=0xb267080) #1000006026a/blarg10063
2015-03-31 11:02:27.196279 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.196282 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10063 [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock) v=177718 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.196289 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.196291 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407930 lookup #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.196302 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.196312 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407930 cr=0xb267080)
2015-03-31 11:02:27.218127 7fbe426b3700 10 mds.beacon.cephnautilus01 _send up:active seq 17075
2015-03-31 11:02:27.236055 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407931 lookup #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236078 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407931 cr=0xb264880)
2015-03-31 11:02:27.236083 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407931 lookup #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236086 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407931 cr=0xb264880) #1000006026a/blarg10063
2015-03-31 11:02:27.236088 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.236091 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10063 [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock) v=177718 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.236101 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.236102 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407931 lookup #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236113 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.236125 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407931 cr=0xb264880)
2015-03-31 11:02:27.236159 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407932 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236177 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407932 cr=0x25f4ee00)
2015-03-31 11:02:27.236178 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407932 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236181 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407932 cr=0x25f4ee00) #1000006026a
2015-03-31 11:02:27.236183 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.236184 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.236185 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.236202 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407932 cr=0x25f4ee00)
2015-03-31 11:02:27.236205 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.236222 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.236233 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.236244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.236259 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.236274 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.236285 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.236297 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.236307 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.236318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.236333 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.236348 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.236369 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.236379 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236389 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236399 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236410 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31458} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236456 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407932 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236460 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407932 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236481 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.236484 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.236488 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31459
2015-03-31 11:02:27.236490 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31459 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.236504 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407932 cr=0x25f4ee00)
2015-03-31 11:02:27.236523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.236540 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.236554 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.236565 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.236576 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236586 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236607 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236617 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236628 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.236643 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.236654 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.236690 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407933 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236709 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407933 cr=0x26903700)
2015-03-31 11:02:27.236710 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407933 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236713 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407933 cr=0x26903700) #1000006026a
2015-03-31 11:02:27.236715 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.236716 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.236718 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.236729 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407933 cr=0x26903700)
2015-03-31 11:02:27.236731 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.236746 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.236756 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.236766 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.236780 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.236820 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.236830 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.236851 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.236860 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.236880 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.236894 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.236907 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.236917 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.236927 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236936 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236946 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236956 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31459} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.236971 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407933 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236975 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407933 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.236985 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.236988 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.236991 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31460
2015-03-31 11:02:27.236993 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31460 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.237006 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407933 cr=0x26903700)
2015-03-31 11:02:27.237025 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.237041 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.237055 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.237065 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.237076 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.237086 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.237096 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.237104 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.237114 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.237128 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.237139 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.237184 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407934 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.237202 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407934 cr=0x5410f00)
2015-03-31 11:02:27.237204 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407934 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.237207 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407934 cr=0x5410f00) #10000004e7f
2015-03-31 11:02:27.237209 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7f snap head
2015-03-31 11:02:27.237210 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.237211 7fbe462be700 10 mds.0.server ref is [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.237219 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407934 cr=0x5410f00)
2015-03-31 11:02:27.237222 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.237237 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.237247 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.237256 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.237262 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.237276 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.237291 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.237300 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.237311 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.237320 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.237330 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.237346 7fbe462be700 10 mds.0.cache.ino(10000004e7f) auth_pin by 0x23dd1900 on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918] now 1+0
2015-03-31 11:02:27.237354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.237378 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.237391 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.237401 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.237411 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.237420 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.237429 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237436 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237442 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237448 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237472 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407934 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.237475 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407934 getattr Xs #10000004e7f 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.237484 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.237486 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.237489 7fbe462be700 10 mds.0.cache.ino(10000004e7f) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.237492 7fbe462be700 10 mds.0.cache.ino(10000004e7f) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.237504 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407934 cr=0x5410f00)
2015-03-31 11:02:27.237522 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.237538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.237551 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.237561 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.237571 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.237580 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.237600 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237607 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237614 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237619 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ac918]
2015-03-31 11:02:27.237626 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.237640 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.237651 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.237660 7fbe462be700 10 mds.0.cache.ino(10000004e7f) auth_unpin by 0x23dd1900 on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9ac918] now 0+0
2015-03-31 11:02:27.237955 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407935 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.237973 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407935 cr=0x45a5c80)
2015-03-31 11:02:27.237975 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407935 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.237978 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407935 cr=0x45a5c80) #1000006026a
2015-03-31 11:02:27.237980 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.237981 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.237982 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.237995 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407935 cr=0x45a5c80)
2015-03-31 11:02:27.237997 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.238012 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.238022 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.238031 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.238044 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.238058 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.238068 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.238078 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.238087 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.238098 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238111 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238125 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238135 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238145 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238155 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238165 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238175 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31460} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238191 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407935 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.238195 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407935 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.238216 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.238218 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.238221 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31461
2015-03-31 11:02:27.238224 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31461 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.238246 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407935 cr=0x45a5c80)
2015-03-31 11:02:27.238265 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238280 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238294 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238304 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238314 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238324 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238344 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238354 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238363 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.238377 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.238388 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.238635 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407936 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.238653 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407936 cr=0x51da300)
2015-03-31 11:02:27.238654 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407936 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.238657 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407936 cr=0x51da300) #1000006026a
2015-03-31 11:02:27.238659 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.238660 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.238661 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.238674 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407936 cr=0x51da300)
2015-03-31 11:02:27.238676 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.238690 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.238700 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.238709 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.238722 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.238736 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.238745 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.238756 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.238765 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.238775 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238793 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238807 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238817 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238827 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238837 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238847 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238857 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31461} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.238873 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407936 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.238886 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407936 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.238896 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.238909 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.238913 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31462
2015-03-31 11:02:27.238916 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31462 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.238928 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407936 cr=0x51da300)
2015-03-31 11:02:27.238947 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238962 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.238976 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.238996 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239006 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239026 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239035 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239045 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.239059 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.239069 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.239197 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407937 create #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.239214 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407937 cr=0x9f78280)
2015-03-31 11:02:27.239216 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239229 7fbe462be700 10 mds.0.locker  NOT changing wanted p -> p (issue_seq 31461 != last_issue 31462)
2015-03-31 11:02:27.239231 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239241 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.239242 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239253 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239264 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239273 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239283 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.239284 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407937 create #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.239287 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10063
2015-03-31 11:02:27.239288 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407937 cr=0x9f78280) #1000006026a/blarg10063
2015-03-31 11:02:27.239300 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10063
2015-03-31 11:02:27.239302 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.239303 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.239304 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.239311 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.239318 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10063 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.239326 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407937 cr=0x9f78280)
2015-03-31 11:02:27.239331 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.239346 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.239356 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock) v=177718 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239363 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239372 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.239386 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.239400 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.239409 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.239419 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock) v=177718 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239424 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10063) auth_pin by 0x23dd1900 on [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock) v=177718 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0] now 1+0
2015-03-31 11:02:27.239430 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.239439 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.239460 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock) v=177718 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239475 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177718 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239481 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177718 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239486 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177718 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239491 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177718 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239495 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10063) auth_pin by 0x3ce7b38 on [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177718 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0] now 2+0
2015-03-31 11:02:27.239502 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd1900) [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) v=177718 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.239507 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.239522 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.239536 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.239549 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.239562 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.239572 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.239581 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.239591 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.239600 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239610 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239619 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239629 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239639 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFc, xlocker allowed=pAsLsXsFc on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31462} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239651 7fbe462be700  7 mds.0.locker    sending MClientCaps to client.708310 seq 31463 new pending pAsLsXs was pAsLsXsFs
2015-03-31 11:02:27.239654 7fbe462be700 10 mds.0.15 send_message_client_counted client.708310 seq 27550 client_caps(revoke ino 1000006026a 1732604 seq 31463 caps=pAsLsXs dirty=- wanted=p follows 0 size 0/0 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.239670 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.239693 7fbe462be700  7 mds.0.locker wrlock_start waiting on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.239704 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x29698cc0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:27.239707 7fbe462be700 10 mds.0.locker nudge_log (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280059 7fbe462be700  7 mds.0.locker handle_client_caps on 1000006026a follows 0 op update
2015-03-31 11:02:27.280064 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280077 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.280080 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280095 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.280096 7fbe462be700 10 mds.0.locker   cap inode [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280108 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXs dirty - on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280119 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXs wanted p on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280130 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280140 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.280141 7fbe462be700 10 mds.0.locker eval_gather (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280151 7fbe462be700 10 mds.0.locker  next state is lock issued/allows loner /cb xlocker /cb other /cb
2015-03-31 11:02:27.280154 7fbe462be700  7 mds.0.locker eval_gather finished gather on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.280165 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.280176 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280187 7fbe462be700  7 mds.0.locker file_eval stable, bump to sync (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280198 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280209 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280218 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280228 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280238 7fbe462be700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:27.280239 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407937 create #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.280242 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10063
2015-03-31 11:02:27.280243 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407937 cr=0x9f78280) #1000006026a/blarg10063
2015-03-31 11:02:27.280245 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10063
2015-03-31 11:02:27.280247 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.280258 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.280259 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.280267 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.280273 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10063 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.280292 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407937 cr=0x9f78280)
2015-03-31 11:02:27.280296 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280322 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280332 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) v=177718 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.280339 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280348 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280361 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280370 7fbe462be700 10 mds.0.locker  already auth_pinned [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) v=177718 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.280375 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280384 7fbe462be700 10 mds.0.locker  already wrlocked (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) v=177718 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.280390 7fbe462be700 10 mds.0.locker  already xlocked (dn xlock x=1 by 0x23dd1900) [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) v=177718 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.280395 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280408 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280421 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280431 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280441 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280449 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280458 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280468 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280478 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280487 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280497 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280506 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280515 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280524 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280541 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2da ([1000006b2db~348], 840 left)
2015-03-31 11:02:27.280544 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.280546 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2da [2,head] #1000006b2da auth v1 s=0 n() (iversion lock) 0x3f3a3510]
2015-03-31 11:02:27.280549 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178736
2015-03-31 11:02:27.280550 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10063)  pre_dirty [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) pv=178736 v=177718 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.280558 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a3510]
2015-03-31 11:02:27.280565 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd1900 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178735 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:27.280574 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3b6f220
2015-03-31 11:02:27.280575 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178737
2015-03-31 11:02:27.280576 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178737 v=178735 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.280583 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178737 v=178735 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.280589 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a3510]
2015-03-31 11:02:27.280593 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.280595 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280607 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295308
2015-03-31 11:02:27.280608 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295308 v=3295306 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.280612 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295308 (current v 3295306)
2015-03-31 11:02:27.280613 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178737 v=178735 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=75+1529,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.280619 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.280621 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd1900 on [dir 10000000000 /test_small/ [2,head] auth v=3295307 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382378=382371+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:27.280628 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3b6f590
2015-03-31 11:02:27.280629 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295309
2015-03-31 11:02:27.280630 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280640 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280650 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280661 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.280663 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.333576 < 1, stopping
2015-03-31 11:02:27.280667 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280677 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.280681 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295308 v=3295306 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.280686 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31463} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.280700 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3a3510]
2015-03-31 11:02:27.280706 7fbe462be700 10 mds.0.cache.ino(1000006b2da) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.280709 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280716 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.280717 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280725 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280731 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280738 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280744 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280751 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280758 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280764 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280770 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280777 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280788 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280795 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280801 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280807 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280814 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a3510]
2015-03-31 11:02:27.280823 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.280824 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.280827 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3a3510 tracedn 0x3ce79e0
2015-03-31 11:02:27.280829 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd1900) [dentry #1/test_small/small5/blarg10063 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) pv=178736 v=177718 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce79e0]
2015-03-31 11:02:27.280835 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407937 create #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.280844 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.280847 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31464
2015-03-31 11:02:27.280849 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31464 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.280854 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.280858 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.280860 7fbe462be700 10 mds.0.cache.ino(1000006b2da) including xattrs version 0
2015-03-31 11:02:27.280898 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280926 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280942 7fbe406af700  5 mds.0.log _submit_thread 5419659547~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.280941 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280954 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.280968 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.280991 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281002 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281013 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281024 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281036 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281047 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281058 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281069 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281079 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281091 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFcb, xlocker allowed=pAsLsXsFcb on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281103 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.281377 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407938 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.281397 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407938 cr=0xa250f00)
2015-03-31 11:02:27.281399 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407938 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.281403 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407938 cr=0xa250f00) #1000006b2da
2015-03-31 11:02:27.281404 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2da snap head
2015-03-31 11:02:27.281406 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.281407 7fbe462be700 10 mds.0.server ref is [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3a3510]
2015-03-31 11:02:27.281420 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407938 cr=0xa250f00)
2015-03-31 11:02:27.281423 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.281438 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281449 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281460 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a3510]
2015-03-31 11:02:27.281469 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.281483 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.281497 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281507 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.281518 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.281538 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a3510]
2015-03-31 11:02:27.281547 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_pin by 0x296a6e00 on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a3510] now 1+0
2015-03-31 11:02:27.281557 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.281572 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.281587 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281598 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281609 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281619 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281645 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.281654 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.281667 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407938 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.281670 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407938 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.281679 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.281682 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.281685 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.281699 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.281712 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407938 cr=0xa250f00)
2015-03-31 11:02:27.281731 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.281746 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.281760 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281770 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.281779 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281793 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.281803 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.281813 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.281822 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.281836 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.281845 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.281855 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_unpin by 0x296a6e00 on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a3510] now 0+0
2015-03-31 11:02:27.281887 7fbe462be700 10 mds.beacon.cephnautilus01 handle_mds_beacon up:active seq 17075 rtt 0.063744
2015-03-31 11:02:27.282170 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407939 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.282188 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407939 cr=0xa251e00)
2015-03-31 11:02:27.282191 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407939 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.282194 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407939 cr=0xa251e00) #1000006b2da
2015-03-31 11:02:27.282196 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2da snap head
2015-03-31 11:02:27.282197 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.282198 7fbe462be700 10 mds.0.server ref is [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.282211 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407939 cr=0xa251e00)
2015-03-31 11:02:27.282213 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282229 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282240 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282251 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.282260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282274 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.282289 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282299 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.282310 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282320 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.282331 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.282340 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_pin by 0x296a6e00 on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a3510] now 1+0
2015-03-31 11:02:27.282351 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282366 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282380 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282391 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282402 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282412 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282434 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.282453 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.282478 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407939 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.282483 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407939 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.282493 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.282497 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.282500 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.282504 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.282518 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407939 cr=0xa251e00)
2015-03-31 11:02:27.282538 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282555 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282570 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282581 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282592 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282603 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282613 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.282624 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.282634 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.282649 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.282660 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.282670 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_unpin by 0x296a6e00 on [inode 1000006b2da [2,head] {#1000006b2da /test_small/small5/blarg10063} auth v178736 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a3510] now 0+0
2015-03-31 11:02:27.282771 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407940 readdir #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.282793 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407940 cr=0x2645ad00)
2015-03-31 11:02:27.282795 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407940 readdir #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.282798 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407940 cr=0x2645ad00) #1000006026a
2015-03-31 11:02:27.282800 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.282801 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.282802 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282817 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407940 cr=0x2645ad00)
2015-03-31 11:02:27.282820 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282835 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282845 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282856 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282870 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.282884 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282893 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.282904 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282915 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.282926 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282940 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.282954 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282965 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.282976 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282986 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.282997 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.283007 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.283019 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.283030 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.283041 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x2969e1b0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:27.283043 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.296493 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.296500 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.296509 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.296514 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) mark_dirty [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178735 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.296530 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10063)  mark_dirty [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178736 v=177718 ap=2+0 inode=0x3f3a3510 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0]
2015-03-31 11:02:27.296539 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178737 v=178736 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 75=75+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178736
2015-03-31 11:02:27.296550 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) mark_dirty_parent
2015-03-31 11:02:27.296552 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295306 pv3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 75=75+0) n(v1 rc2015-03-31 11:03:04.000000 76=75+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.296566 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295308 v=3295306 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.296571 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295309 v=3295308 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382378=382371+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295308
2015-03-31 11:02:27.296582 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178737 v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178737
2015-03-31 11:02:27.296590 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295309 v=3295309 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382379=382372+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295309
2015-03-31 11:02:27.296599 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.296610 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.296613 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27551 client_caps(grant ino 1000006b2da 1851535 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.296635 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178736 ap=2+0 inode=0x3f3a3510 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0]
2015-03-31 11:02:27.296644 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407937 create #1000006026a/blarg10063 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.296656 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2da
2015-03-31 11:02:27.296660 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178736 ap=2+0 inode=0x3f3a3510 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0]
2015-03-31 11:02:27.296668 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178736 ap=2+0 inode=0x3f3a3510 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0]
2015-03-31 11:02:27.296675 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178736 ap=2+0 inode=0x3f3a3510 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0]
2015-03-31 11:02:27.296680 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10063) auth_unpin by 0x3ce7b38 on [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178736 ap=1+0 inode=0x3f3a3510 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0] now 1+0
2015-03-31 11:02:27.296686 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178736 ap=1+0 inode=0x3f3a3510 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0]
2015-03-31 11:02:27.296692 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.296708 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.296719 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178736 ap=1+0 inode=0x3f3a3510 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce79e0]
2015-03-31 11:02:27.296726 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.296739 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.296751 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.296762 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:27.296765 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.296776 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.296794 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:27.296795 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407940 readdir #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.296798 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407940 cr=0x2645ad00) #1000006026a
2015-03-31 11:02:27.296801 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.296802 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.296803 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296814 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407940 cr=0x2645ad00)
2015-03-31 11:02:27.296817 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.296833 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.296843 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296854 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.296868 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.296879 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296889 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.296904 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.296914 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296924 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296935 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296945 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296956 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31464} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.296971 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:27.296974 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178737 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.296992 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:27.296997 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.297000 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297005 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.297007 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297010 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.297012 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297015 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.297017 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297020 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.297022 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297025 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.297026 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297029 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.297031 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297034 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.297037 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297040 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.297042 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297045 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.297046 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297049 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.297051 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297054 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.297056 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297059 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.297060 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297063 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.297065 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297068 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.297070 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297073 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.297074 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297077 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.297079 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297082 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.297083 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297086 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.297088 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297091 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.297092 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297095 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.297096 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297099 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.297101 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297104 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.297105 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297108 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.297110 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297113 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.297114 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297117 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.297119 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297122 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.297123 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297126 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.297128 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297130 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.297132 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297135 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.297137 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297140 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.297152 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297155 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.297157 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297160 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.297161 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297164 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.297166 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297168 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.297170 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297173 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.297174 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297177 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.297179 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297182 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.297183 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297186 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.297188 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297191 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.297192 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297195 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.297197 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297200 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.297201 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297204 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.297205 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297208 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.297210 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297213 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.297214 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297218 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.297219 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297222 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.297224 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297227 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.297228 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297231 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.297233 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297235 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.297237 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297240 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.297241 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297244 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.297245 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297248 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.297249 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297252 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.297253 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297256 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.297258 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297260 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.297262 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297265 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.297266 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297269 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.297270 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297273 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.297275 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297277 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.297279 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297282 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.297283 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297286 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.297288 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297291 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.297292 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297295 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.297297 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297299 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.297301 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297304 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.297305 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297308 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.297310 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297312 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.297314 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297317 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.297318 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297321 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.297323 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297325 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.297327 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297330 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.297331 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297334 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.297336 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297338 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.297340 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297343 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.297345 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297347 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:27.297349 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297397 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407940 readdir #1000006026a 2015-03-31 11:03:04.000000) v2 readdir num=76 bytes=20747 end=1 complete=1
2015-03-31 11:02:27.297401 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407940 readdir #1000006026a 2015-03-31 11:03:04.000000) v2 readdir num=76 end=1 complete=1
2015-03-31 11:02:27.297404 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407940 readdir #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.297414 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.297417 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.297420 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31465
2015-03-31 11:02:27.297422 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31465 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.297434 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407940 cr=0x2645ad00)
2015-03-31 11:02:27.297452 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.297469 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.297483 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.297493 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.297502 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297513 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297524 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297533 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297556 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297566 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297576 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.297591 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.297601 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.297626 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297638 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297648 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297658 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.297679 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407937 cr=0x9f78280)
2015-03-31 11:02:27.297687 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.297702 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.297712 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10063) auth_unpin by 0x23dd1900 on [dentry #1/test_small/small5/blarg10063 [2,head] auth (dn sync l=1) (dversion lock) v=178736 inode=0x3f3a3510 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce79e0] now 0+0
2015-03-31 11:02:27.297720 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd1900 on [dir 10000000000 /test_small/ [2,head] auth v=3295309 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382379=382372+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:27.297731 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd1900 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178737 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:27.297739 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.488226 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7f follows 0 op update
2015-03-31 11:02:27.488231 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488253 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.488257 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.488293 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.488295 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488309 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488324 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.488328 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488350 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488370 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488393 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.488394 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488415 7fbe406af700  5 mds.0.log _submit_thread 5419661187~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.488419 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488436 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488442 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488449 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488457 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488462 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488469 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.488478 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.528185 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407941 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.528230 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407941 cr=0x9ae1b80)
2015-03-31 11:02:27.528233 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407941 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.528245 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407941 cr=0x9ae1b80) #1000006b2da
2015-03-31 11:02:27.528247 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2da snap head
2015-03-31 11:02:27.528249 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.528250 7fbe462be700 10 mds.0.server ref is [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.528276 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407941 cr=0x9ae1b80)
2015-03-31 11:02:27.528280 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.528303 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.528318 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.528332 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.528352 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.528371 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.528391 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.528403 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.528417 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.528429 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.528443 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.528455 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_pin by 0x2876ad00 on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510] now 1+0
2015-03-31 11:02:27.528468 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.528487 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.528506 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.528519 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.528534 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.528547 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.528561 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.528573 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.528594 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407941 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.528600 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407941 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.528616 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.528622 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.528627 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:27.528632 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.528652 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407941 cr=0x9ae1b80)
2015-03-31 11:02:27.528672 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.528694 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.528713 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.528726 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.528740 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.528758 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.528771 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.528795 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.528808 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.528827 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.528850 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:27.528863 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_unpin by 0x2876ad00 on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510] now 0+0
2015-03-31 11:02:27.530146 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7f follows 0 op update
2015-03-31 11:02:27.530151 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530167 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.530170 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.530194 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.530195 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530206 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530218 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.530220 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530229 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530240 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530248 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.530249 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530260 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530269 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530277 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530286 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.530287 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.530289 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e7f [2,head] /test_small/small1/blarg10063 auth v136944 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ac918]
2015-03-31 11:02:27.530299 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.570094 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407942 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.570124 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407942 cr=0x9ae1400)
2015-03-31 11:02:27.570127 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407942 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.570132 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407942 cr=0x9ae1400) #1000006b2da
2015-03-31 11:02:27.570134 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2da snap head
2015-03-31 11:02:27.570136 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.570137 7fbe462be700 10 mds.0.server ref is [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.570158 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407942 cr=0x9ae1400)
2015-03-31 11:02:27.570162 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.570185 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.570200 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.570214 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.570227 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.570253 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.570273 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.570286 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.570307 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.570320 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.570340 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510]
2015-03-31 11:02:27.570352 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_pin by 0x2876ad00 on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510] now 1+0
2015-03-31 11:02:27.570366 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.570386 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.570405 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.570419 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.570433 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.570446 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.570460 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.570472 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.570495 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407942 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.570501 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407942 getattr Xs #1000006b2da 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.570518 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.570523 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.570530 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.570535 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.570555 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407942 cr=0x9ae1400)
2015-03-31 11:02:27.570575 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.570597 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.570616 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.570630 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.570644 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.570666 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.570679 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.570693 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3a3510]
2015-03-31 11:02:27.570706 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.570726 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.570740 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:27.570754 7fbe462be700 10 mds.0.cache.ino(1000006b2da) auth_unpin by 0x2876ad00 on [inode 1000006b2da [2,head] /test_small/small5/blarg10063 auth v178736 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a3510] now 0+0
2015-03-31 11:02:27.571012 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407943 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.571036 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407943 cr=0x682d000)
2015-03-31 11:02:27.571039 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407943 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.571043 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407943 cr=0x682d000) #10000004e5a
2015-03-31 11:02:27.571046 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5a snap head
2015-03-31 11:02:27.571048 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.571049 7fbe462be700 10 mds.0.server ref is [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.571063 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407943 cr=0x682d000)
2015-03-31 11:02:27.571067 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.571087 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.571100 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.571112 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.571120 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.571138 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.571166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.571179 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.571193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.571204 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.571216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.571223 7fbe462be700 10 mds.0.cache.ino(10000004e5a) auth_pin by 0x2876ad00 on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0] now 1+0
2015-03-31 11:02:27.571233 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.571251 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.571274 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.571287 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.571309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.571321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.571332 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571350 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571359 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571376 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407943 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.571382 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407943 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.571395 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.571400 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.571405 7fbe462be700 10 mds.0.cache.ino(10000004e5a) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.571409 7fbe462be700 10 mds.0.cache.ino(10000004e5a) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.571427 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407943 cr=0x682d000)
2015-03-31 11:02:27.571445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.571465 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.571484 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.571497 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.571510 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.571524 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.571536 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571545 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571553 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571561 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.571569 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.571587 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.571601 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.571612 7fbe462be700 10 mds.0.cache.ino(10000004e5a) auth_unpin by 0x2876ad00 on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9abfe0] now 0+0
2015-03-31 11:02:27.571918 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407944 lookup #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.571940 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407944 cr=0x23fbb700)
2015-03-31 11:02:27.571943 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407944 lookup #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.571946 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407944 cr=0x23fbb700) #1000006026a/blarg10064
2015-03-31 11:02:27.571949 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.571953 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10064 [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock) v=177720 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.571964 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.571966 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407944 lookup #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.571979 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.571995 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407944 cr=0x23fbb700)
2015-03-31 11:02:27.572515 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407945 lookup #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.572541 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407945 cr=0x60a8500)
2015-03-31 11:02:27.572544 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407945 lookup #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.572548 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407945 cr=0x60a8500) #1000006026a/blarg10064
2015-03-31 11:02:27.572551 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.572554 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10064 [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock) v=177720 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.572564 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.572566 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407945 lookup #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.572581 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.572597 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407945 cr=0x60a8500)
2015-03-31 11:02:27.573126 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407946 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.573152 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407946 cr=0xaeeda00)
2015-03-31 11:02:27.573156 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407946 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.573160 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407946 cr=0xaeeda00) #10000004e5a
2015-03-31 11:02:27.573163 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5a snap head
2015-03-31 11:02:27.573164 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.573166 7fbe462be700 10 mds.0.server ref is [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.573181 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407946 cr=0xaeeda00)
2015-03-31 11:02:27.573185 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.573207 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.573221 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.573233 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.573242 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.573259 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.573278 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.573290 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.573305 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.573316 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.573328 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.573342 7fbe462be700 10 mds.0.cache.ino(10000004e5a) auth_pin by 0x2876ad00 on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0] now 1+0
2015-03-31 11:02:27.573352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.573380 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.573398 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.573412 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.573425 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.573437 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.573449 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573457 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573466 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573474 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573492 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407946 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.573497 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407946 getattr Xs #10000004e5a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.573514 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.573518 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.573524 7fbe462be700 10 mds.0.cache.ino(10000004e5a) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.573527 7fbe462be700 10 mds.0.cache.ino(10000004e5a) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.573547 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407946 cr=0xaeeda00)
2015-03-31 11:02:27.573567 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.573587 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.573607 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.573621 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.573634 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.573649 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.573661 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573671 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573679 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573687 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9abfe0]
2015-03-31 11:02:27.573696 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.573715 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.573728 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.573740 7fbe462be700 10 mds.0.cache.ino(10000004e5a) auth_unpin by 0x2876ad00 on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9abfe0] now 0+0
2015-03-31 11:02:27.574065 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407947 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.574087 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407947 cr=0x9cc5c80)
2015-03-31 11:02:27.574089 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407947 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.574093 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407947 cr=0x9cc5c80) #1000006026a
2015-03-31 11:02:27.574095 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.574097 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.574098 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.574116 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407947 cr=0x9cc5c80)
2015-03-31 11:02:27.574120 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.574138 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.574151 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.574163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.574180 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.574198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.574209 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.574223 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.574235 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.574248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.574266 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.574284 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.574297 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.574310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574341 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574353 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31465} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574375 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407947 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.574381 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407947 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.574395 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.574399 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.574404 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31466
2015-03-31 11:02:27.574407 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31466 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.574424 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407947 cr=0x9cc5c80)
2015-03-31 11:02:27.574442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.574462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.574480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.574494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.574507 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31466} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574527 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31466} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574540 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31466} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574553 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31466} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.574566 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.574583 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.574597 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31466} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.574988 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407948 create #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.575014 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407948 cr=0x25f4cd80)
2015-03-31 11:02:27.575019 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575041 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:27.575043 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575058 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.575060 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575076 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575089 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575101 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575113 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.575115 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407948 create #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.575119 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10064
2015-03-31 11:02:27.575120 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407948 cr=0x25f4cd80) #1000006026a/blarg10064
2015-03-31 11:02:27.575123 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10064
2015-03-31 11:02:27.575125 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.575127 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.575128 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178737 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.575138 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178737 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.575148 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10064 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178737 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.575161 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407948 cr=0x25f4cd80)
2015-03-31 11:02:27.575168 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.575189 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.575202 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock) v=177720 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575210 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575230 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.575248 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.575267 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.575279 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.575293 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock) v=177720 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575300 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10064) auth_pin by 0x2876ad00 on [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock) v=177720 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0] now 1+0
2015-03-31 11:02:27.575309 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.575321 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.575335 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock) v=177720 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575342 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177720 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575349 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177720 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575357 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177720 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575363 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177720 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575370 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10064) auth_pin by 0x3ce7d18 on [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177720 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0] now 2+0
2015-03-31 11:02:27.575379 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2876ad00) [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dn xlock x=1 by 0x2876ad00) (dversion lock w=1 last_client=708310) v=177720 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575387 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.575407 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.575426 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.575444 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.575462 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.575476 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.575489 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.575503 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.575516 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575529 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575541 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575554 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575568 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575581 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575594 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575607 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575620 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575633 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575646 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575671 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2db ([1000006b2dc~347], 839 left)
2015-03-31 11:02:27.575675 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.575677 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2db [2,head] #1000006b2db auth v1 s=0 n() (iversion lock) 0x3f34d778]
2015-03-31 11:02:27.575683 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178738
2015-03-31 11:02:27.575685 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10064)  pre_dirty [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dn xlock x=1 by 0x2876ad00) (dversion lock w=1 last_client=708310) pv=178738 v=177720 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.575696 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f34d778]
2015-03-31 11:02:27.575706 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2876ad00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:27.575719 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x995d750
2015-03-31 11:02:27.575721 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178739
2015-03-31 11:02:27.575722 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178739 v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.575733 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178739 v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.575743 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f34d778]
2015-03-31 11:02:27.575751 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.575753 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575772 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295310
2015-03-31 11:02:27.575773 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295310 v=3295308 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.575780 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295310 (current v 3295308)
2015-03-31 11:02:27.575789 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178739 v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.575799 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.575802 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2876ad00 on [dir 10000000000 /test_small/ [2,head] auth v=3295309 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382379=382372+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:27.575815 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc6bff0
2015-03-31 11:02:27.575817 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295311
2015-03-31 11:02:27.575818 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.575834 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.575849 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575872 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.575874 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.628702 < 1, stopping
2015-03-31 11:02:27.575880 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.575895 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.575900 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295310 v=3295308 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.575907 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31466} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.575928 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f34d778]
2015-03-31 11:02:27.575937 7fbe462be700 10 mds.0.cache.ino(1000006b2db) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.575941 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f34d778]
2015-03-31 11:02:27.575952 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.575954 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.575965 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.575975 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.575984 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.575994 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576003 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576013 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576021 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576030 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576039 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576048 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576057 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576067 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576075 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576084 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34d778]
2015-03-31 11:02:27.576098 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.576099 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.576102 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f34d778 tracedn 0x3ce7bc0
2015-03-31 11:02:27.576105 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2876ad00) [dentry #1/test_small/small5/blarg10064 [2,head] auth NULL (dn xlock x=1 by 0x2876ad00) (dversion lock w=1 last_client=708310) pv=178738 v=177720 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7bc0]
2015-03-31 11:02:27.576116 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407948 create #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.576127 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.576131 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31467
2015-03-31 11:02:27.576134 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31467 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.576142 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.576153 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.576156 7fbe462be700 10 mds.0.cache.ino(1000006b2db) including xattrs version 0
2015-03-31 11:02:27.576201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576238 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576257 7fbe406af700  5 mds.0.log _submit_thread 5419662046~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.576258 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576274 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576299 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576313 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576327 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576339 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576352 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576367 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576381 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576394 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576407 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576420 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576682 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407949 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.576706 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407949 cr=0x968df00)
2015-03-31 11:02:27.576709 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407949 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.576713 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407949 cr=0x968df00) #1000006b2db
2015-03-31 11:02:27.576715 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2db snap head
2015-03-31 11:02:27.576717 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.576718 7fbe462be700 10 mds.0.server ref is [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f34d778]
2015-03-31 11:02:27.576735 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407949 cr=0x968df00)
2015-03-31 11:02:27.576738 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576758 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576771 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576793 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f34d778]
2015-03-31 11:02:27.576806 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576823 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.576841 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576853 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.576867 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.576879 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.576893 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f34d778]
2015-03-31 11:02:27.576905 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_pin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f34d778] now 1+0
2015-03-31 11:02:27.576918 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576944 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.576969 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576983 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.576996 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.577081 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.577108 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407949 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.577113 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407949 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.577128 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.577140 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.577146 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.577151 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.577170 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407949 cr=0x968df00)
2015-03-31 11:02:27.577181 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.577202 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.577221 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.577235 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.577249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577262 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.577289 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.577301 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.577320 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.577333 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.577347 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_unpin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778] now 0+0
2015-03-31 11:02:27.577636 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407950 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.577659 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407950 cr=0xaee8a00)
2015-03-31 11:02:27.577663 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407950 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.577667 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407950 cr=0xaee8a00) #1000006b2db
2015-03-31 11:02:27.577669 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2db snap head
2015-03-31 11:02:27.577671 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.577672 7fbe462be700 10 mds.0.server ref is [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.577689 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407950 cr=0xaee8a00)
2015-03-31 11:02:27.577692 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.577711 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.577725 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577738 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.577750 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.577768 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.577793 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.577805 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.577819 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577832 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.577846 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.577858 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_pin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778] now 1+0
2015-03-31 11:02:27.577870 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.577889 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.577906 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.577925 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.577938 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577952 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.577965 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.577978 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.577998 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407950 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.578004 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407950 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.578018 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.578021 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.578027 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.578030 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.578049 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407950 cr=0xaee8a00)
2015-03-31 11:02:27.578067 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.578088 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.578106 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.578119 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.578133 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.578149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.578162 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.578175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.578187 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.578206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.578220 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.578233 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_unpin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778] now 0+0
2015-03-31 11:02:27.581108 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5a follows 0 op update
2015-03-31 11:02:27.581112 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581124 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.581126 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.581149 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.581150 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581159 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581169 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.581171 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581187 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581205 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581213 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.581215 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581225 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581231 7fbe406af700  5 mds.0.log _submit_thread 5419663686~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.581234 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581241 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581249 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581258 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581265 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581273 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.581285 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.621082 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407951 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.621109 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407951 cr=0x5e8a080)
2015-03-31 11:02:27.621114 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407951 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.621119 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407951 cr=0x5e8a080) #1000006b2db
2015-03-31 11:02:27.621121 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2db snap head
2015-03-31 11:02:27.621123 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.621124 7fbe462be700 10 mds.0.server ref is [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.621145 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407951 cr=0x5e8a080)
2015-03-31 11:02:27.621149 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.621170 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.621185 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.621201 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.621214 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.621236 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.621255 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.621267 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.621281 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.621302 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.621324 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.621336 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_pin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778] now 1+0
2015-03-31 11:02:27.621349 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.621368 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.621386 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.621400 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.621413 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.621427 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.621440 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.621453 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.621474 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407951 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.621479 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407951 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.621494 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.621499 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.621504 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:27.621509 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.621527 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407951 cr=0x5e8a080)
2015-03-31 11:02:27.621559 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.621580 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.621599 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.621613 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.621635 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.621649 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.621662 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.621675 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.621688 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.621707 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.621721 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.621734 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_unpin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778] now 0+0
2015-03-31 11:02:27.622992 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5a follows 0 op update
2015-03-31 11:02:27.622996 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623010 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.623012 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.623034 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.623036 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623045 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623055 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.623057 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623066 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623075 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623083 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.623084 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623094 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623103 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623110 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623118 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.623119 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.623121 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e5a [2,head] /test_small/small1/blarg10064 auth v136946 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9abfe0]
2015-03-31 11:02:27.623131 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.663091 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407952 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.663118 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407952 cr=0x26907080)
2015-03-31 11:02:27.663123 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407952 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.663127 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407952 cr=0x26907080) #1000006b2db
2015-03-31 11:02:27.663129 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2db snap head
2015-03-31 11:02:27.663131 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.663132 7fbe462be700 10 mds.0.server ref is [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.663152 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407952 cr=0x26907080)
2015-03-31 11:02:27.663156 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.663178 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.663193 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.663208 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.663220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.663242 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.663260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.663272 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.663286 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.663299 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.663313 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.663332 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_pin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778] now 1+0
2015-03-31 11:02:27.663344 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.663363 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.663381 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.663394 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.663407 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.663421 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.663434 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.663447 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.663468 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407952 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.663473 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407952 getattr Xs #1000006b2db 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.663488 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.663494 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.663499 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:27.663504 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.663522 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407952 cr=0x26907080)
2015-03-31 11:02:27.663541 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.663561 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.663580 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.663594 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.663615 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.663628 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.663642 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.663655 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34d778]
2015-03-31 11:02:27.663668 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.663687 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.663700 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.663714 7fbe462be700 10 mds.0.cache.ino(1000006b2db) auth_unpin by 0x29a73700 on [inode 1000006b2db [2,head] {#1000006b2db /test_small/small5/blarg10064} auth v178738 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34d778] now 0+0
2015-03-31 11:02:27.663986 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407953 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.664007 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407953 cr=0x236b9180)
2015-03-31 11:02:27.664010 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407953 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.664014 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407953 cr=0x236b9180) #10000004e59
2015-03-31 11:02:27.664016 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e59 snap head
2015-03-31 11:02:27.664018 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.664019 7fbe462be700 10 mds.0.server ref is [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.664032 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407953 cr=0x236b9180)
2015-03-31 11:02:27.664035 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.664054 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.664067 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.664079 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.664087 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.664104 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.664123 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.664135 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.664148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.664159 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.664170 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.664178 7fbe462be700 10 mds.0.cache.ino(10000004e59) auth_pin by 0x29a73700 on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8] now 1+0
2015-03-31 11:02:27.664187 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.664205 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.664223 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.664236 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.664248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.664260 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.664278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664287 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664295 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664303 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664320 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407953 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.664325 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407953 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.664339 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.664344 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.664348 7fbe462be700 10 mds.0.cache.ino(10000004e59) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.664352 7fbe462be700 10 mds.0.cache.ino(10000004e59) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.664369 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407953 cr=0x236b9180)
2015-03-31 11:02:27.664397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.664418 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.664436 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.664448 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.664464 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.664476 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.664488 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664496 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664505 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.664520 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.664538 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.664551 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.664563 7fbe462be700 10 mds.0.cache.ino(10000004e59) auth_unpin by 0x29a73700 on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ab6a8] now 0+0
2015-03-31 11:02:27.664868 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407954 lookup #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.664888 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407954 cr=0x968a580)
2015-03-31 11:02:27.664891 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407954 lookup #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.664894 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407954 cr=0x968a580) #1000006026a/blarg10065
2015-03-31 11:02:27.664896 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.664899 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10065 [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock) v=177722 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.664909 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.664911 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407954 lookup #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.664923 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.664936 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407954 cr=0x968a580)
2015-03-31 11:02:27.665425 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407955 lookup #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.665449 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407955 cr=0x25f49900)
2015-03-31 11:02:27.665452 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407955 lookup #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.665456 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407955 cr=0x25f49900) #1000006026a/blarg10065
2015-03-31 11:02:27.665458 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.665461 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10065 [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock) v=177722 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.665471 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.665473 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407955 lookup #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.665487 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.665502 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407955 cr=0x25f49900)
2015-03-31 11:02:27.665998 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407956 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.666023 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407956 cr=0x3b0e680)
2015-03-31 11:02:27.666027 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407956 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.666031 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407956 cr=0x3b0e680) #10000004e59
2015-03-31 11:02:27.666034 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e59 snap head
2015-03-31 11:02:27.666035 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.666036 7fbe462be700 10 mds.0.server ref is [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.666051 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407956 cr=0x3b0e680)
2015-03-31 11:02:27.666055 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.666077 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.666092 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.666104 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.666112 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.666130 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.666148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.666161 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.666175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.666186 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.666198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.666205 7fbe462be700 10 mds.0.cache.ino(10000004e59) auth_pin by 0x29a73700 on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8] now 1+0
2015-03-31 11:02:27.666214 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.666241 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.666259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.666272 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.666285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.666296 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.666308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666325 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666333 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666350 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407956 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.666355 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407956 getattr Xs #10000004e59 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.666371 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.666376 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.666382 7fbe462be700 10 mds.0.cache.ino(10000004e59) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.666386 7fbe462be700 10 mds.0.cache.ino(10000004e59) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.666403 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407956 cr=0x3b0e680)
2015-03-31 11:02:27.666422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.666442 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.666460 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.666473 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.666486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.666496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.666506 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666515 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9ab6a8]
2015-03-31 11:02:27.666539 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.666557 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.666571 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73700 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.666582 7fbe462be700 10 mds.0.cache.ino(10000004e59) auth_unpin by 0x29a73700 on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9ab6a8] now 0+0
2015-03-31 11:02:27.666946 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407957 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.666971 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407957 cr=0x968af80)
2015-03-31 11:02:27.666974 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407957 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.666978 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407957 cr=0x968af80) #1000006026a
2015-03-31 11:02:27.666980 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.666982 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.666983 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667006 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407957 cr=0x968af80)
2015-03-31 11:02:27.667009 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667030 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667043 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667057 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667074 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.667092 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667104 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.667118 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667131 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.667145 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667167 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667185 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667207 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667220 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667233 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667246 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667259 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31467} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667281 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407957 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.667286 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407957 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.667301 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.667306 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.667312 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31468
2015-03-31 11:02:27.667314 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31468 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.667333 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407957 cr=0x968af80)
2015-03-31 11:02:27.667359 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667380 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667398 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667412 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667425 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667439 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667478 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.667496 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.667509 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.667810 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407958 create #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.667831 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407958 cr=0xab83e80)
2015-03-31 11:02:27.667834 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407958 create #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.667838 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10065
2015-03-31 11:02:27.667839 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407958 cr=0xab83e80) #1000006026a/blarg10065
2015-03-31 11:02:27.667842 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10065
2015-03-31 11:02:27.667843 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.667845 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.667847 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178739 v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.667858 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178739 v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.667868 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10065 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178739 v=178737 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.667882 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407958 cr=0xab83e80)
2015-03-31 11:02:27.667889 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667909 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667922 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock) v=177722 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.667931 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.667946 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.667971 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.667988 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.667999 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.668012 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock) v=177722 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668019 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10065) auth_pin by 0x29a73700 on [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock) v=177722 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0] now 1+0
2015-03-31 11:02:27.668027 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668039 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.668053 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock) v=177722 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668070 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177722 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668077 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177722 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668091 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177722 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668097 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177722 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668103 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10065) auth_pin by 0x3ce7ef8 on [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177722 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0] now 2+0
2015-03-31 11:02:27.668110 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a73700) [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dn xlock x=1 by 0x29a73700) (dversion lock w=1 last_client=708310) v=177722 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668117 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668136 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668153 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668170 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668187 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668200 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668212 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668224 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668236 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668249 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668262 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668274 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668286 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668298 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668311 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668323 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668335 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668348 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668371 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2dc ([1000006b2dd~346], 838 left)
2015-03-31 11:02:27.668375 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.668377 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2dc [2,head] #1000006b2dc auth v1 s=0 n() (iversion lock) 0x3f329be8]
2015-03-31 11:02:27.668382 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178740
2015-03-31 11:02:27.668384 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10065)  pre_dirty [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dn xlock x=1 by 0x29a73700) (dversion lock w=1 last_client=708310) pv=178740 v=177722 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668394 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f329be8]
2015-03-31 11:02:27.668404 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a73700 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178740 v=178737 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:27.668415 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x995eb40
2015-03-31 11:02:27.668417 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178741
2015-03-31 11:02:27.668418 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178741 v=178737 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.668428 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178741 v=178737 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.668437 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f329be8]
2015-03-31 11:02:27.668444 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.668446 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295310 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668463 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295312
2015-03-31 11:02:27.668464 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295312 v=3295308 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.668471 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295312 (current v 3295308)
2015-03-31 11:02:27.668474 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178741 v=178737 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.668483 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.668486 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a73700 on [dir 10000000000 /test_small/ [2,head] auth pv=3295312 v=3295309 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382379=382372+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:27.668498 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc6fd20
2015-03-31 11:02:27.668499 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295313
2015-03-31 11:02:27.668500 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668515 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668528 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668542 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.668544 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.721403 < 1, stopping
2015-03-31 11:02:27.668550 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668563 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.668568 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295312 v=3295308 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.668574 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31468} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.668592 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f329be8]
2015-03-31 11:02:27.668601 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.668604 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f329be8]
2015-03-31 11:02:27.668614 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.668616 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668626 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668635 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668644 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668653 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668662 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668670 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668679 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668687 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668695 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668703 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668712 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668721 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668729 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668737 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f329be8]
2015-03-31 11:02:27.668751 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.668752 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.668755 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f329be8 tracedn 0x3ce7da0
2015-03-31 11:02:27.668758 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a73700) [dentry #1/test_small/small5/blarg10065 [2,head] auth NULL (dn xlock x=1 by 0x29a73700) (dversion lock w=1 last_client=708310) pv=178740 v=177722 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7da0]
2015-03-31 11:02:27.668768 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407958 create #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.668777 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.668786 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31469
2015-03-31 11:02:27.668790 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31469 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.668798 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.668801 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.668804 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) including xattrs version 0
2015-03-31 11:02:27.668844 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668873 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668897 7fbe406af700  5 mds.0.log _submit_thread 5419664545~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.668891 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668913 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.668938 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668951 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668964 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668976 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.668988 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669001 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669014 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669026 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669039 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669050 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669303 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407959 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.669325 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407959 cr=0x968e900)
2015-03-31 11:02:27.669328 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407959 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.669332 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407959 cr=0x968e900) #1000006b2dc
2015-03-31 11:02:27.669334 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dc snap head
2015-03-31 11:02:27.669336 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.669337 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f329be8]
2015-03-31 11:02:27.669351 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407959 cr=0x968e900)
2015-03-31 11:02:27.669354 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.669373 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.669385 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669398 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f329be8]
2015-03-31 11:02:27.669409 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.669425 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.669442 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.669454 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.669467 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669479 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.669492 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f329be8]
2015-03-31 11:02:27.669502 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_pin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f329be8] now 1+0
2015-03-31 11:02:27.669514 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.669532 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.669549 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.669562 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.669590 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669603 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669616 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.669628 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.669646 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407959 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.669651 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407959 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.669664 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.669669 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.669673 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.669677 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.669693 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407959 cr=0x968e900)
2015-03-31 11:02:27.669710 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.669729 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.669746 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.669759 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.669771 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669793 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.669806 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.669819 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.669830 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.669848 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.669861 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.669880 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_unpin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8] now 0+0
2015-03-31 11:02:27.670156 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407960 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.670176 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407960 cr=0x25f48a00)
2015-03-31 11:02:27.670179 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407960 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.670183 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407960 cr=0x25f48a00) #1000006b2dc
2015-03-31 11:02:27.670185 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dc snap head
2015-03-31 11:02:27.670187 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.670188 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.670204 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407960 cr=0x25f48a00)
2015-03-31 11:02:27.670207 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.670225 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.670237 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.670250 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.670261 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.670277 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.670294 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.670305 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.670318 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.670330 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.670343 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.670354 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_pin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8] now 1+0
2015-03-31 11:02:27.670365 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.670383 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.670400 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.670419 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.670439 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.670452 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.670464 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.670476 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.670494 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407960 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.670499 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407960 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.670513 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.670518 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.670523 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.670527 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.670542 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407960 cr=0x25f48a00)
2015-03-31 11:02:27.670560 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.670580 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.670597 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.670610 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.670622 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.670637 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.670649 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.670661 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.670672 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.670690 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.670702 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.670715 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_unpin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8] now 0+0
2015-03-31 11:02:27.674843 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e59 follows 0 op update
2015-03-31 11:02:27.674847 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674857 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.674859 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.674877 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.674878 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674886 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674895 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.674897 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674910 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674927 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674935 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.674936 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674946 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674953 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674953 7fbe406af700  5 mds.0.log _submit_thread 5419666185~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.674959 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674965 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674972 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674979 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674986 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.674997 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.714058 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407961 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.714085 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407961 cr=0x26907580)
2015-03-31 11:02:27.714090 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407961 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.714094 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407961 cr=0x26907580) #1000006b2dc
2015-03-31 11:02:27.714096 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dc snap head
2015-03-31 11:02:27.714098 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.714099 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.714118 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407961 cr=0x26907580)
2015-03-31 11:02:27.714122 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.714144 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.714158 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.714172 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.714185 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.714202 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.714220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.714231 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.714244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.714257 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.714277 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.714288 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_pin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8] now 1+0
2015-03-31 11:02:27.714310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.714329 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.714346 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.714360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.714372 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.714385 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.714397 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.714410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.714430 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407961 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.714435 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407961 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.714447 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.714451 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.714457 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:27.714461 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.714479 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407961 cr=0x26907580)
2015-03-31 11:02:27.714497 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.714517 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.714534 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.714547 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.714560 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.714580 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.714593 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.714605 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.714617 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.714635 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.714647 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.714660 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_unpin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8] now 0+0
2015-03-31 11:02:27.715955 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e59 follows 0 op update
2015-03-31 11:02:27.715958 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.715972 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.715974 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.715995 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.715996 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716006 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716016 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.716018 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716026 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716035 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716042 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.716043 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716052 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716060 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716067 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716075 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.716076 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.716078 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e59 [2,head] /test_small/small1/blarg10065 auth v136948 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9ab6a8]
2015-03-31 11:02:27.716086 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.756077 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407962 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.756108 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407962 cr=0x26903980)
2015-03-31 11:02:27.756112 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407962 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.756116 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407962 cr=0x26903980) #1000006b2dc
2015-03-31 11:02:27.756118 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dc snap head
2015-03-31 11:02:27.756120 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.756121 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.756140 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407962 cr=0x26903980)
2015-03-31 11:02:27.756144 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.756164 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.756177 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.756191 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.756203 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.756220 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.756242 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.756254 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.756266 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.756285 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.756298 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.756309 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_pin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8] now 1+0
2015-03-31 11:02:27.756324 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.756342 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.756359 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.756372 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.756383 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.756396 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.756408 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.756420 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.756439 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407962 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.756444 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407962 getattr Xs #1000006b2dc 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.756457 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.756461 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.756466 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:27.756470 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.756487 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407962 cr=0x26903980)
2015-03-31 11:02:27.756503 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.756522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.756539 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.756552 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.756564 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.756581 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.756593 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.756605 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f329be8]
2015-03-31 11:02:27.756616 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.756634 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.756646 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.756658 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) auth_unpin by 0x29a73c00 on [inode 1000006b2dc [2,head] {#1000006b2dc /test_small/small5/blarg10065} auth v178740 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f329be8] now 0+0
2015-03-31 11:02:27.756947 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407963 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.756966 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407963 cr=0x25f4b980)
2015-03-31 11:02:27.756969 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407963 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.756973 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407963 cr=0x25f4b980) #10000004e58
2015-03-31 11:02:27.756975 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e58 snap head
2015-03-31 11:02:27.756977 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.756978 7fbe462be700 10 mds.0.server ref is [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.756988 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407963 cr=0x25f4b980)
2015-03-31 11:02:27.756991 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.757009 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.757021 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.757031 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.757038 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.757054 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.757070 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.757081 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.757093 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.757103 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.757114 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.757120 7fbe462be700 10 mds.0.cache.ino(10000004e58) auth_pin by 0x29a73c00 on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70] now 1+0
2015-03-31 11:02:27.757128 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.757145 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.757161 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.757173 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.757185 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.757196 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.757214 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757230 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757238 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757244 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757260 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407963 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.757264 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407963 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.757277 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.757282 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.757286 7fbe462be700 10 mds.0.cache.ino(10000004e58) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.757289 7fbe462be700 10 mds.0.cache.ino(10000004e58) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.757305 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407963 cr=0x25f4b980)
2015-03-31 11:02:27.757321 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.757339 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.757356 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.757368 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.757380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.757398 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.757409 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757416 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757423 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757431 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.757438 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.757455 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.757468 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.757478 7fbe462be700 10 mds.0.cache.ino(10000004e58) auth_unpin by 0x29a73c00 on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aad70] now 0+0
2015-03-31 11:02:27.757798 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407964 lookup #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.757817 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407964 cr=0x43d0280)
2015-03-31 11:02:27.757820 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407964 lookup #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.757823 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407964 cr=0x43d0280) #1000006026a/blarg10066
2015-03-31 11:02:27.757825 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.757828 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10066 [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock) v=177724 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.757838 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.757839 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407964 lookup #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.757849 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.757862 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407964 cr=0x43d0280)
2015-03-31 11:02:27.758326 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407965 lookup #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.758348 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407965 cr=0x2645aa80)
2015-03-31 11:02:27.758352 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407965 lookup #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.758355 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407965 cr=0x2645aa80) #1000006026a/blarg10066
2015-03-31 11:02:27.758357 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.758360 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10066 [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock) v=177724 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.758369 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.758371 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407965 lookup #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.758383 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.758396 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407965 cr=0x2645aa80)
2015-03-31 11:02:27.758884 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407966 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.758907 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407966 cr=0xab85000)
2015-03-31 11:02:27.758909 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407966 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.758913 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407966 cr=0xab85000) #10000004e58
2015-03-31 11:02:27.758915 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e58 snap head
2015-03-31 11:02:27.758917 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.758918 7fbe462be700 10 mds.0.server ref is [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.758931 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407966 cr=0xab85000)
2015-03-31 11:02:27.758935 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.758956 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.758969 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.758980 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.758987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759004 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.759021 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759033 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.759045 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.759056 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.759066 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.759074 7fbe462be700 10 mds.0.cache.ino(10000004e58) auth_pin by 0x29a73c00 on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70] now 1+0
2015-03-31 11:02:27.759082 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759103 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759128 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759141 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759153 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.759163 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.759174 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759182 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759189 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759197 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759212 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407966 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.759217 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407966 getattr Xs #10000004e58 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.759230 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.759233 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.759239 7fbe462be700 10 mds.0.cache.ino(10000004e58) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.759241 7fbe462be700 10 mds.0.cache.ino(10000004e58) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.759260 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407966 cr=0xab85000)
2015-03-31 11:02:27.759277 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759296 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759313 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759325 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759337 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.759353 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.759364 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759372 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759387 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9aad70]
2015-03-31 11:02:27.759393 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.759409 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.759422 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a73c00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.759432 7fbe462be700 10 mds.0.cache.ino(10000004e58) auth_unpin by 0x29a73c00 on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9aad70] now 0+0
2015-03-31 11:02:27.759713 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407967 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.759734 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407967 cr=0x26902f80)
2015-03-31 11:02:27.759736 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407967 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.759740 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407967 cr=0x26902f80) #1000006026a
2015-03-31 11:02:27.759742 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.759743 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.759745 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.759761 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407967 cr=0x26902f80)
2015-03-31 11:02:27.759764 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759781 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759798 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.759811 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759827 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.759843 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759854 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.759866 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.759878 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.759890 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.759923 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759935 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.759946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.759958 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.759970 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.759983 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31469} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.760001 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407967 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.760005 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407967 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.760018 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.760022 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.760026 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31470
2015-03-31 11:02:27.760028 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31470 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.760043 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407967 cr=0x26902f80)
2015-03-31 11:02:27.760060 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760077 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760093 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760106 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760117 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.760137 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.760149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.760160 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.760172 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.760188 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.760200 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.760589 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407968 create #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.760611 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407968 cr=0x8f09180)
2015-03-31 11:02:27.760615 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407968 create #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.760618 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10066
2015-03-31 11:02:27.760620 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407968 cr=0x8f09180) #1000006026a/blarg10066
2015-03-31 11:02:27.760622 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10066
2015-03-31 11:02:27.760624 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.760625 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.760627 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178741 v=178737 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.760638 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178741 v=178737 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.760648 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10066 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178741 v=178737 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.760659 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407968 cr=0x8f09180)
2015-03-31 11:02:27.760667 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760688 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760702 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock) v=177724 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760710 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.760723 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760740 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.760757 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760769 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.760781 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock) v=177724 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760794 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10066) auth_pin by 0x29a73c00 on [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock) v=177724 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80] now 1+0
2015-03-31 11:02:27.760804 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.760817 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.760832 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock) v=177724 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760838 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177724 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760845 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177724 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760852 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177724 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760859 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177724 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760865 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10066) auth_pin by 0x3ce80d8 on [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177724 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80] now 2+0
2015-03-31 11:02:27.760873 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a73c00) [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dn xlock x=1 by 0x29a73c00) (dversion lock w=1 last_client=708310) v=177724 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.760880 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760898 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760915 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760931 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.760947 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760959 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760971 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760983 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.760995 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761007 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761019 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761031 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761043 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761054 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761066 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761078 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761090 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761102 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761125 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2dd ([1000006b2de~345], 837 left)
2015-03-31 11:02:27.761129 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.761131 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2dd [2,head] #1000006b2dd auth v1 s=0 n() (iversion lock) 0x3f460e08]
2015-03-31 11:02:27.761136 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178742
2015-03-31 11:02:27.761138 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10066)  pre_dirty [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dn xlock x=1 by 0x29a73c00) (dversion lock w=1 last_client=708310) pv=178742 v=177724 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.761148 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f460e08]
2015-03-31 11:02:27.761157 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a73c00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178742 v=178737 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:27.761168 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x99594a0
2015-03-31 11:02:27.761170 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178743
2015-03-31 11:02:27.761171 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178737 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.761180 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178737 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.761189 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f460e08]
2015-03-31 11:02:27.761196 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.761198 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295312 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761214 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295314
2015-03-31 11:02:27.761216 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295314 v=3295308 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.761222 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295314 (current v 3295308)
2015-03-31 11:02:27.761224 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178737 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=76+1528,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.761233 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.761236 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a73c00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295314 v=3295309 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382379=382372+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:27.761247 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9930d10
2015-03-31 11:02:27.761249 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295315
2015-03-31 11:02:27.761250 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.761264 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.761277 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761291 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.761294 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.814157 < 1, stopping
2015-03-31 11:02:27.761299 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.761312 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.761316 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295314 v=3295308 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.761323 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31470} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761339 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f460e08]
2015-03-31 11:02:27.761348 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.761351 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f460e08]
2015-03-31 11:02:27.761361 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.761362 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761372 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761381 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761389 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761398 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761406 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761414 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761422 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761430 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761438 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761447 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761455 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761463 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761472 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761480 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f460e08]
2015-03-31 11:02:27.761493 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.761494 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.761497 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f460e08 tracedn 0x3ce7f80
2015-03-31 11:02:27.761499 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a73c00) [dentry #1/test_small/small5/blarg10066 [2,head] auth NULL (dn xlock x=1 by 0x29a73c00) (dversion lock w=1 last_client=708310) pv=178742 v=177724 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce7f80]
2015-03-31 11:02:27.761508 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407968 create #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.761518 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.761522 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31471
2015-03-31 11:02:27.761525 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31471 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.761532 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.761536 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.761539 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) including xattrs version 0
2015-03-31 11:02:27.761578 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.761606 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.761625 7fbe406af700  5 mds.0.log _submit_thread 5419667044~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.761623 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.761639 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.761661 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.761674 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.761686 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.761698 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.761710 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761723 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761736 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761748 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761760 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.761771 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762021 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407969 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.762043 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407969 cr=0x9cc2f80)
2015-03-31 11:02:27.762046 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407969 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.762050 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407969 cr=0x9cc2f80) #1000006b2dd
2015-03-31 11:02:27.762052 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dd snap head
2015-03-31 11:02:27.762054 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.762055 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f460e08]
2015-03-31 11:02:27.762070 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407969 cr=0x9cc2f80)
2015-03-31 11:02:27.762073 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762091 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762102 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762115 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f460e08]
2015-03-31 11:02:27.762125 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762141 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.762158 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762169 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.762182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762193 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.762206 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f460e08]
2015-03-31 11:02:27.762217 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_pin by 0x29a72d00 on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f460e08] now 1+0
2015-03-31 11:02:27.762228 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762245 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762261 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762274 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762284 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762319 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.762331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.762349 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407969 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.762354 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407969 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.762366 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.762369 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.762375 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.762378 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.762393 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407969 cr=0x9cc2f80)
2015-03-31 11:02:27.762410 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762429 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762469 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.762510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.762522 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.762538 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.762550 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.762562 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_unpin by 0x29a72d00 on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f460e08] now 0+0
2015-03-31 11:02:27.762824 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407970 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.762844 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407970 cr=0xaee9680)
2015-03-31 11:02:27.762847 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407970 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.762851 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407970 cr=0xaee9680) #1000006b2dd
2015-03-31 11:02:27.762853 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dd snap head
2015-03-31 11:02:27.762854 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.762855 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.762870 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407970 cr=0xaee9680)
2015-03-31 11:02:27.762873 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762890 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762902 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762914 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.762925 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.762941 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.762957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.762968 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.762980 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.762991 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.763003 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.763014 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_pin by 0x29a72d00 on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08] now 1+0
2015-03-31 11:02:27.763025 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.763042 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.763058 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.763070 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.763082 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.763104 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.763115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.763126 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.763143 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407970 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.763147 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407970 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.763158 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.763163 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.763167 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.763170 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.763185 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407970 cr=0xaee9680)
2015-03-31 11:02:27.763202 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.763220 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.763237 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.763249 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.763267 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.763279 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.763291 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.763302 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.763313 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.763330 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.763341 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.763353 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_unpin by 0x29a72d00 on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f460e08] now 0+0
2015-03-31 11:02:27.767050 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e58 follows 0 op update
2015-03-31 11:02:27.767054 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767066 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.767069 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.767089 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.767090 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767098 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767107 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.767109 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767122 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767139 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767146 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.767147 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767157 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767164 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767164 7fbe406af700  5 mds.0.log _submit_thread 5419668684~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.767172 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767178 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767186 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767192 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767200 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.767211 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.807059 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407971 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.807080 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407971 cr=0x8f0b980)
2015-03-31 11:02:27.807084 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407971 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.807088 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407971 cr=0x8f0b980) #1000006b2dd
2015-03-31 11:02:27.807090 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dd snap head
2015-03-31 11:02:27.807092 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.807093 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.807112 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407971 cr=0x8f0b980)
2015-03-31 11:02:27.807115 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807135 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807149 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807162 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.807174 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807191 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.807208 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807227 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.807239 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807251 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.807264 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.807275 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_pin by 0x29a72d00 on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08] now 1+0
2015-03-31 11:02:27.807287 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807347 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807359 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807371 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807383 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.807395 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.807414 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407971 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.807419 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407971 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.807432 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.807436 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.807449 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:27.807452 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.807468 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407971 cr=0x8f0b980)
2015-03-31 11:02:27.807486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807506 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807536 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807548 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807561 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807574 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.807593 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.807604 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.807622 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.807634 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.807647 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_unpin by 0x29a72d00 on [inode 1000006b2dd [2,head] {#1000006b2dd /test_small/small5/blarg10066} auth v178742 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f460e08] now 0+0
2015-03-31 11:02:27.807689 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407972 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.807709 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407972 cr=0x9689900)
2015-03-31 11:02:27.807712 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407972 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.807715 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407972 cr=0x9689900) #1000006026a
2015-03-31 11:02:27.807717 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.807719 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.807720 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807736 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407972 cr=0x9689900)
2015-03-31 11:02:27.807739 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807756 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807767 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807779 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807804 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.807821 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807832 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.807844 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807855 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.807874 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807891 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.807907 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807918 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.807930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807942 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807954 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807966 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31471} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.807991 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407972 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.807995 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407972 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.808007 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.808011 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.808015 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31472
2015-03-31 11:02:27.808018 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31472 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.808034 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407972 cr=0x9689900)
2015-03-31 11:02:27.808051 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.808069 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.808086 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.808098 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.808110 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808130 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808142 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808153 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808165 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.808180 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.808192 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.808454 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407973 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.808476 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407973 cr=0xa929b80)
2015-03-31 11:02:27.808479 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407973 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.808483 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407973 cr=0xa929b80) #1000006026a
2015-03-31 11:02:27.808485 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.808487 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.808488 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808503 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407973 cr=0xa929b80)
2015-03-31 11:02:27.808507 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.808523 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.808534 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808546 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.808561 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:27.808577 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.808587 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:27.808598 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808610 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.808622 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.808638 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.808654 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.808665 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.808677 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808689 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808700 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808712 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808724 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:27.808739 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.808751 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x2887cd10 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:27.808754 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.822422 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.822430 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.822443 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.822445 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) mark_dirty [inode 1000006b2db [2,head] /test_small/small5/blarg10064 auth v178737 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.822464 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10064)  mark_dirty [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178738 v=177720 ap=2+0 inode=0x3f34d778 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0]
2015-03-31 11:02:27.822475 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178738 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 76=76+0) hs=77+1527,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178738
2015-03-31 11:02:27.822488 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) mark_dirty_parent
2015-03-31 11:02:27.822494 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295308 pv3295314 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 76=76+0) n(v1 rc2015-03-31 11:03:04.000000 77=76+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.822512 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295314 v=3295308 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.822519 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295310 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382379=382372+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295310
2015-03-31 11:02:27.822532 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178739 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 77=77+0) hs=77+1527,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178739
2015-03-31 11:02:27.822542 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295311 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382380=382373+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295311
2015-03-31 11:02:27.822553 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2db [2,head] /test_small/small5/blarg10064 auth v178738 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f34d778]
2015-03-31 11:02:27.822566 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.822570 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27552 client_caps(grant ino 1000006b2db 1851536 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.822601 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178738 ap=2+0 inode=0x3f34d778 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0]
2015-03-31 11:02:27.822619 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407948 create #1000006026a/blarg10064 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.822634 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2db
2015-03-31 11:02:27.822638 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178738 ap=2+0 inode=0x3f34d778 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0]
2015-03-31 11:02:27.822657 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178738 ap=2+0 inode=0x3f34d778 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0]
2015-03-31 11:02:27.822664 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178738 ap=2+0 inode=0x3f34d778 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0]
2015-03-31 11:02:27.822672 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10064) auth_unpin by 0x3ce7d18 on [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178738 ap=1+0 inode=0x3f34d778 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0] now 1+0
2015-03-31 11:02:27.822686 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178738 ap=1+0 inode=0x3f34d778 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0]
2015-03-31 11:02:27.822693 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.822718 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178738 ap=1+0 inode=0x3f34d778 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7bc0]
2015-03-31 11:02:27.822727 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295310 pv3295314 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 78=77+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.822744 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295310 pv3295314 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 78=77+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.822758 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295310 pv3295314 ap=5+1 f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 78=77+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.822795 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407948 cr=0x25f4cd80)
2015-03-31 11:02:27.822812 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2876ad00 on [inode 1 [...2,head] / auth v53473 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:27.822833 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:27.822848 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10064) auth_unpin by 0x2876ad00 on [dentry #1/test_small/small5/blarg10064 [2,head] auth (dn sync l=1) (dversion lock) v=178738 inode=0x3f34d778 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce7bc0] now 0+0
2015-03-31 11:02:27.822857 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2876ad00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295311 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382380=382373+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:27.822870 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2876ad00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178739 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 77=77+0) hs=77+1527,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:27.822880 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295310 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 78=77+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:27.822914 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.822916 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.822922 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.822923 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) mark_dirty [inode 1000006b2dc [2,head] /test_small/small5/blarg10065 auth v178739 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.822937 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10065)  mark_dirty [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178740 v=177722 ap=2+0 inode=0x3f329be8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0]
2015-03-31 11:02:27.822946 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178740 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 77=77+0) hs=78+1526,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178740
2015-03-31 11:02:27.822957 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) mark_dirty_parent
2015-03-31 11:02:27.822959 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295310 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 77=77+0) n(v1 rc2015-03-31 11:03:04.000000 78=77+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.822974 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295314 v=3295310 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.822979 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295312 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382380=382373+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295312
2015-03-31 11:02:27.822991 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178741 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 78=78+0) hs=78+1526,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178741
2015-03-31 11:02:27.823000 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295313 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382381=382374+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295313
2015-03-31 11:02:27.823011 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2dc [2,head] /test_small/small5/blarg10065 auth v178740 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f329be8]
2015-03-31 11:02:27.823023 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.823025 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27553 client_caps(grant ino 1000006b2dc 1851537 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.823048 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178740 ap=2+0 inode=0x3f329be8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0]
2015-03-31 11:02:27.823058 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407958 create #1000006026a/blarg10065 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.823071 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2dc
2015-03-31 11:02:27.823075 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178740 ap=2+0 inode=0x3f329be8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0]
2015-03-31 11:02:27.823085 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178740 ap=2+0 inode=0x3f329be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0]
2015-03-31 11:02:27.823092 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178740 ap=2+0 inode=0x3f329be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0]
2015-03-31 11:02:27.823099 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10065) auth_unpin by 0x3ce7ef8 on [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178740 ap=1+0 inode=0x3f329be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0] now 1+0
2015-03-31 11:02:27.823106 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178740 ap=1+0 inode=0x3f329be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0]
2015-03-31 11:02:27.823113 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.823130 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178740 ap=1+0 inode=0x3f329be8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7da0]
2015-03-31 11:02:27.823138 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295312 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 79=78+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823153 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295312 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 79=78+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823167 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295312 pv3295314 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 79=78+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823191 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407958 cr=0xab83e80)
2015-03-31 11:02:27.823207 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73700 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.823229 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73700 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.823243 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10065) auth_unpin by 0x29a73700 on [dentry #1/test_small/small5/blarg10065 [2,head] auth (dn sync l=1) (dversion lock) v=178740 inode=0x3f329be8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce7da0] now 0+0
2015-03-31 11:02:27.823250 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a73700 on [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295313 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382381=382374+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:27.823263 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a73700 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178741 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 78=78+0) hs=78+1526,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:27.823273 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295312 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 79=78+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.823316 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.823318 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.823324 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.823325 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) mark_dirty [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178741 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.823338 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10066)  mark_dirty [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178742 v=177724 ap=2+0 inode=0x3f460e08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80]
2015-03-31 11:02:27.823347 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178742 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 78=78+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178742
2015-03-31 11:02:27.823357 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) mark_dirty_parent
2015-03-31 11:02:27.823359 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295312 pv3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 78=78+0) n(v1 rc2015-03-31 11:03:04.000000 79=78+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823373 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295314 v=3295312 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.823377 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295314 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382381=382374+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295314
2015-03-31 11:02:27.823389 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178743 v=178743 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178743
2015-03-31 11:02:27.823398 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295315 v=3295315 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382382=382375+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295315
2015-03-31 11:02:27.823408 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.823420 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.823422 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27554 client_caps(grant ino 1000006b2dd 1851538 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.823444 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178742 ap=2+0 inode=0x3f460e08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80]
2015-03-31 11:02:27.823453 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407968 create #1000006026a/blarg10066 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.823465 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2dd
2015-03-31 11:02:27.823468 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178742 ap=2+0 inode=0x3f460e08 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80]
2015-03-31 11:02:27.823477 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178742 ap=2+0 inode=0x3f460e08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80]
2015-03-31 11:02:27.823484 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178742 ap=2+0 inode=0x3f460e08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80]
2015-03-31 11:02:27.823491 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10066) auth_unpin by 0x3ce80d8 on [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178742 ap=1+0 inode=0x3f460e08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80] now 1+0
2015-03-31 11:02:27.823499 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178742 ap=1+0 inode=0x3f460e08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80]
2015-03-31 11:02:27.823505 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.823522 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.823534 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178742 ap=1+0 inode=0x3f460e08 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce7f80]
2015-03-31 11:02:27.823542 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823557 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823571 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823584 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:27.823587 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.823600 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.823614 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:27.823615 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407973 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.823619 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407973 cr=0xa929b80) #1000006026a
2015-03-31 11:02:27.823622 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.823623 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.823633 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823646 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407973 cr=0xa929b80)
2015-03-31 11:02:27.823650 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.823668 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.823680 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823692 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.823708 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.823720 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823734 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.823757 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.823769 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823781 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823800 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823812 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823824 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823836 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823848 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823860 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823873 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31472} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.823894 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40407973 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.823899 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407973 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.823913 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.823925 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.823931 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31473
2015-03-31 11:02:27.823933 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31473 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.823950 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407973 cr=0xa929b80)
2015-03-31 11:02:27.823968 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.823987 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.824004 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.824017 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.824029 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824047 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824060 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824072 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824084 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824096 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824110 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824121 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824133 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824143 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824154 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72d00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.824171 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72d00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.824183 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72d00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.824212 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824226 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824238 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824250 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824274 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407968 cr=0x8f09180)
2015-03-31 11:02:27.824289 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a73c00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.824316 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a73c00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.824328 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10066) auth_unpin by 0x29a73c00 on [dentry #1/test_small/small5/blarg10066 [2,head] auth (dn sync l=1) (dversion lock) v=178742 inode=0x3f460e08 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce7f80] now 0+0
2015-03-31 11:02:27.824336 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a73c00 on [dir 10000000000 /test_small/ [2,head] auth v=3295315 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382382=382375+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:27.824349 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a73c00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178743 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:27.824358 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a73c00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.824420 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e58 follows 0 op update
2015-03-31 11:02:27.824429 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824445 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.824448 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.824470 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.824471 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824480 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824490 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.824492 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824498 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824507 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824514 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.824515 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824524 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824532 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824539 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824546 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.824548 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.824549 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e58 [2,head] /test_small/small1/blarg10066 auth v136950 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aad70]
2015-03-31 11:02:27.824557 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.824577 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407974 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.824600 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407974 cr=0xaeef580)
2015-03-31 11:02:27.824603 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407974 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.824607 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407974 cr=0xaeef580) #1000006b2dd
2015-03-31 11:02:27.824609 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2dd snap head
2015-03-31 11:02:27.824610 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.824612 7fbe462be700 10 mds.0.server ref is [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.824627 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407974 cr=0xaeef580)
2015-03-31 11:02:27.824630 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.824648 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.824661 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.824672 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.824691 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.824722 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.824739 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.824751 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.824763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.824774 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.824793 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f460e08]
2015-03-31 11:02:27.824803 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_pin by 0x29a72800 on [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f460e08] now 1+0
2015-03-31 11:02:27.824815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.824832 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.824849 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.824861 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.824873 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.824896 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.824908 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.824926 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407974 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.824931 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407974 getattr Xs #1000006b2dd 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.824945 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.824949 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.824954 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:27.824958 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.824975 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407974 cr=0xaeef580)
2015-03-31 11:02:27.824993 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825011 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825028 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825041 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825052 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825070 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825081 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.825092 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f460e08]
2015-03-31 11:02:27.825103 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.825120 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.825132 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:27.825144 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) auth_unpin by 0x29a72800 on [inode 1000006b2dd [2,head] /test_small/small5/blarg10066 auth v178742 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f460e08] now 0+0
2015-03-31 11:02:27.825192 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407975 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.825213 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407975 cr=0xab84380)
2015-03-31 11:02:27.825215 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407975 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.825219 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407975 cr=0xab84380) #1000006026a
2015-03-31 11:02:27.825221 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.825222 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.825223 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.825238 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407975 cr=0xab84380)
2015-03-31 11:02:27.825241 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.825258 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.825269 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.825280 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.825295 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.825310 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.825320 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.825332 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.825350 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.825363 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825378 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825394 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825406 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825417 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825436 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825448 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825460 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31473} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825478 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407975 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.825483 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407975 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.825494 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.825497 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.825501 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31474
2015-03-31 11:02:27.825504 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31474 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.825518 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407975 cr=0xab84380)
2015-03-31 11:02:27.825527 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825545 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825562 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825574 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825592 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825604 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825616 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825627 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.825638 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.825654 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.825666 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.825713 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407976 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.825732 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407976 cr=0x237c4b00)
2015-03-31 11:02:27.825734 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407976 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.825737 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407976 cr=0x237c4b00) #10000004e78
2015-03-31 11:02:27.825740 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e78 snap head
2015-03-31 11:02:27.825741 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.825742 7fbe462be700 10 mds.0.server ref is [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.825754 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407976 cr=0x237c4b00)
2015-03-31 11:02:27.825757 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.825774 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.825790 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.825800 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.825806 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.825828 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.825844 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.825855 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.825874 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.825892 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a72800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.825903 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.825909 7fbe462be700 10 mds.0.cache.ino(10000004e78) auth_pin by 0x29a72800 on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438] now 1+0
2015-03-31 11:02:27.825917 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825934 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.825950 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825962 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.825979 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.825990 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.826001 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826008 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826016 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826023 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826039 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407976 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826044 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407976 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826056 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.826059 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.826063 7fbe462be700 10 mds.0.cache.ino(10000004e78) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.826066 7fbe462be700 10 mds.0.cache.ino(10000004e78) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.826082 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407976 cr=0x237c4b00)
2015-03-31 11:02:27.826091 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.826109 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.826127 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.826139 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.826157 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.826167 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.826178 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826185 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826193 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826200 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.826207 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.826224 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.826236 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a72800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.826249 7fbe462be700 10 mds.0.cache.ino(10000004e78) auth_unpin by 0x29a72800 on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aa438] now 0+0
2015-03-31 11:02:27.826286 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407977 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826307 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407977 cr=0x6fc8f00)
2015-03-31 11:02:27.826310 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407977 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826313 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407977 cr=0x6fc8f00) #1000006026a
2015-03-31 11:02:27.826315 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.826316 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.826317 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.826331 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407977 cr=0x6fc8f00)
2015-03-31 11:02:27.826334 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.826350 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.826361 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.826372 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.826393 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.826409 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.826420 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.826438 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.826450 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.826462 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.826479 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.826495 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.826507 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.826520 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826532 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826544 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826555 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31474} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826575 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407977 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826580 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407977 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826591 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.826594 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.826599 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31475
2015-03-31 11:02:27.826601 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31475 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.826616 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407977 cr=0x6fc8f00)
2015-03-31 11:02:27.826625 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.826642 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.826659 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.826671 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.826690 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826701 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826712 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826723 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.826734 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.826751 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.826762 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.826813 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407978 lookup #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826832 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407978 cr=0x25e3e180)
2015-03-31 11:02:27.826834 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407978 lookup #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826837 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407978 cr=0x25e3e180) #1000006026a/blarg10067
2015-03-31 11:02:27.826839 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.826842 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10067 [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock) v=177726 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.826851 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.826853 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407978 lookup #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.826862 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.826874 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407978 cr=0x25e3e180)
2015-03-31 11:02:27.827243 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407979 lookup #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.827266 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407979 cr=0x43d2f80)
2015-03-31 11:02:27.827269 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407979 lookup #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.827273 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407979 cr=0x43d2f80) #1000006026a/blarg10067
2015-03-31 11:02:27.827275 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.827278 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10067 [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock) v=177726 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.827287 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.827289 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407979 lookup #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.827302 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.827316 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407979 cr=0x43d2f80)
2015-03-31 11:02:27.827696 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407980 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.827720 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407980 cr=0x929aa80)
2015-03-31 11:02:27.827724 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407980 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.827728 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407980 cr=0x929aa80) #10000004e78
2015-03-31 11:02:27.827730 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e78 snap head
2015-03-31 11:02:27.827732 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.827733 7fbe462be700 10 mds.0.server ref is [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.827745 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407980 cr=0x929aa80)
2015-03-31 11:02:27.827748 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.827768 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.827781 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.827797 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.827804 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.827821 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.827838 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.827849 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.827862 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.827871 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a72800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.827881 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.827888 7fbe462be700 10 mds.0.cache.ino(10000004e78) auth_pin by 0x29a72800 on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438] now 1+0
2015-03-31 11:02:27.827897 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.827922 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.827938 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.827950 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.827961 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.827972 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.827983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.827990 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.827997 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.828005 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.828021 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407980 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828026 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407980 getattr Xs #10000004e78 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828040 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.828044 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.828049 7fbe462be700 10 mds.0.cache.ino(10000004e78) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.828053 7fbe462be700 10 mds.0.cache.ino(10000004e78) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.828069 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407980 cr=0x929aa80)
2015-03-31 11:02:27.828087 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.828106 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.828123 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.828135 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.828146 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.828163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.828174 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.828182 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.828190 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.828203 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9aa438]
2015-03-31 11:02:27.828209 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.828226 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.828239 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a72800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.828250 7fbe462be700 10 mds.0.cache.ino(10000004e78) auth_unpin by 0x29a72800 on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9aa438] now 0+0
2015-03-31 11:02:27.828289 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407981 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828311 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407981 cr=0x23fbe180)
2015-03-31 11:02:27.828313 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407981 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828317 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407981 cr=0x23fbe180) #1000006026a
2015-03-31 11:02:27.828319 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.828320 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.828321 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.828336 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407981 cr=0x23fbe180)
2015-03-31 11:02:27.828339 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.828356 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.828367 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.828378 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.828394 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.828411 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.828422 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.828434 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.828445 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.828456 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.828473 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.828489 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.828501 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.828513 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828524 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828543 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828564 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31475} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828584 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407981 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828588 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407981 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828601 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.828605 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.828609 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31476
2015-03-31 11:02:27.828612 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31476 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.828626 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407981 cr=0x23fbe180)
2015-03-31 11:02:27.828643 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.828661 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.828678 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.828690 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.828701 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828720 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828732 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828742 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.828753 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.828769 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.828786 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.828872 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407982 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828892 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407982 cr=0x52d2300)
2015-03-31 11:02:27.828894 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407982 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.828898 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407982 cr=0x52d2300) #1000006026a
2015-03-31 11:02:27.828900 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.828901 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.828902 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.828917 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407982 cr=0x52d2300)
2015-03-31 11:02:27.828919 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.828935 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.828946 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.828957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.828972 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.828988 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.829000 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.829012 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.829022 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.829034 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829050 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829078 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829089 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829100 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829111 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829123 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31476} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829143 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407982 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.829148 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407982 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.829164 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.829167 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.829179 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31477
2015-03-31 11:02:27.829181 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31477 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.829196 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407982 cr=0x52d2300)
2015-03-31 11:02:27.829212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829247 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829258 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829270 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829289 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829301 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829317 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829328 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.829344 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.829355 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.829394 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407983 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.829415 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407983 cr=0xb260780)
2015-03-31 11:02:27.829417 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407983 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.829420 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407983 cr=0xb260780) #1000006026a
2015-03-31 11:02:27.829422 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.829423 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.829424 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.829438 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407983 cr=0xb260780)
2015-03-31 11:02:27.829440 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.829456 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.829467 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.829478 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.829492 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.829508 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.829527 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.829538 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.829549 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.829561 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829584 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829600 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829611 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829626 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829637 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829648 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829660 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31477} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829678 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407983 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.829682 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407983 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.829693 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.829697 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.829701 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31478
2015-03-31 11:02:27.829703 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31478 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.829717 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407983 cr=0xb260780)
2015-03-31 11:02:27.829734 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829751 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.829767 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829779 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.829797 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31478} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829809 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31478} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829827 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31478} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829838 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31478} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.829849 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.829865 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.829876 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31478} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.870085 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407984 create #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.870108 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407984 cr=0x26906680)
2015-03-31 11:02:27.870113 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870133 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:27.870134 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870148 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.870150 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870164 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870176 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870187 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870197 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.870199 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407984 create #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.870202 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10067
2015-03-31 11:02:27.870204 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407984 cr=0x26906680) #1000006026a/blarg10067
2015-03-31 11:02:27.870206 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10067
2015-03-31 11:02:27.870208 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.870209 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.870210 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178743 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.870220 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178743 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.870227 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10067 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178743 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.870239 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407984 cr=0x26906680)
2015-03-31 11:02:27.870246 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.870263 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.870274 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock) v=177726 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870282 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870293 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.870309 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.870324 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.870341 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.870362 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock) v=177726 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870367 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10067) auth_pin by 0x29a72800 on [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock) v=177726 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160] now 1+0
2015-03-31 11:02:27.870375 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.870386 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.870399 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock) v=177726 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870406 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177726 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870412 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177726 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870419 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177726 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870426 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177726 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870432 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10067) auth_pin by 0x3ce82b8 on [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177726 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160] now 2+0
2015-03-31 11:02:27.870440 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a72800) [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dn xlock x=1 by 0x29a72800) (dversion lock w=1 last_client=708310) v=177726 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870447 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.870465 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.870481 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.870497 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.870514 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.870526 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.870539 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.870550 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.870562 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870574 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870585 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870597 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870609 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870620 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870632 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870644 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870656 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870668 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870679 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870701 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2de ([1000006b2df~344], 836 left)
2015-03-31 11:02:27.870705 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.870707 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2de [2,head] #1000006b2de auth v1 s=0 n() (iversion lock) 0x3f429908]
2015-03-31 11:02:27.870712 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178744
2015-03-31 11:02:27.870714 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10067)  pre_dirty [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dn xlock x=1 by 0x29a72800) (dversion lock w=1 last_client=708310) pv=178744 v=177726 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.870724 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f429908]
2015-03-31 11:02:27.870733 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a72800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178743 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:27.870744 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x4e3b4f0
2015-03-31 11:02:27.870745 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178745
2015-03-31 11:02:27.870747 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178745 v=178743 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.870756 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178745 v=178743 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.870765 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f429908]
2015-03-31 11:02:27.870772 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.870774 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870798 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295316
2015-03-31 11:02:27.870800 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295316 v=3295314 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.870805 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295316 (current v 3295314)
2015-03-31 11:02:27.870807 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178745 v=178743 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=79+1525,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.870817 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.870819 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a72800 on [dir 10000000000 /test_small/ [2,head] auth v=3295315 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382382=382375+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:27.870831 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9933de0
2015-03-31 11:02:27.870832 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295317
2015-03-31 11:02:27.870833 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.870847 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.870860 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870874 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.870876 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.923733 < 1, stopping
2015-03-31 11:02:27.870881 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.870894 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.870899 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295316 v=3295314 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.870905 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31478} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.870923 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f429908]
2015-03-31 11:02:27.870931 7fbe462be700 10 mds.0.cache.ino(1000006b2de) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.870934 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f429908]
2015-03-31 11:02:27.870944 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.870945 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.870955 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.870963 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.870971 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.870980 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.870988 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.870996 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871004 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871012 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871020 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871027 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871035 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871043 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871050 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871057 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f429908]
2015-03-31 11:02:27.871070 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.871071 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.871074 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f429908 tracedn 0x3ce8160
2015-03-31 11:02:27.871076 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a72800) [dentry #1/test_small/small5/blarg10067 [2,head] auth NULL (dn xlock x=1 by 0x29a72800) (dversion lock w=1 last_client=708310) pv=178744 v=177726 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8160]
2015-03-31 11:02:27.871085 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407984 create #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.871095 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.871099 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31479
2015-03-31 11:02:27.871102 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31479 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.871109 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.871113 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.871116 7fbe462be700 10 mds.0.cache.ino(1000006b2de) including xattrs version 0
2015-03-31 11:02:27.871154 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871182 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871201 7fbe406af700  5 mds.0.log _submit_thread 5419669543~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.871200 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871214 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871239 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871251 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871264 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871275 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871286 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871299 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871312 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871324 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871336 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871347 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871373 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407985 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.871395 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407985 cr=0x45a2d00)
2015-03-31 11:02:27.871398 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407985 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.871402 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407985 cr=0x45a2d00) #1000006026a
2015-03-31 11:02:27.871404 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.871406 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.871407 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871424 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407985 cr=0x45a2d00)
2015-03-31 11:02:27.871427 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871444 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871456 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871468 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871501 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.871522 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871539 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.871551 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871563 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.871575 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871591 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871607 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871618 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871628 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871640 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871652 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871664 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31479} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871684 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407985 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.871689 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407985 getattr Xs #1000006026a 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.871701 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.871705 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.871710 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31480
2015-03-31 11:02:27.871712 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31480 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.871728 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407985 cr=0x45a2d00)
2015-03-31 11:02:27.871737 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871756 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871773 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871790 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.871810 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871823 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871836 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871847 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.871858 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.871874 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.871886 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.871930 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407986 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.871949 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407986 cr=0x968eb80)
2015-03-31 11:02:27.871951 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407986 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.871954 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407986 cr=0x968eb80) #1000006b2de
2015-03-31 11:02:27.871956 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2de snap head
2015-03-31 11:02:27.871958 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.871959 7fbe462be700 10 mds.0.server ref is [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f429908]
2015-03-31 11:02:27.871974 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407986 cr=0x968eb80)
2015-03-31 11:02:27.871976 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.871994 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872006 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872018 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f429908]
2015-03-31 11:02:27.872029 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872051 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.872067 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872081 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.872093 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872104 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.872116 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f429908]
2015-03-31 11:02:27.872127 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_pin by 0x29a74600 on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f429908] now 1+0
2015-03-31 11:02:27.872138 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872154 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872170 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872182 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872193 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872206 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872217 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.872229 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.872246 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407986 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.872250 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407986 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.872262 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.872266 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.872270 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.872274 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.872289 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407986 cr=0x968eb80)
2015-03-31 11:02:27.872305 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872324 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872341 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872353 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872365 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872384 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872396 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.872408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.872419 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.872436 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.872448 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.872460 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_unpin by 0x29a74600 on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f429908] now 0+0
2015-03-31 11:02:27.872715 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407987 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.872736 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407987 cr=0x9cc5000)
2015-03-31 11:02:27.872738 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407987 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.872742 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407987 cr=0x9cc5000) #1000006b2de
2015-03-31 11:02:27.872744 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2de snap head
2015-03-31 11:02:27.872745 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.872746 7fbe462be700 10 mds.0.server ref is [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.872761 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407987 cr=0x9cc5000)
2015-03-31 11:02:27.872763 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872781 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872798 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872810 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.872821 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872836 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.872853 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872864 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.872876 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872887 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.872899 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.872910 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_pin by 0x29a74600 on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f429908] now 1+0
2015-03-31 11:02:27.872921 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872938 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.872954 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872973 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.872985 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.872998 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873010 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.873021 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.873039 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407987 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.873043 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407987 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.873055 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.873059 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.873063 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.873067 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.873082 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407987 cr=0x9cc5000)
2015-03-31 11:02:27.873099 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.873117 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.873133 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.873145 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.873157 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873169 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873179 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.873190 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.873201 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.873217 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.873229 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.873241 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_unpin by 0x29a74600 on [inode 1000006b2de [2,head] {#1000006b2de /test_small/small5/blarg10067} auth v178744 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f429908] now 0+0
2015-03-31 11:02:27.873364 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407988 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.873384 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407988 cr=0xb262580)
2015-03-31 11:02:27.873386 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407988 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.873389 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407988 cr=0xb262580) #1000006026a
2015-03-31 11:02:27.873391 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.873392 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.873394 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873411 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407988 cr=0xb262580)
2015-03-31 11:02:27.873414 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.873431 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.873442 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873462 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.873477 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.873493 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.873504 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.873516 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.873540 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.873556 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.873572 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.873584 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.873596 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873607 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873624 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873645 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873657 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:27.873670 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.873682 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x28878b70 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:27.873685 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.887164 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:27.887171 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:27.887184 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:27.887186 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) mark_dirty [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178743 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.887205 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10067)  mark_dirty [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178744 v=177726 ap=2+0 inode=0x3f429908 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160]
2015-03-31 11:02:27.887215 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178745 v=178744 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 79=79+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178744
2015-03-31 11:02:27.887227 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) mark_dirty_parent
2015-03-31 11:02:27.887230 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295314 pv3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 79=79+0) n(v1 rc2015-03-31 11:03:04.000000 80=79+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.887247 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295316 v=3295314 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.887252 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295317 v=3295316 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382382=382375+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295316
2015-03-31 11:02:27.887265 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178745 v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178745
2015-03-31 11:02:27.887274 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295317 v=3295317 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382383=382376+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295317
2015-03-31 11:02:27.887284 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.887297 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:27.887300 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27555 client_caps(grant ino 1000006b2de 1851539 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:04.000000) v4
2015-03-31 11:02:27.887325 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178744 ap=2+0 inode=0x3f429908 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160]
2015-03-31 11:02:27.887339 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407984 create #1000006026a/blarg10067 2015-03-31 11:03:04.000000) v2
2015-03-31 11:02:27.887361 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2de
2015-03-31 11:02:27.887364 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178744 ap=2+0 inode=0x3f429908 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160]
2015-03-31 11:02:27.887375 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178744 ap=2+0 inode=0x3f429908 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160]
2015-03-31 11:02:27.887382 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178744 ap=2+0 inode=0x3f429908 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160]
2015-03-31 11:02:27.887389 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10067) auth_unpin by 0x3ce82b8 on [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178744 ap=1+0 inode=0x3f429908 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160] now 1+0
2015-03-31 11:02:27.887403 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178744 ap=1+0 inode=0x3f429908 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160]
2015-03-31 11:02:27.887409 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.887435 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.887448 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178744 ap=1+0 inode=0x3f429908 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8160]
2015-03-31 11:02:27.887456 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.887472 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.887486 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.887499 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:27.887502 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:27.887514 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.887527 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:27.887529 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40407988 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.887532 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407988 cr=0xb262580) #1000006026a
2015-03-31 11:02:27.887535 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.887536 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.887537 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887551 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40407988 cr=0xb262580)
2015-03-31 11:02:27.887554 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.887572 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.887584 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887596 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.887612 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.887624 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887635 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.887652 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.887664 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887676 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887689 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887701 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887713 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31480} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.887733 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:27.887735 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178745 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.887745 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:27.887751 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:27.887756 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887761 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:27.887764 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887768 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:27.887770 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887773 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:27.887775 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887779 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:27.887781 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887792 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:27.887794 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887798 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.887800 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887804 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.887806 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887810 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.887812 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887815 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.887817 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887820 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.887822 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887825 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.887827 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887831 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:27.887833 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887836 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.887838 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887841 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.887843 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887847 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.887849 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887853 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.887855 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887858 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.887860 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887864 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.887866 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887869 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:27.887871 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887875 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.887877 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887887 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.887890 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887893 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.887895 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887898 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.887900 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887913 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.887915 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887925 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:27.887927 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887930 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.887932 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887935 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.887945 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887948 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.887950 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887953 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.887963 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887967 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.887969 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887972 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.887974 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887977 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:27.887979 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887982 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.887984 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887987 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.887989 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887993 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.887995 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.887998 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.888000 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888003 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.888004 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888008 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:27.888010 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888013 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.888015 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888018 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.888020 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888024 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.888026 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888029 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.888031 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888034 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.888036 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888039 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.888041 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888045 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:27.888046 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888050 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.888052 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888055 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.888057 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888060 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.888062 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888065 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.888067 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888070 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:27.888072 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888075 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.888077 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888080 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.888082 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888085 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.888087 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888090 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.888092 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888095 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.888097 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888100 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:27.888102 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888105 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.888107 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888111 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.888113 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888116 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.888118 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888121 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.888123 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888126 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.888128 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888131 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.888133 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888136 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:27.888138 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888141 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.888143 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888146 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.888148 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888151 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.888153 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888156 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.888158 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888161 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.888163 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888166 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.888168 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888171 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:27.888173 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888176 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.888178 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888181 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.888183 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888186 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.888188 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888192 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.888194 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888197 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:27.888199 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888202 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.888204 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888207 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.888209 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888212 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.888214 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888218 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:27.888220 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888273 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407988 readdir #1000006026a 2015-03-31 11:03:05.000000) v2 readdir num=80 bytes=21839 end=1 complete=1
2015-03-31 11:02:27.888280 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40407988 readdir #1000006026a 2015-03-31 11:03:05.000000) v2 readdir num=80 end=1 complete=1
2015-03-31 11:02:27.888284 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407988 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.888295 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.888300 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.888304 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31481
2015-03-31 11:02:27.888307 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31481 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.888322 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407988 cr=0xb262580)
2015-03-31 11:02:27.888339 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.888359 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.888376 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.888388 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.888401 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888413 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888431 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888443 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888457 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888467 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888479 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a74600 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.888495 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a74600 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.888507 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a74600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.888542 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888556 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888567 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888579 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.888603 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407984 cr=0x26906680)
2015-03-31 11:02:27.888611 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a72800 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.888628 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a72800 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.888640 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10067) auth_unpin by 0x29a72800 on [dentry #1/test_small/small5/blarg10067 [2,head] auth (dn sync l=1) (dversion lock) v=178744 inode=0x3f429908 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce8160] now 0+0
2015-03-31 11:02:27.888649 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a72800 on [dir 10000000000 /test_small/ [2,head] auth v=3295317 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382383=382376+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:27.888662 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a72800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178745 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:27.888671 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a72800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.888724 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e78 follows 0 op update
2015-03-31 11:02:27.888733 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888748 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.888750 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.888773 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.888774 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888789 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888799 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.888801 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888815 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888825 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888833 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.888834 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888843 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888851 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888853 7fbe406af700  5 mds.0.log _submit_thread 5419671183~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.888859 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888865 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888872 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888878 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888885 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.888896 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.888921 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407989 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.888944 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407989 cr=0x26900f00)
2015-03-31 11:02:27.888947 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407989 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.888951 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407989 cr=0x26900f00) #1000006b2de
2015-03-31 11:02:27.888953 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2de snap head
2015-03-31 11:02:27.888954 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.888955 7fbe462be700 10 mds.0.server ref is [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.888978 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407989 cr=0x26900f00)
2015-03-31 11:02:27.888981 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.888999 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.889011 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.889023 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.889034 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.889050 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.889067 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.889078 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.889091 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.889102 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.889114 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.889124 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_pin by 0x2367ad00 on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908] now 1+0
2015-03-31 11:02:27.889144 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.889161 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.889178 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.889191 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.889203 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.889214 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.889226 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.889237 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.889255 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407989 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.889260 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407989 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.889274 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.889278 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.889283 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:27.889287 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.889303 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407989 cr=0x26900f00)
2015-03-31 11:02:27.889321 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.889339 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.889356 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.889368 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.889380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.889397 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.889408 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.889419 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.889430 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.889446 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.889458 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:27.889470 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_unpin by 0x2367ad00 on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908] now 0+0
2015-03-31 11:02:27.890635 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e78 follows 0 op update
2015-03-31 11:02:27.890639 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890652 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.890654 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.890674 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.890675 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890685 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890694 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.890696 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890704 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890712 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890719 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.890720 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890729 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890736 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890743 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890750 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.890751 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.890753 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e78 [2,head] /test_small/small1/blarg10067 auth v136952 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9aa438]
2015-03-31 11:02:27.890761 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.930086 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407990 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.930113 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407990 cr=0x2645bc00)
2015-03-31 11:02:27.930118 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407990 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.930122 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407990 cr=0x2645bc00) #1000006b2de
2015-03-31 11:02:27.930124 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2de snap head
2015-03-31 11:02:27.930126 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.930127 7fbe462be700 10 mds.0.server ref is [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.930145 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407990 cr=0x2645bc00)
2015-03-31 11:02:27.930148 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.930168 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.930181 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.930193 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.930203 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.930220 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.930236 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.930255 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.930268 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.930279 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.930291 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908]
2015-03-31 11:02:27.930309 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_pin by 0x2367ad00 on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908] now 1+0
2015-03-31 11:02:27.930320 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.930344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.930361 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.930373 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.930385 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.930397 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.930409 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.930420 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.930438 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407990 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.930443 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407990 getattr Xs #1000006b2de 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.930455 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.930459 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.930464 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:27.930468 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.930485 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407990 cr=0x2645bc00)
2015-03-31 11:02:27.930502 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.930521 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.930538 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.930550 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.930562 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.930578 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.930589 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.930600 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f429908]
2015-03-31 11:02:27.930611 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.930628 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.930640 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:27.930652 7fbe462be700 10 mds.0.cache.ino(1000006b2de) auth_unpin by 0x2367ad00 on [inode 1000006b2de [2,head] /test_small/small5/blarg10067 auth v178744 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f429908] now 0+0
2015-03-31 11:02:27.930949 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407991 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.930969 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407991 cr=0x8f0cd80)
2015-03-31 11:02:27.930972 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407991 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.930975 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407991 cr=0x8f0cd80) #10000004e74
2015-03-31 11:02:27.930977 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e74 snap head
2015-03-31 11:02:27.930979 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.930980 7fbe462be700 10 mds.0.server ref is [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.930992 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407991 cr=0x8f0cd80)
2015-03-31 11:02:27.930995 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.931012 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.931024 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.931035 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.931041 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.931057 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.931073 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.931084 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.931096 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.931106 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.931116 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.931123 7fbe462be700 10 mds.0.cache.ino(10000004e74) auth_pin by 0x2367ad00 on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00] now 1+0
2015-03-31 11:02:27.931131 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.931148 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.931165 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.931177 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.931189 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.931207 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.931218 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931233 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931240 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931247 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931263 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407991 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.931268 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407991 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.931280 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.931285 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.931289 7fbe462be700 10 mds.0.cache.ino(10000004e74) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:27.931292 7fbe462be700 10 mds.0.cache.ino(10000004e74) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.931307 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407991 cr=0x8f0cd80)
2015-03-31 11:02:27.931324 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.931342 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.931358 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.931371 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.931382 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.931401 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.931412 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931420 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.931442 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.931458 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.931470 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.931481 7fbe462be700 10 mds.0.cache.ino(10000004e74) auth_unpin by 0x2367ad00 on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a9b00] now 0+0
2015-03-31 11:02:27.931836 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407992 lookup #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.931858 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407992 cr=0x26d3cb00)
2015-03-31 11:02:27.931862 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407992 lookup #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.931865 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407992 cr=0x26d3cb00) #1000006026a/blarg10068
2015-03-31 11:02:27.931867 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.931870 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10068 [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock) v=177728 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.931880 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.931881 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407992 lookup #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.931894 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.931908 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407992 cr=0x26d3cb00)
2015-03-31 11:02:27.932396 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407993 lookup #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.932418 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407993 cr=0x26d3fd00)
2015-03-31 11:02:27.932422 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407993 lookup #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.932425 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407993 cr=0x26d3fd00) #1000006026a/blarg10068
2015-03-31 11:02:27.932428 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.932431 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10068 [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock) v=177728 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.932440 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:27.932441 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40407993 lookup #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.932453 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.932466 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407993 cr=0x26d3fd00)
2015-03-31 11:02:27.932962 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407994 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.932986 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407994 cr=0xa255f00)
2015-03-31 11:02:27.932990 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407994 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.932993 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407994 cr=0xa255f00) #10000004e74
2015-03-31 11:02:27.932995 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e74 snap head
2015-03-31 11:02:27.932997 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.932998 7fbe462be700 10 mds.0.server ref is [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.933012 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407994 cr=0xa255f00)
2015-03-31 11:02:27.933016 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.933036 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.933049 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.933060 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.933068 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.933084 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.933101 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.933112 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.933125 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:27.933135 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:27.933146 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.933153 7fbe462be700 10 mds.0.cache.ino(10000004e74) auth_pin by 0x2367ad00 on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00] now 1+0
2015-03-31 11:02:27.933162 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.933186 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.933208 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.933220 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.933232 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.933243 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.933254 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933262 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933269 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933277 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933293 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407994 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.933298 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407994 getattr Xs #10000004e74 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.933311 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.933316 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.933322 7fbe462be700 10 mds.0.cache.ino(10000004e74) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:27.933327 7fbe462be700 10 mds.0.cache.ino(10000004e74) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.933343 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407994 cr=0xa255f00)
2015-03-31 11:02:27.933361 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.933380 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.933397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.933409 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.933421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.933435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:27.933446 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933453 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a9b00]
2015-03-31 11:02:27.933476 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.933493 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.933506 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367ad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:27.933516 7fbe462be700 10 mds.0.cache.ino(10000004e74) auth_unpin by 0x2367ad00 on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a9b00] now 0+0
2015-03-31 11:02:27.933875 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407995 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.933899 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407995 cr=0xa255a00)
2015-03-31 11:02:27.933902 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407995 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.933906 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407995 cr=0xa255a00) #1000006026a
2015-03-31 11:02:27.933908 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.933910 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.933911 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.933931 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407995 cr=0xa255a00)
2015-03-31 11:02:27.933934 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.933953 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.933965 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.933977 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.933993 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.934010 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.934021 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.934033 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934045 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:27.934057 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.934073 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.934097 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.934109 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.934129 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934140 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934152 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934164 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31481} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934183 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407995 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.934188 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407995 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.934202 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.934206 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.934212 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31482
2015-03-31 11:02:27.934215 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31482 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.934231 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407995 cr=0xa255a00)
2015-03-31 11:02:27.934249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.934268 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.934286 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.934298 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.934310 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31482} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934327 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31482} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934338 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31482} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934349 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+0 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31482} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.934361 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:27.934377 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:27.934389 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31482} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:27.934777 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407996 create #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.934806 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407996 cr=0xa256e00)
2015-03-31 11:02:27.934810 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934830 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:27.934832 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934845 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.934847 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934860 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934872 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934883 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934893 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.934895 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407996 create #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.934898 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10068
2015-03-31 11:02:27.934900 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40407996 cr=0xa256e00) #1000006026a/blarg10068
2015-03-31 11:02:27.934902 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10068
2015-03-31 11:02:27.934904 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:27.934905 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.934906 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178745 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.934915 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178745 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.934922 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10068 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178745 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:27.934934 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407996 cr=0xa256e00)
2015-03-31 11:02:27.934940 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.934958 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.934970 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock) v=177728 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.934977 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.934996 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:27.935020 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.935037 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:27.935049 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:27.935061 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock) v=177728 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935067 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10068) auth_pin by 0x2367ad00 on [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock) v=177728 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340] now 1+0
2015-03-31 11:02:27.935073 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=0+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:27.935084 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.935096 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock) v=177728 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935103 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177728 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935110 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177728 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935116 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177728 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935123 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177728 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935130 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10068) auth_pin by 0x3ce8498 on [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177728 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340] now 2+0
2015-03-31 11:02:27.935137 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367ad00) [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dn xlock x=1 by 0x2367ad00) (dversion lock w=1 last_client=708310) v=177728 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935144 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935162 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935179 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935195 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935211 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935223 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935235 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935247 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935281 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935292 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935305 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935316 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935328 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935340 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935351 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935362 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935374 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935395 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2df ([1000006b2e0~343], 835 left)
2015-03-31 11:02:27.935399 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:27.935404 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2df [2,head] #1000006b2df auth v1 s=0 n() (iversion lock) 0x3f433ef8]
2015-03-31 11:02:27.935411 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178746
2015-03-31 11:02:27.935412 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10068)  pre_dirty [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dn xlock x=1 by 0x2367ad00) (dversion lock w=1 last_client=708310) pv=178746 v=177728 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935423 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f433ef8]
2015-03-31 11:02:27.935432 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367ad00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:27.935443 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc6caf0
2015-03-31 11:02:27.935445 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178747
2015-03-31 11:02:27.935446 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178747 v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.935455 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178747 v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.935464 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f433ef8]
2015-03-31 11:02:27.935471 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.935474 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935491 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295318
2015-03-31 11:02:27.935492 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295318 v=3295316 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.935497 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295318 (current v 3295316)
2015-03-31 11:02:27.935498 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178747 v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:27.935506 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:27.935508 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367ad00 on [dir 10000000000 /test_small/ [2,head] auth v=3295317 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382383=382376+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:27.935519 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x4ac9e40
2015-03-31 11:02:27.935521 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295319
2015-03-31 11:02:27.935522 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935536 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935549 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935562 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:27.935564 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.988428 < 1, stopping
2015-03-31 11:02:27.935569 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935582 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:27.935587 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295318 v=3295316 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:27.935593 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31482} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935610 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f433ef8]
2015-03-31 11:02:27.935618 7fbe462be700 10 mds.0.cache.ino(1000006b2df) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:27.935621 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935630 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.935632 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935642 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935650 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935658 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935667 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935675 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935684 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935692 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935700 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935707 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935715 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935723 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935731 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935738 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935747 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f433ef8]
2015-03-31 11:02:27.935759 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.935761 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:27.935763 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f433ef8 tracedn 0x3ce8340
2015-03-31 11:02:27.935766 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367ad00) [dentry #1/test_small/small5/blarg10068 [2,head] auth NULL (dn xlock x=1 by 0x2367ad00) (dversion lock w=1 last_client=708310) pv=178746 v=177728 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8340]
2015-03-31 11:02:27.935775 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40407996 create #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.935790 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.935794 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31483
2015-03-31 11:02:27.935796 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31483 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.935803 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:27.935807 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:27.935810 7fbe462be700 10 mds.0.cache.ino(1000006b2df) including xattrs version 0
2015-03-31 11:02:27.935850 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935878 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935895 7fbe406af700  5 mds.0.log _submit_thread 5419672042~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:27.935896 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935911 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.935934 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935946 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935958 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935969 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.935980 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.935994 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936006 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936017 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936029 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936040 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936321 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407997 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.936343 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407997 cr=0xa257300)
2015-03-31 11:02:27.936346 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407997 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.936350 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407997 cr=0xa257300) #1000006b2df
2015-03-31 11:02:27.936352 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2df snap head
2015-03-31 11:02:27.936354 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.936355 7fbe462be700 10 mds.0.server ref is [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f433ef8]
2015-03-31 11:02:27.936370 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407997 cr=0xa257300)
2015-03-31 11:02:27.936373 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.936390 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.936402 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936414 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f433ef8]
2015-03-31 11:02:27.936425 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.936442 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.936459 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.936470 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.936482 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936493 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.936505 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f433ef8]
2015-03-31 11:02:27.936516 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_pin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f433ef8] now 1+0
2015-03-31 11:02:27.936527 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.936544 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.936561 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.936579 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.936591 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936604 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936616 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.936627 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.936646 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407997 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.936650 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407997 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.936663 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.936668 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.936673 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:27.936677 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.936692 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407997 cr=0xa257300)
2015-03-31 11:02:27.936709 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.936727 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.936744 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.936756 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.936768 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936791 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.936803 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.936815 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.936826 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.936843 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.936855 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.936867 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_unpin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8] now 0+0
2015-03-31 11:02:27.937162 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407998 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.937182 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407998 cr=0x940fa80)
2015-03-31 11:02:27.937184 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407998 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.937188 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407998 cr=0x940fa80) #1000006b2df
2015-03-31 11:02:27.937190 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2df snap head
2015-03-31 11:02:27.937191 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.937192 7fbe462be700 10 mds.0.server ref is [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:27.937207 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407998 cr=0x940fa80)
2015-03-31 11:02:27.937209 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.937227 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.937238 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.937250 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:27.937260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.937276 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.937293 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.937304 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.937316 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.937328 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.937340 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:27.937351 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_pin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8] now 1+0
2015-03-31 11:02:27.937362 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.937379 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.937395 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.937407 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.937433 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.937449 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.937461 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.937472 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.937491 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407998 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.937495 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407998 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.937507 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.937511 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.937515 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:27.937519 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.937534 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407998 cr=0x940fa80)
2015-03-31 11:02:27.937551 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.937569 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.937586 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.937598 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.937610 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.937628 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.937639 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.937651 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.937662 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.937679 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.937691 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.937703 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_unpin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8] now 0+0
2015-03-31 11:02:27.941523 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e74 follows 0 op update
2015-03-31 11:02:27.941527 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941536 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.941538 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.941556 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.941557 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941563 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941571 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:27.941573 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941585 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941602 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941609 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:27.941611 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941620 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941626 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941625 7fbe406af700  5 mds.0.log _submit_thread 5419673682~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:27.941632 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941638 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941644 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941650 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941657 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.941668 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:27.981061 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40407999 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.981087 7fbe462be700  7 mds.0.cache request_start request(client.708310:40407999 cr=0x940c380)
2015-03-31 11:02:27.981092 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40407999 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.981097 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40407999 cr=0x940c380) #1000006b2df
2015-03-31 11:02:27.981099 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2df snap head
2015-03-31 11:02:27.981100 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:27.981102 7fbe462be700 10 mds.0.server ref is [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:27.981121 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40407999 cr=0x940c380)
2015-03-31 11:02:27.981124 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.981145 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.981158 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.981172 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:27.981184 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.981201 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:27.981218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.981228 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:27.981240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.981251 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:27.981265 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:27.981276 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_pin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8] now 1+0
2015-03-31 11:02:27.981287 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.981311 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.981346 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.981359 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.981371 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.981390 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.981403 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.981415 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.981435 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40407999 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.981440 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407999 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:27.981453 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:27.981457 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:27.981462 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:27.981466 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:27.981483 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40407999 cr=0x940c380)
2015-03-31 11:02:27.981510 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.981530 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.981547 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.981560 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:27.981573 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.981585 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:27.981598 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.981610 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:27.981622 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:27.981646 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:27.981658 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:27.981671 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_unpin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8] now 0+0
2015-03-31 11:02:27.982914 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e74 follows 0 op update
2015-03-31 11:02:27.982918 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.982931 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:27.982933 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:27.982954 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:27.982955 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.982963 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.982973 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:27.982975 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.982981 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.982990 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.982997 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:27.982998 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.983007 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.983015 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.983022 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.983028 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:27.983029 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:27.983031 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e74 [2,head] /test_small/small1/blarg10068 auth v136954 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a9b00]
2015-03-31 11:02:27.983039 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.023069 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408000 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.023096 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408000 cr=0x2941d500)
2015-03-31 11:02:28.023100 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408000 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.023104 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408000 cr=0x2941d500) #1000006b2df
2015-03-31 11:02:28.023106 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2df snap head
2015-03-31 11:02:28.023108 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.023112 7fbe462be700 10 mds.0.server ref is [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:28.023131 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408000 cr=0x2941d500)
2015-03-31 11:02:28.023134 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.023155 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.023169 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.023183 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:28.023195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.023212 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.023230 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.023249 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.023262 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.023274 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.023287 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:28.023299 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_pin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8] now 1+0
2015-03-31 11:02:28.023318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.023336 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.023353 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.023365 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.023378 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.023391 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.023403 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:28.023415 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:28.023434 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408000 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.023439 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408000 getattr Xs #1000006b2df 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.023453 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.023456 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.023460 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.023463 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.023481 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408000 cr=0x2941d500)
2015-03-31 11:02:28.023499 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.023518 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.023536 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.023548 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.023561 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.023578 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.023590 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:28.023602 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f433ef8]
2015-03-31 11:02:28.023613 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.023630 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.023642 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.023655 7fbe462be700 10 mds.0.cache.ino(1000006b2df) auth_unpin by 0x29a75000 on [inode 1000006b2df [2,head] {#1000006b2df /test_small/small5/blarg10068} auth v178746 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f433ef8] now 0+0
2015-03-31 11:02:28.024025 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408001 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.024050 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408001 cr=0x9cc5280)
2015-03-31 11:02:28.024053 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408001 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.024057 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408001 cr=0x9cc5280) #10000004e60
2015-03-31 11:02:28.024059 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e60 snap head
2015-03-31 11:02:28.024061 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.024062 7fbe462be700 10 mds.0.server ref is [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.024077 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408001 cr=0x9cc5280)
2015-03-31 11:02:28.024080 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.024100 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.024113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.024124 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.024132 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.024148 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.024164 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.024176 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.024188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.024199 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.024210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.024217 7fbe462be700 10 mds.0.cache.ino(10000004e60) auth_pin by 0x29a75000 on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8] now 1+0
2015-03-31 11:02:28.024225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.024242 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.024262 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.024280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.024292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.024302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.024313 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024329 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024336 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024354 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408001 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.024358 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408001 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.024371 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.024376 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.024381 7fbe462be700 10 mds.0.cache.ino(10000004e60) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.024384 7fbe462be700 10 mds.0.cache.ino(10000004e60) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.024401 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408001 cr=0x9cc5280)
2015-03-31 11:02:28.024417 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.024436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.024453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.024466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.024477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.024494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.024505 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024513 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024521 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.024536 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.024552 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.024564 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.024575 7fbe462be700 10 mds.0.cache.ino(10000004e60) auth_unpin by 0x29a75000 on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a91c8] now 0+0
2015-03-31 11:02:28.024938 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408002 lookup #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.024958 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408002 cr=0x968e180)
2015-03-31 11:02:28.024960 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408002 lookup #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.024963 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408002 cr=0x968e180) #1000006026a/blarg10069
2015-03-31 11:02:28.024965 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.024968 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10069 [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock) v=177730 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.024977 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.024978 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408002 lookup #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.024988 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.025001 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408002 cr=0x968e180)
2015-03-31 11:02:28.025495 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408003 lookup #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.025515 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408003 cr=0x940ee00)
2015-03-31 11:02:28.025517 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408003 lookup #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.025520 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408003 cr=0x940ee00) #1000006026a/blarg10069
2015-03-31 11:02:28.025522 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.025524 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10069 [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock) v=177730 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.025532 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.025534 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408003 lookup #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.025543 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.025555 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408003 cr=0x940ee00)
2015-03-31 11:02:28.026032 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408004 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.026051 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408004 cr=0x940c380)
2015-03-31 11:02:28.026054 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408004 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.026057 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408004 cr=0x940c380) #10000004e60
2015-03-31 11:02:28.026059 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e60 snap head
2015-03-31 11:02:28.026060 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.026061 7fbe462be700 10 mds.0.server ref is [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.026073 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408004 cr=0x940c380)
2015-03-31 11:02:28.026076 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.026093 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.026105 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.026114 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.026121 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.026135 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.026150 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.026160 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.026171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.026180 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.026189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.026195 7fbe462be700 10 mds.0.cache.ino(10000004e60) auth_pin by 0x29a75000 on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8] now 1+0
2015-03-31 11:02:28.026203 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.026218 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.026232 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.026253 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.026263 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.026283 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.026292 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026297 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026303 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026309 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026322 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408004 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.026326 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408004 getattr Xs #10000004e60 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.026337 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.026341 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.026344 7fbe462be700 10 mds.0.cache.ino(10000004e60) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.026347 7fbe462be700 10 mds.0.cache.ino(10000004e60) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.026359 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408004 cr=0x940c380)
2015-03-31 11:02:28.026378 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.026394 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.026408 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.026419 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.026429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.026437 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.026457 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026464 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026477 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a91c8]
2015-03-31 11:02:28.026483 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.026498 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.026508 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.026517 7fbe462be700 10 mds.0.cache.ino(10000004e60) auth_unpin by 0x29a75000 on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a91c8] now 0+0
2015-03-31 11:02:28.026904 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408005 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.026924 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408005 cr=0x940fa80)
2015-03-31 11:02:28.026927 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408005 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.026930 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408005 cr=0x940fa80) #1000006026a
2015-03-31 11:02:28.026932 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.026933 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.026934 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.026953 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408005 cr=0x940fa80)
2015-03-31 11:02:28.026956 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.026973 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.026984 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.026996 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.027010 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.027025 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.027034 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.027045 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027055 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.027066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.027092 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.027106 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.027126 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.027136 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027156 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027166 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027175 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31483} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027190 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408005 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.027194 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408005 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.027204 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.027207 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.027212 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31484
2015-03-31 11:02:28.027213 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31484 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.027226 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408005 cr=0x940fa80)
2015-03-31 11:02:28.027245 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.027261 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.027275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.027285 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.027295 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027306 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027328 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027337 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027347 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.027361 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.027371 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.027752 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408006 create #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.027772 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408006 cr=0xa257300)
2015-03-31 11:02:28.027774 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408006 create #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.027777 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10069
2015-03-31 11:02:28.027779 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408006 cr=0xa257300) #1000006026a/blarg10069
2015-03-31 11:02:28.027781 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10069
2015-03-31 11:02:28.027788 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.027790 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.027791 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178747 v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.027801 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178747 v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.027810 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10069 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178747 v=178745 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.027820 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408006 cr=0xa257300)
2015-03-31 11:02:28.027825 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.027844 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.027855 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock) v=177730 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.027862 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027874 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.027888 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75000 on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.027902 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.027912 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.027923 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock) v=177730 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.027928 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10069) auth_pin by 0x29a75000 on [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock) v=177730 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520] now 1+0
2015-03-31 11:02:28.027934 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=1+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.027945 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.027956 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock) v=177730 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.027963 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177730 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.027979 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177730 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.027984 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177730 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.027988 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177730 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.028005 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10069) auth_pin by 0x3ce8678 on [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177730 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520] now 2+0
2015-03-31 11:02:28.028010 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a75000) [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dn xlock x=1 by 0x29a75000) (dversion lock w=1 last_client=708310) v=177730 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.028016 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028030 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028043 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028056 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028069 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028079 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028088 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028097 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028107 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028116 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028126 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028136 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028145 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028155 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028164 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028173 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028182 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028191 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028209 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e0 ([1000006b2e1~342], 834 left)
2015-03-31 11:02:28.028212 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.028213 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e0 [2,head] #1000006b2e0 auth v1 s=0 n() (iversion lock) 0x3f4c3fa8]
2015-03-31 11:02:28.028217 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178748
2015-03-31 11:02:28.028218 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10069)  pre_dirty [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dn xlock x=1 by 0x29a75000) (dversion lock w=1 last_client=708310) pv=178748 v=177730 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.028225 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4c3fa8]
2015-03-31 11:02:28.028232 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a75000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178748 v=178745 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:28.028241 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2694e250
2015-03-31 11:02:28.028242 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178749
2015-03-31 11:02:28.028243 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178749 v=178745 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.028249 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178749 v=178745 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.028255 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4c3fa8]
2015-03-31 11:02:28.028260 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.028262 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295318 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028275 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295320
2015-03-31 11:02:28.028276 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295320 v=3295316 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.028279 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295320 (current v 3295316)
2015-03-31 11:02:28.028281 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178749 v=178745 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.028288 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.028289 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a75000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295320 v=3295317 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382383=382376+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:28.028298 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x4ace930
2015-03-31 11:02:28.028300 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295321
2015-03-31 11:02:28.028301 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028312 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028322 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028332 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.028333 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.08124 ago, continuing
2015-03-31 11:02:28.028337 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120420 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028347 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120422
2015-03-31 11:02:28.028348 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120422 v=120420 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:28.028351 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120422 (current v 120420)
2015-03-31 11:02:28.028352 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295321 v=3295317 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382383=382376+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:28.028361 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.028363 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x29a75000 on [dir 1 / [2,head] auth v=120421 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:04.000000 b422190196760 382393=382384+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 3
2015-03-31 11:02:28.028372 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x4acc990
2015-03-31 11:02:28.028374 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120423
2015-03-31 11:02:28.028375 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028390 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028403 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028413 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.028414 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.08124 ago, continuing
2015-03-31 11:02:28.028416 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53473 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028435 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120422 v=120420 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:28.028440 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028451 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295320 v=3295316 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.028456 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31484} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028469 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4c3fa8]
2015-03-31 11:02:28.028476 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.028479 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028487 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.028488 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028496 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028503 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028509 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028516 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028522 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028528 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028535 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028541 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028547 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028553 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028560 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028567 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028573 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028579 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.028589 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.028590 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.028591 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4c3fa8 tracedn 0x3ce8520
2015-03-31 11:02:28.028593 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a75000) [dentry #1/test_small/small5/blarg10069 [2,head] auth NULL (dn xlock x=1 by 0x29a75000) (dversion lock w=1 last_client=708310) pv=178748 v=177730 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8520]
2015-03-31 11:02:28.028600 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408006 create #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.028606 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.028609 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31485
2015-03-31 11:02:28.028611 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31485 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.028617 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.028620 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.028623 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) including xattrs version 0
2015-03-31 11:02:28.028658 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028687 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028702 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028713 7fbe406af700  5 mds.0.log _submit_thread 5419674541~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:28.028716 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.028730 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028753 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028764 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028774 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.028789 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028801 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028813 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028823 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028834 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.028844 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.029143 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408007 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.029163 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408007 cr=0xa255a00)
2015-03-31 11:02:28.029165 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408007 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.029169 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408007 cr=0xa255a00) #1000006b2e0
2015-03-31 11:02:28.029171 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e0 snap head
2015-03-31 11:02:28.029172 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.029173 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.029186 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408007 cr=0xa255a00)
2015-03-31 11:02:28.029189 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.029204 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.029215 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.029225 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.029234 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.029248 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.029262 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.029272 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.029283 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.029293 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.029303 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4c3fa8]
2015-03-31 11:02:28.029312 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_pin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4c3fa8] now 1+0
2015-03-31 11:02:28.029322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.029337 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.029352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.029362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.029372 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.029392 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.029414 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.029423 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.029438 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408007 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.029442 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408007 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.029452 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.029455 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.029459 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.029461 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.029472 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408007 cr=0xa255a00)
2015-03-31 11:02:28.029491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.029507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.029521 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.029531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.029541 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.029551 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.029571 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.029581 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.029591 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.029606 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.029616 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.029627 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_unpin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8] now 0+0
2015-03-31 11:02:28.029928 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408008 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.029945 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408008 cr=0xa255f00)
2015-03-31 11:02:28.029947 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408008 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.029950 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408008 cr=0xa255f00) #1000006b2e0
2015-03-31 11:02:28.029952 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e0 snap head
2015-03-31 11:02:28.029953 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.029954 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.029967 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408008 cr=0xa255f00)
2015-03-31 11:02:28.029969 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.029985 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.029995 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.030006 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.030015 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.030029 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.030043 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.030053 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.030064 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.030074 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.030084 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.030093 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_pin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8] now 1+0
2015-03-31 11:02:28.030102 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.030116 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.030131 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.030141 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.030152 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.030162 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.030172 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.030192 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.030217 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408008 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.030220 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408008 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.030230 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.030232 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.030235 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.030237 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.030249 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408008 cr=0xa255f00)
2015-03-31 11:02:28.030267 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.030283 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.030296 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.030307 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.030317 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.030338 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.030348 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.030358 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.030367 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.030382 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.030393 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.030403 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_unpin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8] now 0+0
2015-03-31 11:02:28.034513 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e60 follows 0 op update
2015-03-31 11:02:28.034517 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034527 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.034529 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.034547 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.034548 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034554 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034561 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.034563 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034574 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034594 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034601 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.034602 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034610 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034617 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034616 7fbe406af700  5 mds.0.log _submit_thread 5419677331~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.034630 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034636 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034641 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034647 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034654 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.034663 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.074061 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408009 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.074082 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408009 cr=0x26d3fd00)
2015-03-31 11:02:28.074087 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408009 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.074090 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408009 cr=0x26d3fd00) #1000006b2e0
2015-03-31 11:02:28.074092 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e0 snap head
2015-03-31 11:02:28.074093 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.074094 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.074111 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408009 cr=0x26d3fd00)
2015-03-31 11:02:28.074114 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.074132 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.074145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.074156 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.074167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.074182 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.074198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.074208 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.074220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.074240 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.074251 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.074260 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_pin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8] now 1+0
2015-03-31 11:02:28.074271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.074307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.074321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.074331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.074340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.074350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.074359 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.074368 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.074383 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408009 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.074387 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408009 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.074397 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.074401 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.074405 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.074408 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.074421 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408009 cr=0x26d3fd00)
2015-03-31 11:02:28.074439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.074456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.074469 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.074480 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.074491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.074501 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.074522 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.074532 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.074541 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.074556 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.074567 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.074576 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_unpin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8] now 0+0
2015-03-31 11:02:28.075820 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e60 follows 0 op update
2015-03-31 11:02:28.075823 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075834 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.075836 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.075855 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.075856 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075863 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075871 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.075873 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075878 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075885 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075892 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.075893 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075900 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075906 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075911 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075917 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.075918 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.075919 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e60 [2,head] /test_small/small1/blarg10069 auth v136956 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a91c8]
2015-03-31 11:02:28.075926 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.115033 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408010 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.115054 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408010 cr=0x26d3cb00)
2015-03-31 11:02:28.115059 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408010 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.115062 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408010 cr=0x26d3cb00) #1000006b2e0
2015-03-31 11:02:28.115064 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e0 snap head
2015-03-31 11:02:28.115065 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.115066 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.115083 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408010 cr=0x26d3cb00)
2015-03-31 11:02:28.115086 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115104 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.115129 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.115139 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115154 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.115170 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115181 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.115193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.115213 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.115224 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.115234 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_pin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8] now 1+0
2015-03-31 11:02:28.115254 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115269 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115294 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115304 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115313 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.115323 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.115332 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.115341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.115356 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408010 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.115359 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408010 getattr Xs #1000006b2e0 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.115368 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.115371 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.115375 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.115377 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.115390 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408010 cr=0x26d3cb00)
2015-03-31 11:02:28.115409 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115425 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115440 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115450 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.115471 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.115492 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.115502 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c3fa8]
2015-03-31 11:02:28.115512 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.115527 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.115538 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.115549 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) auth_unpin by 0x29a75f00 on [inode 1000006b2e0 [2,head] {#1000006b2e0 /test_small/small5/blarg10069} auth v178748 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c3fa8] now 0+0
2015-03-31 11:02:28.115848 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408011 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.115866 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408011 cr=0x8f0cd80)
2015-03-31 11:02:28.115868 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408011 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.115871 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408011 cr=0x8f0cd80) #100000003f3
2015-03-31 11:02:28.115873 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f3 snap head
2015-03-31 11:02:28.115876 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.115877 7fbe462be700 10 mds.0.server ref is [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.115889 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408011 cr=0x8f0cd80)
2015-03-31 11:02:28.115892 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115907 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115918 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.115927 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.115934 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.115947 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.115962 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.115972 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.115982 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.115991 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.116001 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.116006 7fbe462be700 10 mds.0.cache.ino(100000003f3) auth_pin by 0x29a75f00 on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328] now 1+0
2015-03-31 11:02:28.116013 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.116028 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.116042 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.116053 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.116063 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.116072 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.116081 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116088 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116105 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116110 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116135 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408011 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.116139 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408011 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.116149 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.116152 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.116156 7fbe462be700 10 mds.0.cache.ino(100000003f3) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.116158 7fbe462be700 10 mds.0.cache.ino(100000003f3) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.116170 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408011 cr=0x8f0cd80)
2015-03-31 11:02:28.116189 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.116204 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.116219 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.116229 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.116240 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.116249 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.116268 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116274 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116281 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.116294 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.116308 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.116319 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.116328 7fbe462be700 10 mds.0.cache.ino(100000003f3) auth_unpin by 0x29a75f00 on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a2328] now 0+0
2015-03-31 11:02:28.116690 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408012 lookup #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.116709 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408012 cr=0x2645bc00)
2015-03-31 11:02:28.116711 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408012 lookup #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.116714 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408012 cr=0x2645bc00) #1000006026a/blarg1007
2015-03-31 11:02:28.116716 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.116718 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1007 [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock) v=177732 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.116727 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.116729 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408012 lookup #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.116738 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.116748 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408012 cr=0x2645bc00)
2015-03-31 11:02:28.117227 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408013 lookup #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.117246 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408013 cr=0x26900f00)
2015-03-31 11:02:28.117248 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408013 lookup #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.117251 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408013 cr=0x26900f00) #1000006026a/blarg1007
2015-03-31 11:02:28.117253 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.117256 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1007 [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock) v=177732 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.117264 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.117265 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408013 lookup #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.117275 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.117287 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408013 cr=0x26900f00)
2015-03-31 11:02:28.117763 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408014 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.117789 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408014 cr=0x968eb80)
2015-03-31 11:02:28.117792 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408014 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.117795 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408014 cr=0x968eb80) #100000003f3
2015-03-31 11:02:28.117797 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f3 snap head
2015-03-31 11:02:28.117798 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.117799 7fbe462be700 10 mds.0.server ref is [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.117810 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408014 cr=0x968eb80)
2015-03-31 11:02:28.117813 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.117832 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.117844 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.117853 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.117859 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.117874 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.117889 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.117899 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.117910 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.117919 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.117929 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.117935 7fbe462be700 10 mds.0.cache.ino(100000003f3) auth_pin by 0x29a75f00 on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328] now 1+0
2015-03-31 11:02:28.117942 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.117957 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.117983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.117993 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.118015 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.118023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.118032 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118044 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118049 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118061 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408014 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.118065 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408014 getattr Xs #100000003f3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.118075 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.118078 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.118082 7fbe462be700 10 mds.0.cache.ino(100000003f3) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.118084 7fbe462be700 10 mds.0.cache.ino(100000003f3) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.118097 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408014 cr=0x968eb80)
2015-03-31 11:02:28.118116 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118132 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118147 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.118158 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.118168 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.118177 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.118197 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118204 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118209 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118214 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a2328]
2015-03-31 11:02:28.118221 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.118236 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.118247 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.118256 7fbe462be700 10 mds.0.cache.ino(100000003f3) auth_unpin by 0x29a75f00 on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a2328] now 0+0
2015-03-31 11:02:28.118630 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408015 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.118652 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408015 cr=0x45a2d00)
2015-03-31 11:02:28.118654 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408015 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.118657 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408015 cr=0x45a2d00) #1000006026a
2015-03-31 11:02:28.118659 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.118660 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.118661 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.118679 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408015 cr=0x45a2d00)
2015-03-31 11:02:28.118682 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118698 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.118710 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.118721 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118734 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.118749 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.118759 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.118769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.118779 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.118794 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118808 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118823 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.118833 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.118853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.118863 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.118884 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.118894 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31485} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.118908 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408015 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.118912 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408015 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.118922 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.118925 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.118930 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31486
2015-03-31 11:02:28.118932 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31486 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.118945 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408015 cr=0x45a2d00)
2015-03-31 11:02:28.118963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118979 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.118993 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119004 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119014 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119024 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119045 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119064 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.119078 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.119089 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.119437 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408016 create #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.119457 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408016 cr=0xb260780)
2015-03-31 11:02:28.119460 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408016 create #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.119462 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1007
2015-03-31 11:02:28.119464 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408016 cr=0xb260780) #1000006026a/blarg1007
2015-03-31 11:02:28.119466 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1007
2015-03-31 11:02:28.119467 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.119468 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.119470 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178749 v=178745 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.119479 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178749 v=178745 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.119486 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1007 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178749 v=178745 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.119497 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408016 cr=0xb260780)
2015-03-31 11:02:28.119502 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.119521 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119533 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock) v=177732 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119540 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119552 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.119566 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75f00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.119582 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119592 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.119603 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock) v=177732 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119608 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1007) auth_pin by 0x29a75f00 on [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock) v=177732 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700] now 1+0
2015-03-31 11:02:28.119614 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=2+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119625 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.119636 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock) v=177732 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119642 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177732 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119648 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177732 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119662 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177732 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119667 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177732 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119672 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1007) auth_pin by 0x3ce8858 on [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177732 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700] now 2+0
2015-03-31 11:02:28.119678 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a75f00) [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dn xlock x=1 by 0x29a75f00) (dversion lock w=1 last_client=708310) v=177732 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119695 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.119710 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.119723 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.119736 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.119749 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119760 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119769 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119779 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.119793 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119803 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119812 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119822 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119831 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119840 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119849 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119858 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119867 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119876 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119894 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e1 ([1000006b2e2~341], 833 left)
2015-03-31 11:02:28.119897 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.119898 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e1 [2,head] #1000006b2e1 auth v1 s=0 n() (iversion lock) 0x3f37a688]
2015-03-31 11:02:28.119902 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178750
2015-03-31 11:02:28.119903 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1007)  pre_dirty [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dn xlock x=1 by 0x29a75f00) (dversion lock w=1 last_client=708310) pv=178750 v=177732 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.119910 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f37a688]
2015-03-31 11:02:28.119917 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a75f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178750 v=178745 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:28.119926 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x4781ce0
2015-03-31 11:02:28.119927 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178751
2015-03-31 11:02:28.119929 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178745 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.119935 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178745 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.119942 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f37a688]
2015-03-31 11:02:28.119948 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.119950 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295320 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.119962 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295322
2015-03-31 11:02:28.119963 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295322 v=3295316 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.119967 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295322 (current v 3295316)
2015-03-31 11:02:28.119969 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178745 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=80+1524,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.119976 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.119978 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a75f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295322 v=3295317 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382383=382376+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:28.119986 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x4781550
2015-03-31 11:02:28.119988 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295323
2015-03-31 11:02:28.119989 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.120000 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.120010 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120021 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.120022 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.091686 < 1, stopping
2015-03-31 11:02:28.120026 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.120036 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:19.732926
2015-03-31 11:02:28.120039 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295322 v=3295316 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.120043 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31486} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120055 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f37a688]
2015-03-31 11:02:28.120062 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.120064 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f37a688]
2015-03-31 11:02:28.120072 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.120073 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120081 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120087 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120094 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120101 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120107 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120114 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120119 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120125 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120131 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120138 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120145 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120151 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120157 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120164 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37a688]
2015-03-31 11:02:28.120173 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.120174 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.120176 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f37a688 tracedn 0x3ce8700
2015-03-31 11:02:28.120179 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a75f00) [dentry #1/test_small/small5/blarg1007 [2,head] auth NULL (dn xlock x=1 by 0x29a75f00) (dversion lock w=1 last_client=708310) pv=178750 v=177732 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8700]
2015-03-31 11:02:28.120185 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408016 create #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.120193 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.120196 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31487
2015-03-31 11:02:28.120198 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31487 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.120203 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.120205 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.120208 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) including xattrs version 0
2015-03-31 11:02:28.120243 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.120271 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.120290 7fbe406af700  5 mds.0.log _submit_thread 5419678190~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.120287 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.120310 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.120336 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.120347 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.120359 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.120369 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.120380 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120391 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120402 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120412 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120423 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120433 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.120458 7fbe42eb4700 10 MDSInternalContextBase::complete: N3MDS10C_MDS_TickE
2015-03-31 11:02:28.120580 7fbe42eb4700  7 mds.0.cache trim max=10000000  cur=213230
2015-03-31 11:02:28.120594 7fbe42eb4700 10 mds.0.cache trim_client_leases
2015-03-31 11:02:28.120597 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10428 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178528 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d20920]
2015-03-31 11:02:28.120629 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10429 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178530 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d20b00]
2015-03-31 11:02:28.120643 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1043 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178532 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d20ce0]
2015-03-31 11:02:28.120654 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10430 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178534 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d20ec0]
2015-03-31 11:02:28.120665 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10431 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178536 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d210a0]
2015-03-31 11:02:28.120676 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10432 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178538 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21280]
2015-03-31 11:02:28.120686 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10433 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178540 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21460]
2015-03-31 11:02:28.120695 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10434 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178542 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21640]
2015-03-31 11:02:28.120711 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10435 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178544 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21820]
2015-03-31 11:02:28.120721 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10436 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178546 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21a00]
2015-03-31 11:02:28.120733 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10437 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178548 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21be0]
2015-03-31 11:02:28.120764 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10438 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178550 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21dc0]
2015-03-31 11:02:28.120773 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10439 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178552 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d21fa0]
2015-03-31 11:02:28.120796 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1044 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178554 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22180]
2015-03-31 11:02:28.120806 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10440 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178556 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22360]
2015-03-31 11:02:28.120816 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10441 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178558 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22540]
2015-03-31 11:02:28.120825 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10442 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178560 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22720]
2015-03-31 11:02:28.120833 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10443 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178562 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22900]
2015-03-31 11:02:28.120843 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10444 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178564 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22ae0]
2015-03-31 11:02:28.120853 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10445 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178566 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22cc0]
2015-03-31 11:02:28.120861 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10446 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178568 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d22ea0]
2015-03-31 11:02:28.120871 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10447 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178570 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d23080]
2015-03-31 11:02:28.120881 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10448 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178572 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d23260]
2015-03-31 11:02:28.120891 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10449 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178574 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d23440]
2015-03-31 11:02:28.120899 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg1045 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178576 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d23620]
2015-03-31 11:02:28.120910 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10450 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178578 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d23800]
2015-03-31 11:02:28.120919 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10451 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178580 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d239e0]
2015-03-31 11:02:28.120928 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10452 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178582 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d23bc0]
2015-03-31 11:02:28.120937 7fbe42eb4700 10 mds.0.cache  expiring client.708310 lease of [dentry #1/test_small/small5/blarg10453 [2,head] auth NULL (dn sync l=1) (dversion lock) v=178584 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=1 0x3d23da0]
2015-03-31 11:02:28.120948 7fbe42eb4700 10 mds.0.cache trim_client_leases pool 1 trimmed 29 leases, 83 left
2015-03-31 11:02:28.122982 7fbe42eb4700  2 mds.0.cache check_memory_usage total 1457024, rss 1116172, heap 43920, malloc 850264 mmap 0, baseline 39824, buffers 0, max 1048576, 110099 / 210112 inodes have caps, 110116 caps, 0.524082 caps per inode
2015-03-31 11:02:28.123002 7fbe42eb4700 10 mds.0.log trim 30 / 30 segments, 25720 / -1 events, 0 (0) expiring, 0 (0) expired
2015-03-31 11:02:28.123008 7fbe42eb4700 10 mds.0.log _trim_expired_segments waiting for 2072696/5380790067 to expire
2015-03-31 11:02:28.123055 7fbe42eb4700 10 mds.0.locker scatter_tick
2015-03-31 11:02:28.123064 7fbe42eb4700 10 mds.0.locker scatter_nudge auth, scatter/unscattering (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123109 7fbe42eb4700  7 mds.0.locker simple_sync on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123135 7fbe42eb4700 10 mds.0.cache.ino(10000000000) auth_pin by 0x39c1b18 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.123160 7fbe42eb4700 10 mds.0.locker scatter_nudge auth, waiting for stable (inest lock->sync w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123183 7fbe42eb4700 10 mds.0.server find_idle_sessions.  laggy until 0.000000
2015-03-31 11:02:28.123223 7fbe42eb4700  5 mds.0.bal mds.0 epoch 6821 load mdsload<[627.997,43.783 715.563]/[43.6246,14.5677 72.76], req 112661, hr 0, qlen 0, cpu 0.03>
2015-03-31 11:02:28.123255 7fbe42eb4700 10 mds.0.cache find_stale_fragment_freeze
2015-03-31 11:02:28.123258 7fbe42eb4700 10 mds.0.snap check_osd_map - version unchanged
2015-03-31 11:02:28.123337 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408017 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.123373 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408017 cr=0x52d2300)
2015-03-31 11:02:28.123377 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408017 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.123381 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408017 cr=0x52d2300) #1000006b2e1
2015-03-31 11:02:28.123383 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e1 snap head
2015-03-31 11:02:28.123385 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.123386 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f37a688]
2015-03-31 11:02:28.123407 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408017 cr=0x52d2300)
2015-03-31 11:02:28.123411 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.123435 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123452 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.123467 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f37a688]
2015-03-31 11:02:28.123480 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.123499 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.123517 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123530 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.123545 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.123558 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.123571 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f37a688]
2015-03-31 11:02:28.123583 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_pin by 0x29a75500 on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f37a688] now 1+0
2015-03-31 11:02:28.123596 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.123616 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.123635 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123649 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123663 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.123676 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.123690 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.123703 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.123723 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408017 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.123728 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408017 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.123744 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.123749 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.123755 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.123760 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.123778 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408017 cr=0x52d2300)
2015-03-31 11:02:28.123808 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.123829 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.123848 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123868 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.123882 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.123895 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.123908 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.123922 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.123935 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.123954 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.123967 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.123980 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_unpin by 0x29a75500 on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37a688] now 0+0
2015-03-31 11:02:28.124233 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408018 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.124255 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408018 cr=0x23fbe180)
2015-03-31 11:02:28.124258 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408018 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.124262 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408018 cr=0x23fbe180) #1000006b2e1
2015-03-31 11:02:28.124264 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e1 snap head
2015-03-31 11:02:28.124266 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.124267 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.124282 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408018 cr=0x23fbe180)
2015-03-31 11:02:28.124285 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.124304 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.124317 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.124330 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.124341 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.124358 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.124375 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.124387 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.124400 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.124411 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.124424 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.124435 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_pin by 0x29a75500 on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37a688] now 1+0
2015-03-31 11:02:28.124446 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.124465 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.124482 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.124496 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (isnap sync r=1) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.124514 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.124526 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.124539 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.124551 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.124570 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408018 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.124574 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408018 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.124587 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.124592 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.124596 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.124600 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.124616 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408018 cr=0x23fbe180)
2015-03-31 11:02:28.124634 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.124654 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53473 pv53474 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.124671 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.124688 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.124700 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.124713 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=4+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.124725 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.124737 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.124749 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.124767 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.124779 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.124796 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_unpin by 0x29a75500 on [inode 1000006b2e1 [2,head] {#1000006b2e1 /test_small/small5/blarg1007} auth v178750 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37a688] now 0+0
2015-03-31 11:02:28.129121 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f3 follows 0 op update
2015-03-31 11:02:28.129124 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129137 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.129139 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53473 pv53474 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.129161 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.129162 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129170 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129179 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.129182 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129196 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129213 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129221 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.129222 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129232 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129237 7fbe406af700  5 mds.0.log _submit_thread 5419679829~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.129240 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129247 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129253 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129259 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129267 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129275 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.129286 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.135728 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.135734 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:28.135747 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:28.135749 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) mark_dirty [inode 1000006b2df [2,head] /test_small/small5/blarg10068 auth v178745 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:28.135767 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10068)  mark_dirty [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178746 v=177728 ap=2+0 inode=0x3f433ef8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340]
2015-03-31 11:02:28.135777 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178746 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 80=80+0) hs=81+1523,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178746
2015-03-31 11:02:28.135799 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) mark_dirty_parent
2015-03-31 11:02:28.135803 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295316 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:04.000000 80=80+0) n(v1 rc2015-03-31 11:03:04.000000 81=80+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.135820 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295322 v=3295316 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.135825 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295318 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382383=382376+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295318
2015-03-31 11:02:28.135838 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178747 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 81=81+0) hs=81+1523,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178747
2015-03-31 11:02:28.135847 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295319 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382384=382377+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295319
2015-03-31 11:02:28.135858 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2df [2,head] /test_small/small5/blarg10068 auth v178746 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f433ef8]
2015-03-31 11:02:28.135870 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:28.135873 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27556 client_caps(grant ino 1000006b2df 1851540 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.135906 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178746 ap=2+0 inode=0x3f433ef8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340]
2015-03-31 11:02:28.135925 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40407996 create #1000006026a/blarg10068 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.135939 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2df
2015-03-31 11:02:28.135942 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178746 ap=2+0 inode=0x3f433ef8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340]
2015-03-31 11:02:28.135958 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178746 ap=2+0 inode=0x3f433ef8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340]
2015-03-31 11:02:28.135965 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178746 ap=2+0 inode=0x3f433ef8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340]
2015-03-31 11:02:28.135972 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10068) auth_unpin by 0x3ce8498 on [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178746 ap=1+0 inode=0x3f433ef8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340] now 1+0
2015-03-31 11:02:28.135980 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178746 ap=1+0 inode=0x3f433ef8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340]
2015-03-31 11:02:28.135989 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock->sync w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136013 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178746 ap=1+0 inode=0x3f433ef8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8340]
2015-03-31 11:02:28.136021 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295318 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 82=81+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136036 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295318 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 82=81+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136049 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295318 pv3295322 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 82=81+1) (inest lock w=3) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136071 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40407996 cr=0xa256e00)
2015-03-31 11:02:28.136081 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367ad00 on [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.136099 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367ad00 on [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.136112 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10068) auth_unpin by 0x2367ad00 on [dentry #1/test_small/small5/blarg10068 [2,head] auth (dn sync l=1) (dversion lock) v=178746 inode=0x3f433ef8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce8340] now 0+0
2015-03-31 11:02:28.136120 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367ad00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295319 cv=3287205/3287205 ap=2+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382384=382377+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 4
2015-03-31 11:02:28.136138 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367ad00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178747 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 81=81+0) hs=81+1523,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:28.136147 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367ad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295318 pv3295322 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 82=81+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.136179 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.136181 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:28.136186 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:28.136188 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) mark_dirty [inode 1000006b2e0 [2,head] /test_small/small5/blarg10069 auth v178747 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.136201 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10069)  mark_dirty [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178748 v=177730 ap=2+0 inode=0x3f4c3fa8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520]
2015-03-31 11:02:28.136208 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178748 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 81=81+0) hs=82+1522,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178748
2015-03-31 11:02:28.136219 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) mark_dirty_parent
2015-03-31 11:02:28.136221 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295318 pv3295322 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 81=81+0) n(v1 rc2015-03-31 11:03:05.000000 82=81+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136244 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295322 v=3295318 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.136249 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295320 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382384=382377+7)/n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382376=382369+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295320
2015-03-31 11:02:28.136261 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120420 pv120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:04.000000 b422190090565 382377=382369+8) (inest lock->sync w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136274 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120422 v=120420 ap=0+4 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:28.136278 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120423 v=120422 cv=119911/119911 dir_auth=0 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:04.000000 b422190196760 382393=382384+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120422
2015-03-31 11:02:28.136290 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53473 pv53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.136308 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178749 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 82=82+0) hs=82+1522,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178749
2015-03-31 11:02:28.136317 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295321 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295321
2015-03-31 11:02:28.136325 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120423 v=120423 cv=119911/119911 dir_auth=0 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382402=382393+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120423
2015-03-31 11:02:28.136336 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e0 [2,head] /test_small/small5/blarg10069 auth v178748 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c3fa8]
2015-03-31 11:02:28.136348 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:28.136351 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27557 client_caps(grant ino 1000006b2e0 1851541 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.136372 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178748 ap=2+0 inode=0x3f4c3fa8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520]
2015-03-31 11:02:28.136383 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408006 create #1000006026a/blarg10069 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.136395 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e0
2015-03-31 11:02:28.136398 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178748 ap=2+0 inode=0x3f4c3fa8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520]
2015-03-31 11:02:28.136406 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178748 ap=2+0 inode=0x3f4c3fa8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520]
2015-03-31 11:02:28.136413 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178748 ap=2+0 inode=0x3f4c3fa8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520]
2015-03-31 11:02:28.136419 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10069) auth_unpin by 0x3ce8678 on [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178748 ap=1+0 inode=0x3f4c3fa8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520] now 1+0
2015-03-31 11:02:28.136426 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178748 ap=1+0 inode=0x3f4c3fa8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520]
2015-03-31 11:02:28.136433 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.136454 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.136472 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.136487 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136500 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock->sync w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120422 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136513 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178748 ap=1+0 inode=0x3f4c3fa8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8520]
2015-03-31 11:02:28.136519 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295320 pv3295322 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 83=82+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136538 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295320 pv3295322 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 83=82+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136551 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295320 pv3295322 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 83=82+1) (inest lock w=2) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136580 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408006 cr=0xa257300)
2015-03-31 11:02:28.136589 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75000 on [inode 1 [...2,head] / auth v53474 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.136607 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75000 on [inode 10000000000 [...2,head] /test_small/ auth v120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.136620 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10069) auth_unpin by 0x29a75000 on [dentry #1/test_small/small5/blarg10069 [2,head] auth (dn sync l=1) (dversion lock) v=178748 inode=0x3f4c3fa8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce8520] now 0+0
2015-03-31 11:02:28.136628 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x29a75000 on [dir 1 / [2,head] auth v=120423 cv=119911/119911 dir_auth=0 ap=0+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382402=382393+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 3
2015-03-31 11:02:28.136640 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295321 cv=3287205/3287205 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 3
2015-03-31 11:02:28.136649 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178749 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 82=82+0) hs=82+1522,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:28.136657 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295320 pv3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 83=82+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.136689 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.136691 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:28.136696 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:28.136698 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) mark_dirty [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178749 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.136710 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1007)  mark_dirty [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178750 v=177732 ap=2+0 inode=0x3f37a688 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700]
2015-03-31 11:02:28.136718 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178750 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 82=82+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178750
2015-03-31 11:02:28.136728 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) mark_dirty_parent
2015-03-31 11:02:28.136730 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295320 pv3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 82=82+0) n(v1 rc2015-03-31 11:03:05.000000 83=82+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.136743 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295322 v=3295320 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.136747 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295322 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295322
2015-03-31 11:02:28.136757 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178751 v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178751
2015-03-31 11:02:28.136765 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295323 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7)/n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295323
2015-03-31 11:02:28.136776 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.136791 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:28.136794 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27558 client_caps(grant ino 1000006b2e1 1851542 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.136815 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178750 ap=2+0 inode=0x3f37a688 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700]
2015-03-31 11:02:28.136825 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408016 create #1000006026a/blarg1007 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.136837 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e1
2015-03-31 11:02:28.136840 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178750 ap=2+0 inode=0x3f37a688 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700]
2015-03-31 11:02:28.136849 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178750 ap=2+0 inode=0x3f37a688 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700]
2015-03-31 11:02:28.136856 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178750 ap=2+0 inode=0x3f37a688 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700]
2015-03-31 11:02:28.136863 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1007) auth_unpin by 0x3ce8858 on [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178750 ap=1+0 inode=0x3f37a688 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700] now 1+0
2015-03-31 11:02:28.136871 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178750 ap=1+0 inode=0x3f37a688 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700]
2015-03-31 11:02:28.136877 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock->sync w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136893 7fbe43ab9700 10 mds.0.locker eval_gather (inest lock->sync dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136907 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (inest lock->sync dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136918 7fbe43ab9700 10 mds.0.locker scatter_writebehind 2015-03-30 12:06:43.000000 on (inest lock->sync dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120422 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136933 7fbe43ab9700 10 mds.0.cache.dir(1) pre_dirty 120424
2015-03-31 11:02:28.136934 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120424 v=120422 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:28.136946 7fbe43ab9700 10 mds.0.cache.ino(10000000000) pre_dirty 120424 (current v 120422)
2015-03-31 11:02:28.136948 7fbe43ab9700 10 mds.0.cache.ino(10000000000) finish_scatter_gather_update 1024 on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136964 7fbe43ab9700 10 mds.0.cache.dir(10000000000) project_fnode 0x4781550
2015-03-31 11:02:28.136966 7fbe43ab9700 10 mds.0.cache.dir(10000000000) assimilate_dirty_rstat_inodes
2015-03-31 11:02:28.136967 7fbe43ab9700 10 mds.0.cache.dir(10000000000) assimilate_dirty_rstat_inodes done
2015-03-31 11:02:28.136969 7fbe43ab9700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.136971 7fbe43ab9700 10 mds.0.cache.ino(10000000000) * updated accounted_rstat n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) on [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295323 cv=3287205/3287205 ap=1+1+2 state=1610743810|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7)/n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:28.136984 7fbe43ab9700 10 mds.0.cache predirty_journal_parents linkunlink=0 primary_dn follows head [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.136997 7fbe43ab9700 10 mds.0.cache.dir(1) auth_pin by 0xa257300 on [dir 1 / [2,head] auth v=120423 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382402=382393+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 3
2015-03-31 11:02:28.137009 7fbe43ab9700 10 mds.0.cache.dir(1) project_fnode 0x4781ce0
2015-03-31 11:02:28.137011 7fbe43ab9700 10 mds.0.cache.dir(1) pre_dirty 120425
2015-03-31 11:02:28.137012 7fbe43ab9700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53474 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137029 7fbe43ab9700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53474 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137046 7fbe43ab9700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137058 7fbe43ab9700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.137060 7fbe43ab9700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53474 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137076 7fbe43ab9700 10 mds.0.cache.ino(1) auth_pin by 0xa257300 on [inode 1 [...2,head] / auth v53474 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.137097 7fbe43ab9700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120424 v=120422 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:28.137109 7fbe43ab9700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137129 7fbe43ab9700 10 mds.0.cache.ino(10000000000) finish_scatter_gather_update_accounted 1024 on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137142 7fbe43ab9700 10 mds.0.cache.ino(10000000000)  journaling updated frag accounted_ on [dir 10000000000 /test_small/ [2,head] auth pv=3295323 v=3295323 cv=3287205/3287205 ap=1+1+2 state=1610743810|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7)/n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:28.137153 7fbe43ab9700 10 mds.0.cache.dir(10000000000) pre_dirty 3295324
2015-03-31 11:02:28.137155 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_pin by 0xa257300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295324 v=3295323 cv=3287205/3287205 ap=2+1+2 state=1610743810|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7)/n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 2
2015-03-31 11:02:28.137166 7fbe43ab9700 10 mds.0.cache.dir(10000000000) assimilate_dirty_rstat_inodes_finish
2015-03-31 11:02:28.137172 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178750 ap=1+0 inode=0x3f37a688 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8700]
2015-03-31 11:02:28.137188 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137202 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137219 7fbe406af700  5 mds.0.log _submit_thread 5419680687~1627 : EUpdate scatter_writebehind [metablob 1, 2 dirs]
2015-03-31 11:02:28.137216 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137237 7fbe43ab9700  7 mds.0.locker file_eval stable, bump to sync (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137248 7fbe43ab9700  7 mds.0.locker simple_sync on (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137260 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137278 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137290 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137323 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408016 cr=0xb260780)
2015-03-31 11:02:28.137340 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75f00 on [inode 1 [...2,head] / auth v53474 pv53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.137357 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75f00 on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.137370 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1007) auth_unpin by 0x29a75f00 on [dentry #1/test_small/small5/blarg1007 [2,head] auth (dn sync l=1) (dversion lock) v=178750 inode=0x3f37a688 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce8700] now 0+0
2015-03-31 11:02:28.137378 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295324 v=3295323 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7)/n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382385=382378+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:28.137389 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75f00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178751 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:28.137399 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.137435 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408019 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.137470 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408019 cr=0x929aa80)
2015-03-31 11:02:28.137473 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408019 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.137477 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408019 cr=0x929aa80) #1000006b2e1
2015-03-31 11:02:28.137479 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e1 snap head
2015-03-31 11:02:28.137481 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.137482 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.137501 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408019 cr=0x929aa80)
2015-03-31 11:02:28.137504 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53474 pv53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137526 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137541 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.137553 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.137565 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53474 pv53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137582 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53474 pv53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.137600 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137613 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.137626 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.137638 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.137650 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.137662 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_pin by 0x29a75500 on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688] now 1+0
2015-03-31 11:02:28.137674 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53474 pv53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137692 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53474 pv53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137709 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137722 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (isnap sync r=1) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137735 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137758 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.137769 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.137797 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408019 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.137802 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408019 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.137815 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.137818 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.137829 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.137832 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.137852 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408019 cr=0x929aa80)
2015-03-31 11:02:28.137870 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53474 pv53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137890 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53474 pv53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.137908 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137921 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.137937 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137949 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.137961 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.137972 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.137984 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53474 pv53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.138001 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.138015 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:28.138027 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_unpin by 0x29a75500 on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688] now 0+0
2015-03-31 11:02:28.150438 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.150445 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_Locker_ScatterWB
2015-03-31 11:02:28.150447 7fbe43ab9700 10 mds.0.locker scatter_writebehind_finish on (inest lock->sync w=1 flushing) on [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.150471 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120422 pv120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7365 rc2015-03-31 11:03:05.000000 b422190090565 382386=382378+8) (inest lock->sync w=1 flushing) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.150485 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120424 v=120422 ap=0+2 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:28.150494 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120425 v=120424 cv=119911/119911 dir_auth=0 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382402=382393+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120424
2015-03-31 11:02:28.150508 7fbe43ab9700 10 mds.0.cache.ino(10000000000) clear_dirty_scattered 1024 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock->sync w=1 flushed) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.150522 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53474 pv53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.150540 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120425 v=120425 cv=119911/119911 dir_auth=0 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382403=382394+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120425
2015-03-31 11:02:28.150551 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295324 v=3295324 cv=3287205/3287205 ap=1+0+0 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295324
2015-03-31 11:02:28.150560 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock w=1) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.150579 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.150597 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.150613 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock->sync w=1 flushed) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock->sync w=1 flushed) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.150626 7fbe43ab9700 10 mds.0.locker eval_gather (inest lock->sync flushed) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock->sync flushed) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.150638 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (inest lock->sync flushed) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock->sync flushed) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.150650 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x39c1b18 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.150661 7fbe43ab9700 10 mds.0.locker scatter_eval (inest sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.150673 7fbe43ab9700  7 mds.0.locker simple_lock on (inest sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.150685 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xa257300 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.150706 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0xa257300 on [dir 1 / [2,head] auth v=120425 cv=119911/119911 dir_auth=0 ap=0+0+1 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382403=382394+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 1
2015-03-31 11:02:28.150717 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xa257300 on [dir 10000000000 /test_small/ [2,head] auth v=3295324 cv=3287205/3287205 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 0
2015-03-31 11:02:28.178091 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f3 follows 0 op update
2015-03-31 11:02:28.178094 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178107 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.178109 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.178129 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.178130 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178138 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178147 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.178149 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178155 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178164 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178173 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.178174 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178182 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178189 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178196 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178203 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.178205 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.178206 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003f3 [2,head] /test_small/small1/blarg1007 auth v59076 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2328]
2015-03-31 11:02:28.178214 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.178231 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408020 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.178254 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408020 cr=0x43d2f80)
2015-03-31 11:02:28.178258 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408020 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.178261 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408020 cr=0x43d2f80) #1000006b2e1
2015-03-31 11:02:28.178263 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e1 snap head
2015-03-31 11:02:28.178265 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.178266 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.178280 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408020 cr=0x43d2f80)
2015-03-31 11:02:28.178283 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.178301 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.178313 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.178325 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.178334 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.178365 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.178382 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.178394 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.178406 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.178417 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.178429 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688]
2015-03-31 11:02:28.178439 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_pin by 0x29a75500 on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688] now 1+0
2015-03-31 11:02:28.178450 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.178467 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.178483 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.178495 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.178507 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.178518 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.178529 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.178541 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.178559 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408020 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.178564 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408020 getattr Xs #1000006b2e1 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.178577 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.178580 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.178585 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:28.178588 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.178605 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408020 cr=0x43d2f80)
2015-03-31 11:02:28.178622 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.178641 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.178658 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.178670 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.178682 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.178698 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.178709 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.178721 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f37a688]
2015-03-31 11:02:28.178732 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.178749 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.178762 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:28.178773 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) auth_unpin by 0x29a75500 on [inode 1000006b2e1 [2,head] /test_small/small5/blarg1007 auth v178750 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37a688] now 0+0
2015-03-31 11:02:28.179074 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408021 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.179095 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408021 cr=0x25e3e180)
2015-03-31 11:02:28.179097 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408021 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.179101 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408021 cr=0x25e3e180) #10000004e80
2015-03-31 11:02:28.179103 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e80 snap head
2015-03-31 11:02:28.179105 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.179106 7fbe462be700 10 mds.0.server ref is [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.179118 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408021 cr=0x25e3e180)
2015-03-31 11:02:28.179121 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.179138 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.179150 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.179160 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.179166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.179181 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.179198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.179209 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.179222 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.179232 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.179242 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.179249 7fbe462be700 10 mds.0.cache.ino(10000004e80) auth_pin by 0x29a75500 on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58] now 1+0
2015-03-31 11:02:28.179257 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.179274 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.179290 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.179302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.179314 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.179331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.179342 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179356 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179363 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179371 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179387 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408021 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.179391 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408021 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.179403 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.179407 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.179411 7fbe462be700 10 mds.0.cache.ino(10000004e80) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.179414 7fbe462be700 10 mds.0.cache.ino(10000004e80) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.179430 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408021 cr=0x25e3e180)
2015-03-31 11:02:28.179456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.179475 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.179491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.179503 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.179518 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.179528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.179539 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179547 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179555 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179562 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.179568 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.179584 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.179596 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.179606 7fbe462be700 10 mds.0.cache.ino(10000004e80) auth_unpin by 0x29a75500 on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a7f58] now 0+0
2015-03-31 11:02:28.179894 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408022 lookup #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.179912 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408022 cr=0x6fc8f00)
2015-03-31 11:02:28.179914 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408022 lookup #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.179918 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408022 cr=0x6fc8f00) #1000006026a/blarg10070
2015-03-31 11:02:28.179920 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.179922 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10070 [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock) v=177734 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.179932 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.179933 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408022 lookup #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.179945 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.179957 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408022 cr=0x6fc8f00)
2015-03-31 11:02:28.180430 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408023 lookup #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.180452 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408023 cr=0x237c4b00)
2015-03-31 11:02:28.180456 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408023 lookup #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.180459 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408023 cr=0x237c4b00) #1000006026a/blarg10070
2015-03-31 11:02:28.180461 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.180464 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10070 [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock) v=177734 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.180473 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.180474 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408023 lookup #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.180487 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.180501 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408023 cr=0x237c4b00)
2015-03-31 11:02:28.180982 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408024 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.181006 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408024 cr=0xab84380)
2015-03-31 11:02:28.181010 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408024 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.181013 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408024 cr=0xab84380) #10000004e80
2015-03-31 11:02:28.181015 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e80 snap head
2015-03-31 11:02:28.181017 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.181018 7fbe462be700 10 mds.0.server ref is [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.181032 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408024 cr=0xab84380)
2015-03-31 11:02:28.181035 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.181055 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.181068 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.181078 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.181086 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.181102 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.181119 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.181130 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.181142 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.181153 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.181164 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.181171 7fbe462be700 10 mds.0.cache.ino(10000004e80) auth_pin by 0x29a75500 on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58] now 1+0
2015-03-31 11:02:28.181179 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.181203 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.181225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.181237 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.181249 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.181260 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.181270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181285 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181293 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181308 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408024 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.181313 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408024 getattr Xs #10000004e80 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.181326 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.181331 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.181336 7fbe462be700 10 mds.0.cache.ino(10000004e80) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.181339 7fbe462be700 10 mds.0.cache.ino(10000004e80) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.181355 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408024 cr=0xab84380)
2015-03-31 11:02:28.181373 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.181391 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.181408 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.181421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.181432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.181449 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.181460 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181467 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181482 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a7f58]
2015-03-31 11:02:28.181490 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.181507 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.181519 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.181530 7fbe462be700 10 mds.0.cache.ino(10000004e80) auth_unpin by 0x29a75500 on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a7f58] now 0+0
2015-03-31 11:02:28.181832 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408025 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.181852 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408025 cr=0xaeef580)
2015-03-31 11:02:28.181854 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408025 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.181857 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408025 cr=0xaeef580) #1000006026a
2015-03-31 11:02:28.181860 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.181861 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.181862 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.181877 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408025 cr=0xaeef580)
2015-03-31 11:02:28.181880 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.181897 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.181907 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.181918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.181934 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.181950 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.181960 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.181972 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.181982 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.181993 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.182009 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.182025 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.182036 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.182048 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182070 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182088 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31487} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182113 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408025 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.182118 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408025 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.182131 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.182135 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.182138 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31488
2015-03-31 11:02:28.182142 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31488 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.182157 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408025 cr=0xaeef580)
2015-03-31 11:02:28.182173 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.182192 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.182208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.182220 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.182231 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31488} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182247 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31488} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182258 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31488} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182269 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31488} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.182280 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.182296 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.182308 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31488} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.182665 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408026 create #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.182687 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408026 cr=0x8f0b980)
2015-03-31 11:02:28.182691 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182711 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:28.182713 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182726 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.182728 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182742 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182754 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182765 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182775 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.182776 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408026 create #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.182780 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10070
2015-03-31 11:02:28.182781 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408026 cr=0x8f0b980) #1000006026a/blarg10070
2015-03-31 11:02:28.182789 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10070
2015-03-31 11:02:28.182790 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.182792 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.182793 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178751 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.182804 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178751 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.182812 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10070 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178751 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.182823 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408026 cr=0x8f0b980)
2015-03-31 11:02:28.182830 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.182848 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.182860 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock) v=177734 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.182868 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182884 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.182901 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.182917 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.182928 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.182940 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock) v=177734 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.182946 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10070) auth_pin by 0x29a75500 on [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock) v=177734 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0] now 1+0
2015-03-31 11:02:28.182953 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.182964 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.182976 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock) v=177734 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.182983 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177734 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.182990 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177734 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.182997 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177734 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.183004 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177734 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.183010 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10070) auth_pin by 0x3ce8a38 on [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177734 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0] now 2+0
2015-03-31 11:02:28.183018 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a75500) [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dn xlock x=1 by 0x29a75500) (dversion lock w=1 last_client=708310) v=177734 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.183025 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183043 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183060 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183077 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183092 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183105 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183116 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183128 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183140 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183151 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183163 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183174 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183187 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183199 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183210 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183222 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183234 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183246 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183257 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183279 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e2 ([1000006b2e3~340], 832 left)
2015-03-31 11:02:28.183282 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.183289 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e2 [2,head] #1000006b2e2 auth v1 s=0 n() (iversion lock) 0x3f3a2bd8]
2015-03-31 11:02:28.183295 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178752
2015-03-31 11:02:28.183296 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10070)  pre_dirty [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dn xlock x=1 by 0x29a75500) (dversion lock w=1 last_client=708310) pv=178752 v=177734 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.183307 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a2bd8]
2015-03-31 11:02:28.183316 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a75500 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:28.183327 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d1760
2015-03-31 11:02:28.183329 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178753
2015-03-31 11:02:28.183330 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178753 v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.183339 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178753 v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.183348 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3a2bd8]
2015-03-31 11:02:28.183355 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.183357 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183374 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295325
2015-03-31 11:02:28.183375 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295325 v=3295322 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.183381 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295325 (current v 3295322)
2015-03-31 11:02:28.183383 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178753 v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.183392 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.183394 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a75500 on [dir 10000000000 /test_small/ [2,head] auth v=3295324 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:28.183404 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d67d0
2015-03-31 11:02:28.183405 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295326
2015-03-31 11:02:28.183407 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183420 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183433 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183446 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.183448 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.155069 < 1, stopping
2015-03-31 11:02:28.183453 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183466 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - added at 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.183471 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295325 v=3295322 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.183477 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31488} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183492 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3a2bd8]
2015-03-31 11:02:28.183500 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.183504 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183513 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.183514 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183524 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183532 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183540 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183549 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183557 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183565 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183573 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183581 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183588 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183596 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183605 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183613 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183621 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183629 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.183641 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.183642 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.183645 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3a2bd8 tracedn 0x3ce88e0
2015-03-31 11:02:28.183647 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a75500) [dentry #1/test_small/small5/blarg10070 [2,head] auth NULL (dn xlock x=1 by 0x29a75500) (dversion lock w=1 last_client=708310) pv=178752 v=177734 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce88e0]
2015-03-31 11:02:28.183657 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408026 create #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.183666 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.183670 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31489
2015-03-31 11:02:28.183673 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31489 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.183680 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.183684 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.183687 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) including xattrs version 0
2015-03-31 11:02:28.183725 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183753 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183771 7fbe406af700  5 mds.0.log _submit_thread 5419682334~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.183771 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183791 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.183812 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183824 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183836 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183848 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.183859 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183873 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183885 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183896 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183908 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.183919 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.184193 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408027 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.184214 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408027 cr=0xaee9680)
2015-03-31 11:02:28.184217 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408027 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.184220 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408027 cr=0xaee9680) #1000006b2e2
2015-03-31 11:02:28.184222 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e2 snap head
2015-03-31 11:02:28.184224 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.184225 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.184240 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408027 cr=0xaee9680)
2015-03-31 11:02:28.184243 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.184261 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.184273 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.184285 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.184296 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.184312 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.184329 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.184340 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.184352 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.184363 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.184375 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3a2bd8]
2015-03-31 11:02:28.184386 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_pin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a2bd8] now 1+0
2015-03-31 11:02:28.184398 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.184415 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.184431 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.184451 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.184463 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.184478 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.184490 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.184502 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.184520 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408027 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.184525 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408027 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.184537 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.184541 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.184546 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.184549 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.184566 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408027 cr=0xaee9680)
2015-03-31 11:02:28.184582 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.184601 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.184618 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.184630 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.184642 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.184657 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.184669 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.184681 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.184692 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.184709 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.184721 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.184733 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_unpin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8] now 0+0
2015-03-31 11:02:28.185018 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408028 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.185037 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408028 cr=0x9cc2f80)
2015-03-31 11:02:28.185040 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408028 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.185044 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408028 cr=0x9cc2f80) #1000006b2e2
2015-03-31 11:02:28.185046 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e2 snap head
2015-03-31 11:02:28.185047 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.185048 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.185062 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408028 cr=0x9cc2f80)
2015-03-31 11:02:28.185065 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.185083 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.185094 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.185107 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.185118 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.185134 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.185150 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.185161 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.185173 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.185184 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.185197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.185207 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_pin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8] now 1+0
2015-03-31 11:02:28.185219 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.185236 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.185252 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.185264 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.185275 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.185297 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.185308 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.185319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.185338 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408028 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.185343 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408028 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.185354 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.185358 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.185362 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.185366 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.185381 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408028 cr=0x9cc2f80)
2015-03-31 11:02:28.185397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.185416 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.185432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.185447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.185459 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.185471 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.185482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.185494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.185506 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.185522 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.185534 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.185546 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_unpin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8] now 0+0
2015-03-31 11:02:28.189736 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e80 follows 0 op update
2015-03-31 11:02:28.189739 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189751 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.189753 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.189773 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.189775 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189798 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189808 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.189810 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189835 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189845 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189852 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.189853 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189862 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189870 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189872 7fbe406af700  5 mds.0.log _submit_thread 5419683974~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.189878 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189884 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189891 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189898 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189906 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.189917 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.229063 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408029 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.229088 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408029 cr=0x26902f80)
2015-03-31 11:02:28.229093 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408029 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.229097 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408029 cr=0x26902f80) #1000006b2e2
2015-03-31 11:02:28.229099 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e2 snap head
2015-03-31 11:02:28.229101 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.229102 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.229121 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408029 cr=0x26902f80)
2015-03-31 11:02:28.229124 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.229144 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.229157 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.229170 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.229182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.229198 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.229215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.229226 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.229238 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.229250 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.229270 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.229281 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_pin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8] now 1+0
2015-03-31 11:02:28.229298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.229316 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.229332 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.229344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.229356 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.229368 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.229380 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.229392 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.229410 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408029 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.229415 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408029 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.229428 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.229432 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.229437 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.229441 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.229457 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408029 cr=0x26902f80)
2015-03-31 11:02:28.229473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.229492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.229509 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.229522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.229538 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.229551 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.229563 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.229575 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.229586 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.229603 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.229615 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.229628 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_unpin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8] now 0+0
2015-03-31 11:02:28.230900 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e80 follows 0 op update
2015-03-31 11:02:28.230904 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.230917 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.230919 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.230940 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.230941 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.230950 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.230959 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.230961 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.230969 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.230978 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.230985 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.230986 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.230995 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.231002 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.231009 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.231015 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.231016 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.231017 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e80 [2,head] /test_small/small1/blarg10070 auth v136958 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7f58]
2015-03-31 11:02:28.231026 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.270051 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408030 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.270077 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408030 cr=0xab85000)
2015-03-31 11:02:28.270082 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408030 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.270085 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408030 cr=0xab85000) #1000006b2e2
2015-03-31 11:02:28.270088 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e2 snap head
2015-03-31 11:02:28.270089 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.270090 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.270109 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408030 cr=0xab85000)
2015-03-31 11:02:28.270112 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.270132 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.270146 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.270159 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.270171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.270188 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.270205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.270218 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.270231 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.270243 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.270261 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.270272 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_pin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8] now 1+0
2015-03-31 11:02:28.270283 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.270309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.270325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.270338 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.270350 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.270362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.270374 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.270386 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.270405 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408030 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.270410 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408030 getattr Xs #1000006b2e2 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.270424 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.270428 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.270433 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.270437 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.270454 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408030 cr=0xab85000)
2015-03-31 11:02:28.270471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.270490 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.270507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.270520 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.270538 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.270551 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.270563 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.270576 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3a2bd8]
2015-03-31 11:02:28.270587 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.270604 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.270616 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.270629 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) auth_unpin by 0x29a75a00 on [inode 1000006b2e2 [2,head] {#1000006b2e2 /test_small/small5/blarg10070} auth v178752 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3a2bd8] now 0+0
2015-03-31 11:02:28.270912 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408031 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.270931 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408031 cr=0x2645aa80)
2015-03-31 11:02:28.270935 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408031 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.270938 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408031 cr=0x2645aa80) #10000004e66
2015-03-31 11:02:28.270940 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e66 snap head
2015-03-31 11:02:28.270942 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.270943 7fbe462be700 10 mds.0.server ref is [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.270955 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408031 cr=0x2645aa80)
2015-03-31 11:02:28.270958 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.270976 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.270988 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.270999 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.271006 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.271022 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.271038 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.271049 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.271061 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.271071 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.271081 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.271089 7fbe462be700 10 mds.0.cache.ino(10000004e66) auth_pin by 0x29a75a00 on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620] now 1+0
2015-03-31 11:02:28.271097 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.271114 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.271130 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.271142 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.271154 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.271171 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.271181 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271196 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271203 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271210 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271225 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408031 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.271230 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408031 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.271243 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.271247 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.271251 7fbe462be700 10 mds.0.cache.ino(10000004e66) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.271255 7fbe462be700 10 mds.0.cache.ino(10000004e66) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.271270 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408031 cr=0x2645aa80)
2015-03-31 11:02:28.271287 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.271305 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.271321 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.271333 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.271345 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.271359 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.271369 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271377 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271385 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271392 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.271400 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.271416 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.271428 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.271438 7fbe462be700 10 mds.0.cache.ino(10000004e66) auth_unpin by 0x29a75a00 on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a7620] now 0+0
2015-03-31 11:02:28.271734 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408032 lookup #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.271751 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408032 cr=0x43d0280)
2015-03-31 11:02:28.271753 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408032 lookup #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.271757 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408032 cr=0x43d0280) #1000006026a/blarg10071
2015-03-31 11:02:28.271759 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.271761 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10071 [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock) v=177736 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.271770 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.271772 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408032 lookup #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.271788 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.271801 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408032 cr=0x43d0280)
2015-03-31 11:02:28.272273 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408033 lookup #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.272295 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408033 cr=0x25f4b980)
2015-03-31 11:02:28.272299 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408033 lookup #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.272302 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408033 cr=0x25f4b980) #1000006026a/blarg10071
2015-03-31 11:02:28.272304 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.272307 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10071 [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock) v=177736 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.272316 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.272318 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408033 lookup #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.272329 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.272342 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408033 cr=0x25f4b980)
2015-03-31 11:02:28.272815 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408034 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.272839 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408034 cr=0x26903980)
2015-03-31 11:02:28.272841 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408034 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.272845 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408034 cr=0x26903980) #10000004e66
2015-03-31 11:02:28.272847 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e66 snap head
2015-03-31 11:02:28.272849 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.272850 7fbe462be700 10 mds.0.server ref is [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.272863 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408034 cr=0x26903980)
2015-03-31 11:02:28.272866 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.272886 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.272900 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.272910 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.272918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.272933 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.272950 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.272962 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.272975 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.272985 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a75a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.272996 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.273003 7fbe462be700 10 mds.0.cache.ino(10000004e66) auth_pin by 0x29a75a00 on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620] now 1+0
2015-03-31 11:02:28.273012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273035 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273051 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273082 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273094 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.273105 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.273115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273123 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273130 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273138 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273153 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408034 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.273158 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408034 getattr Xs #10000004e66 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.273171 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.273175 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.273180 7fbe462be700 10 mds.0.cache.ino(10000004e66) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.273183 7fbe462be700 10 mds.0.cache.ino(10000004e66) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.273200 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408034 cr=0x26903980)
2015-03-31 11:02:28.273217 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273235 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273252 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273264 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273276 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.273292 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.273303 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273311 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273318 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273325 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a7620]
2015-03-31 11:02:28.273333 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.273350 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.273362 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a75a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.273373 7fbe462be700 10 mds.0.cache.ino(10000004e66) auth_unpin by 0x29a75a00 on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a7620] now 0+0
2015-03-31 11:02:28.273668 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408035 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.273689 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408035 cr=0x26907580)
2015-03-31 11:02:28.273691 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408035 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.273695 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408035 cr=0x26907580) #1000006026a
2015-03-31 11:02:28.273697 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.273698 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.273699 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.273716 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408035 cr=0x26907580)
2015-03-31 11:02:28.273719 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273735 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273746 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.273759 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273774 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.273795 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273806 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.273819 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.273831 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.273844 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273860 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.273876 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273888 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.273900 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.273912 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.273923 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.273934 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31489} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.273962 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408035 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.273966 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408035 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.273978 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.273982 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.273986 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31490
2015-03-31 11:02:28.273990 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31490 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.274005 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408035 cr=0x26907580)
2015-03-31 11:02:28.274022 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274040 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274057 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274069 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274080 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274097 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274109 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274120 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274132 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.274148 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.274159 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.274460 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408036 create #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.274480 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408036 cr=0x25f48a00)
2015-03-31 11:02:28.274482 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408036 create #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.274485 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10071
2015-03-31 11:02:28.274487 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408036 cr=0x25f48a00) #1000006026a/blarg10071
2015-03-31 11:02:28.274489 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10071
2015-03-31 11:02:28.274491 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.274492 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.274494 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178753 v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.274504 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178753 v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.274513 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10071 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178753 v=178751 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.274525 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408036 cr=0x25f48a00)
2015-03-31 11:02:28.274531 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274550 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274562 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock) v=177736 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274569 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274582 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274597 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.274613 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274623 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.274636 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock) v=177736 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274642 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10071) auth_pin by 0x29a75a00 on [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock) v=177736 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0] now 1+0
2015-03-31 11:02:28.274650 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274662 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.274674 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock) v=177736 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274681 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177736 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274688 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177736 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274693 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177736 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274699 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177736 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274713 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10071) auth_pin by 0x3ce8c18 on [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177736 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0] now 2+0
2015-03-31 11:02:28.274720 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a75a00) [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dn xlock x=1 by 0x29a75a00) (dversion lock w=1 last_client=708310) v=177736 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.274727 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274770 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274799 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.274815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274827 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274839 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274851 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.274863 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274875 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274887 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274899 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274911 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274923 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274935 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274946 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274958 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274970 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.274992 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e3 ([1000006b2e4~33f], 831 left)
2015-03-31 11:02:28.274995 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.274998 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e3 [2,head] #1000006b2e3 auth v1 s=0 n() (iversion lock) 0x3f4c6488]
2015-03-31 11:02:28.275003 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178754
2015-03-31 11:02:28.275004 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10071)  pre_dirty [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dn xlock x=1 by 0x29a75a00) (dversion lock w=1 last_client=708310) pv=178754 v=177736 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.275014 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4c6488]
2015-03-31 11:02:28.275023 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a75a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178754 v=178751 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:28.275034 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d18c0
2015-03-31 11:02:28.275036 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178755
2015-03-31 11:02:28.275037 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178755 v=178751 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.275045 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178755 v=178751 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.275054 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4c6488]
2015-03-31 11:02:28.275061 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.275064 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295325 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275080 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295327
2015-03-31 11:02:28.275081 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295327 v=3295322 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.275086 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295327 (current v 3295322)
2015-03-31 11:02:28.275088 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178755 v=178751 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.275096 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.275099 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a75a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295327 v=3295324 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:28.275108 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d0000
2015-03-31 11:02:28.275110 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295328
2015-03-31 11:02:28.275111 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275125 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275138 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275151 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.275153 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.246783 < 1, stopping
2015-03-31 11:02:28.275158 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275170 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.275175 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295327 v=3295322 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.275181 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31490} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275198 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4c6488]
2015-03-31 11:02:28.275206 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.275209 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275219 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.275220 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275230 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275238 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275245 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275256 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275262 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275270 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275279 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275286 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275294 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275302 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275310 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275319 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275326 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275335 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4c6488]
2015-03-31 11:02:28.275346 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.275348 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.275350 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4c6488 tracedn 0x3ce8ac0
2015-03-31 11:02:28.275353 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a75a00) [dentry #1/test_small/small5/blarg10071 [2,head] auth NULL (dn xlock x=1 by 0x29a75a00) (dversion lock w=1 last_client=708310) pv=178754 v=177736 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ac0]
2015-03-31 11:02:28.275362 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408036 create #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.275371 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.275375 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31491
2015-03-31 11:02:28.275378 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31491 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.275385 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.275389 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.275392 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) including xattrs version 0
2015-03-31 11:02:28.275429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.275457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.275474 7fbe406af700  5 mds.0.log _submit_thread 5419684833~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.275474 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.275488 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.275508 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275520 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275532 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275544 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275555 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275568 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275581 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275593 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275604 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275615 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275894 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408037 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.275914 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408037 cr=0x968e900)
2015-03-31 11:02:28.275916 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408037 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.275920 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408037 cr=0x968e900) #1000006b2e3
2015-03-31 11:02:28.275922 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e3 snap head
2015-03-31 11:02:28.275923 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.275924 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4c6488]
2015-03-31 11:02:28.275939 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408037 cr=0x968e900)
2015-03-31 11:02:28.275942 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.275960 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.275972 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.275984 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4c6488]
2015-03-31 11:02:28.275995 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276010 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.276027 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276037 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.276050 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276061 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.276074 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4c6488]
2015-03-31 11:02:28.276084 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_pin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4c6488] now 1+0
2015-03-31 11:02:28.276096 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276113 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276129 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276142 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276155 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276167 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276187 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.276198 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.276215 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408037 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.276219 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408037 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.276230 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.276234 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.276238 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.276242 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.276257 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408037 cr=0x968e900)
2015-03-31 11:02:28.276283 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276302 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276319 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276331 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276346 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276357 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276369 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.276382 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.276393 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.276409 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.276421 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.276433 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_unpin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488] now 0+0
2015-03-31 11:02:28.276704 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408038 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.276725 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408038 cr=0x968af80)
2015-03-31 11:02:28.276727 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408038 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.276730 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408038 cr=0x968af80) #1000006b2e3
2015-03-31 11:02:28.276732 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e3 snap head
2015-03-31 11:02:28.276734 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.276735 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.276749 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408038 cr=0x968af80)
2015-03-31 11:02:28.276751 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276768 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276780 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276797 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.276808 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276823 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.276839 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276850 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.276861 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276873 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.276885 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.276896 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_pin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488] now 1+0
2015-03-31 11:02:28.276907 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276924 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.276940 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276952 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.276968 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276980 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.276992 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.277004 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.277022 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408038 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.277026 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408038 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.277038 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.277041 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.277045 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.277048 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.277064 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408038 cr=0x968af80)
2015-03-31 11:02:28.277074 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.277099 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.277122 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.277134 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.277149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.277161 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.277173 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.277185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.277196 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.277212 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.277224 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.277236 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_unpin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488] now 0+0
2015-03-31 11:02:28.281345 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e66 follows 0 op update
2015-03-31 11:02:28.281348 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281360 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.281362 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.281383 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.281384 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281392 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281401 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.281403 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281417 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281434 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281441 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.281443 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281452 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281457 7fbe406af700  5 mds.0.log _submit_thread 5419686473~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.281460 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281466 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281472 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281479 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281486 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281494 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.281504 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.321050 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408039 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.321076 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408039 cr=0x3b0e680)
2015-03-31 11:02:28.321080 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408039 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.321084 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408039 cr=0x3b0e680) #1000006b2e3
2015-03-31 11:02:28.321086 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e3 snap head
2015-03-31 11:02:28.321087 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.321088 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.321107 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408039 cr=0x3b0e680)
2015-03-31 11:02:28.321110 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.321130 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.321143 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.321157 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.321169 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.321185 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.321202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.321219 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.321232 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.321243 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.321256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.321266 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_pin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488] now 1+0
2015-03-31 11:02:28.321276 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.321301 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.321317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.321330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.321342 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.321354 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.321366 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.321378 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.321397 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408039 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.321402 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408039 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.321415 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.321419 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.321424 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.321428 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.321444 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408039 cr=0x3b0e680)
2015-03-31 11:02:28.321461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.321480 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.321497 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.321510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.321528 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.321540 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.321552 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.321565 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.321576 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.321593 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.321605 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.321618 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_unpin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488] now 0+0
2015-03-31 11:02:28.322824 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e66 follows 0 op update
2015-03-31 11:02:28.322828 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322840 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.322842 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.322863 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.322864 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322874 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322883 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.322885 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322891 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322900 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322907 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.322908 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322917 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322925 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322931 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322938 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.322939 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.322940 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e66 [2,head] /test_small/small1/blarg10071 auth v136960 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a7620]
2015-03-31 11:02:28.322949 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.362075 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408040 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.362098 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408040 cr=0x25f49900)
2015-03-31 11:02:28.362102 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408040 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.362106 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408040 cr=0x25f49900) #1000006b2e3
2015-03-31 11:02:28.362108 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e3 snap head
2015-03-31 11:02:28.362110 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.362111 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.362129 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408040 cr=0x25f49900)
2015-03-31 11:02:28.362132 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.362153 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.362166 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.362180 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.362192 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.362209 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.362225 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.362236 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.362250 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.362262 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.362274 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.362293 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_pin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488] now 1+0
2015-03-31 11:02:28.362305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.362329 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.362346 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.362358 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.362370 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.362382 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.362395 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.362406 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.362425 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408040 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.362430 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408040 getattr Xs #1000006b2e3 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.362444 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.362448 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.362453 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.362457 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.362473 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408040 cr=0x25f49900)
2015-03-31 11:02:28.362490 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.362509 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.362526 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.362538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.362557 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.362570 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.362582 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.362594 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4c6488]
2015-03-31 11:02:28.362606 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.362622 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.362634 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.362647 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) auth_unpin by 0x29a76400 on [inode 1000006b2e3 [2,head] {#1000006b2e3 /test_small/small5/blarg10071} auth v178754 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4c6488] now 0+0
2015-03-31 11:02:28.362943 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408041 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.362963 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408041 cr=0x968a580)
2015-03-31 11:02:28.362965 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408041 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.362968 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408041 cr=0x968a580) #10000004e5d
2015-03-31 11:02:28.362970 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5d snap head
2015-03-31 11:02:28.362972 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.362973 7fbe462be700 10 mds.0.server ref is [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.362984 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408041 cr=0x968a580)
2015-03-31 11:02:28.362987 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.363004 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.363016 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.363026 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.363033 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.363049 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.363065 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.363076 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.363088 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.363098 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a76400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.363108 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.363115 7fbe462be700 10 mds.0.cache.ino(10000004e5d) auth_pin by 0x29a76400 on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8] now 1+0
2015-03-31 11:02:28.363123 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.363139 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.363155 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.363167 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.363179 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.363189 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.363205 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363212 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363228 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363236 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363251 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408041 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.363256 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408041 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.363269 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.363273 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.363277 7fbe462be700 10 mds.0.cache.ino(10000004e5d) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.363281 7fbe462be700 10 mds.0.cache.ino(10000004e5d) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.363296 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408041 cr=0x968a580)
2015-03-31 11:02:28.363313 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.363331 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.363347 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.363360 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.363371 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.363385 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.363396 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363404 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363418 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.363426 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.363442 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.363454 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a76400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.363465 7fbe462be700 10 mds.0.cache.ino(10000004e5d) auth_unpin by 0x29a76400 on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a6ce8] now 0+0
2015-03-31 11:02:28.363765 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408042 lookup #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.363802 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408042 cr=0x236b9180)
2015-03-31 11:02:28.363805 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408042 lookup #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.363808 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408042 cr=0x236b9180) #1000006026a/blarg10072
2015-03-31 11:02:28.363810 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.363813 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10072 [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock) v=177738 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.363821 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.363823 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408042 lookup #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.363834 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.363847 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408042 cr=0x236b9180)
2015-03-31 11:02:28.364335 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408043 lookup #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.364357 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408043 cr=0x26907080)
2015-03-31 11:02:28.364360 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408043 lookup #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.364364 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408043 cr=0x26907080) #1000006026a/blarg10072
2015-03-31 11:02:28.364366 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.364369 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10072 [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock) v=177738 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.364378 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.364379 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408043 lookup #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.364392 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.364406 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408043 cr=0x26907080)
2015-03-31 11:02:28.364893 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408044 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.364916 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408044 cr=0x5e8a080)
2015-03-31 11:02:28.364920 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408044 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.364923 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408044 cr=0x5e8a080) #10000004e5d
2015-03-31 11:02:28.364926 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e5d snap head
2015-03-31 11:02:28.364927 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.364928 7fbe462be700 10 mds.0.server ref is [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.364942 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408044 cr=0x5e8a080)
2015-03-31 11:02:28.364945 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.364965 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.364979 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.364989 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.364997 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365013 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.365030 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365041 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.365054 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.365064 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a76400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.365075 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.365082 7fbe462be700 10 mds.0.cache.ino(10000004e5d) auth_pin by 0x29a76400 on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8] now 1+0
2015-03-31 11:02:28.365090 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365112 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365137 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365149 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365161 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.365172 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.365182 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365190 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365197 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365205 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365220 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408044 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.365225 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408044 getattr Xs #10000004e5d 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.365238 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.365242 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.365248 7fbe462be700 10 mds.0.cache.ino(10000004e5d) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.365252 7fbe462be700 10 mds.0.cache.ino(10000004e5d) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.365268 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408044 cr=0x5e8a080)
2015-03-31 11:02:28.365286 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365305 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365322 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365334 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365351 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.365362 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.365373 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365382 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365389 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365396 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a6ce8]
2015-03-31 11:02:28.365404 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.365421 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.365434 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a76400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.365444 7fbe462be700 10 mds.0.cache.ino(10000004e5d) auth_unpin by 0x29a76400 on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a6ce8] now 0+0
2015-03-31 11:02:28.365763 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408045 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.365788 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408045 cr=0xaee8a00)
2015-03-31 11:02:28.365791 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408045 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.365794 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408045 cr=0xaee8a00) #1000006026a
2015-03-31 11:02:28.365796 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.365798 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.365799 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.365824 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408045 cr=0xaee8a00)
2015-03-31 11:02:28.365827 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365844 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365856 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.365868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365883 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.365899 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365910 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.365922 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.365934 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.365946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365962 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.365978 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.365990 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366014 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366027 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366039 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31491} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366057 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408045 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.366062 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408045 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.366074 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.366078 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.366082 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31492
2015-03-31 11:02:28.366084 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31492 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.366105 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408045 cr=0xaee8a00)
2015-03-31 11:02:28.366114 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366173 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366185 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366201 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366214 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366225 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366237 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.366252 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.366264 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.366599 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408046 create #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.366619 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408046 cr=0x968df00)
2015-03-31 11:02:28.366622 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408046 create #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.366626 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10072
2015-03-31 11:02:28.366627 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408046 cr=0x968df00) #1000006026a/blarg10072
2015-03-31 11:02:28.366629 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10072
2015-03-31 11:02:28.366631 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.366632 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.366634 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178755 v=178751 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.366644 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178755 v=178751 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.366654 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10072 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178755 v=178751 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.366665 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408046 cr=0x968df00)
2015-03-31 11:02:28.366672 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366691 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366704 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock) v=177738 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366712 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366724 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366740 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.366756 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366767 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.366779 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock) v=177738 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366789 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10072) auth_pin by 0x29a76400 on [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock) v=177738 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0] now 1+0
2015-03-31 11:02:28.366797 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.366810 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.366823 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock) v=177738 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366829 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177738 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366836 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177738 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366843 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177738 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366848 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177738 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366871 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10072) auth_pin by 0x3ce8df8 on [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177738 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0] now 2+0
2015-03-31 11:02:28.366887 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a76400) [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dn xlock x=1 by 0x29a76400) (dversion lock w=1 last_client=708310) v=177738 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.366894 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366913 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366930 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366946 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.366962 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366974 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366986 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.366998 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367010 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367034 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367046 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367058 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367069 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367082 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367094 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367105 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367117 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367140 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e4 ([1000006b2e5~33e], 830 left)
2015-03-31 11:02:28.367143 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.367146 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e4 [2,head] #1000006b2e4 auth v1 s=0 n() (iversion lock) 0x3f417b40]
2015-03-31 11:02:28.367151 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178756
2015-03-31 11:02:28.367152 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10072)  pre_dirty [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dn xlock x=1 by 0x29a76400) (dversion lock w=1 last_client=708310) pv=178756 v=177738 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.367163 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f417b40]
2015-03-31 11:02:28.367171 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a76400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178756 v=178751 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:28.367183 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d1340
2015-03-31 11:02:28.367184 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178757
2015-03-31 11:02:28.367185 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178751 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.367195 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178751 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.367203 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f417b40]
2015-03-31 11:02:28.367210 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.367214 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295327 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367231 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295329
2015-03-31 11:02:28.367232 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295329 v=3295322 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.367238 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295329 (current v 3295322)
2015-03-31 11:02:28.367240 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178751 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=83+1521,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.367248 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.367250 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a76400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295329 v=3295324 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:28.367259 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d3b20
2015-03-31 11:02:28.367261 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295330
2015-03-31 11:02:28.367263 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367277 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367290 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367304 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.367306 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.338929 < 1, stopping
2015-03-31 11:02:28.367311 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367324 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.367328 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295329 v=3295322 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.367335 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31492} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367350 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f417b40]
2015-03-31 11:02:28.367359 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.367362 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f417b40]
2015-03-31 11:02:28.367371 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.367373 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367382 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367391 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367399 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367407 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367415 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367423 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367431 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367439 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367447 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367455 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367463 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367472 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367479 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367487 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f417b40]
2015-03-31 11:02:28.367500 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.367501 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.367503 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f417b40 tracedn 0x3ce8ca0
2015-03-31 11:02:28.367506 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a76400) [dentry #1/test_small/small5/blarg10072 [2,head] auth NULL (dn xlock x=1 by 0x29a76400) (dversion lock w=1 last_client=708310) pv=178756 v=177738 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8ca0]
2015-03-31 11:02:28.367515 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408046 create #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.367524 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.367528 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31493
2015-03-31 11:02:28.367530 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31493 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.367537 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.367541 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.367543 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) including xattrs version 0
2015-03-31 11:02:28.367581 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.367606 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.367626 7fbe406af700  5 mds.0.log _submit_thread 5419687332~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.367623 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.367638 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.367659 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367672 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367684 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367695 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.367707 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367720 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367733 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367744 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367756 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.367767 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368045 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408047 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.368066 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408047 cr=0x9cc5c80)
2015-03-31 11:02:28.368069 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408047 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.368073 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408047 cr=0x9cc5c80) #1000006b2e4
2015-03-31 11:02:28.368075 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e4 snap head
2015-03-31 11:02:28.368077 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.368078 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f417b40]
2015-03-31 11:02:28.368093 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408047 cr=0x9cc5c80)
2015-03-31 11:02:28.368096 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.368113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.368125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f417b40]
2015-03-31 11:02:28.368148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.368164 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.368180 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.368191 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.368203 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368215 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.368227 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f417b40]
2015-03-31 11:02:28.368237 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_pin by 0x29a76900 on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f417b40] now 1+0
2015-03-31 11:02:28.368249 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.368266 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.368282 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.368294 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.368305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368318 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.368343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.368361 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408047 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.368366 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408047 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.368378 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.368382 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.368386 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.368390 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.368405 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408047 cr=0x9cc5c80)
2015-03-31 11:02:28.368422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.368440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.368464 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.368477 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.368488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368504 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368516 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.368528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.368538 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.368555 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.368567 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.368580 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_unpin by 0x29a76900 on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f417b40] now 0+0
2015-03-31 11:02:28.368893 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408048 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.368912 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408048 cr=0xaeeda00)
2015-03-31 11:02:28.368914 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408048 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.368918 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408048 cr=0xaeeda00) #1000006b2e4
2015-03-31 11:02:28.368920 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e4 snap head
2015-03-31 11:02:28.368921 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.368922 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.368936 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408048 cr=0xaeeda00)
2015-03-31 11:02:28.368939 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.368956 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.368968 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.368980 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.368991 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.369006 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.369022 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.369033 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.369045 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.369057 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.369069 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.369080 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_pin by 0x29a76900 on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40] now 1+0
2015-03-31 11:02:28.369091 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.369109 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.369125 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.369139 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.369160 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.369173 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.369185 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.369196 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.369214 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408048 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.369218 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408048 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.369230 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.369234 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.369238 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.369242 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.369256 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408048 cr=0xaeeda00)
2015-03-31 11:02:28.369273 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.369291 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.369307 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.369323 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.369335 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.369347 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.369359 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.369371 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.369382 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.369399 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.369411 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.369423 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_unpin by 0x29a76900 on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f417b40] now 0+0
2015-03-31 11:02:28.372615 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5d follows 0 op update
2015-03-31 11:02:28.372618 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372631 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.372633 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.372653 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.372654 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372662 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372671 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.372673 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372687 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372704 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372711 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.372713 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372722 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372727 7fbe406af700  5 mds.0.log _submit_thread 5419688972~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.372730 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372736 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372742 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372749 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372756 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372763 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.372774 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.412060 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408049 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412083 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408049 cr=0x60a8500)
2015-03-31 11:02:28.412087 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408049 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412091 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408049 cr=0x60a8500) #1000006b2e4
2015-03-31 11:02:28.412094 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e4 snap head
2015-03-31 11:02:28.412095 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.412096 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.412115 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408049 cr=0x60a8500)
2015-03-31 11:02:28.412118 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412138 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412151 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412164 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.412176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412193 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.412209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412221 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.412233 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412245 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.412257 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.412268 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_pin by 0x29a76900 on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40] now 1+0
2015-03-31 11:02:28.412280 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412304 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412320 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412333 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412345 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412357 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412370 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.412381 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.412400 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408049 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412405 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408049 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412418 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.412422 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.412426 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.412430 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.412446 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408049 cr=0x60a8500)
2015-03-31 11:02:28.412464 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412524 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412542 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412554 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.412566 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.412577 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.412594 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.412606 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.412619 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_unpin by 0x29a76900 on [inode 1000006b2e4 [2,head] {#1000006b2e4 /test_small/small5/blarg10072} auth v178756 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f417b40] now 0+0
2015-03-31 11:02:28.412661 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408050 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412689 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408050 cr=0x23fbb700)
2015-03-31 11:02:28.412692 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408050 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412695 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408050 cr=0x23fbb700) #1000006026a
2015-03-31 11:02:28.412697 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.412698 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.412699 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412715 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408050 cr=0x23fbb700)
2015-03-31 11:02:28.412718 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412735 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412746 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412758 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412774 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.412806 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412817 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.412829 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412841 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.412853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412869 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.412886 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412897 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.412909 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412921 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412933 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412945 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31493} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.412965 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408050 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412970 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408050 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.412987 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.412991 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.412995 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31494
2015-03-31 11:02:28.412997 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31494 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.413012 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408050 cr=0x23fbb700)
2015-03-31 11:02:28.413028 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.413046 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.413062 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.413074 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.413086 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413102 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413114 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413125 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413137 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.413153 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.413164 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.413527 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408051 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.413554 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408051 cr=0x682d000)
2015-03-31 11:02:28.413557 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408051 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.413562 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408051 cr=0x682d000) #1000006026a
2015-03-31 11:02:28.413564 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.413565 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.413567 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413587 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408051 cr=0x682d000)
2015-03-31 11:02:28.413591 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.413609 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.413622 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413635 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.413650 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.413667 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.413678 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.413691 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413703 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.413716 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.413736 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.413752 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.413770 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.413781 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413799 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413811 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413823 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413835 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.413847 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.413860 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x298e0b10 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:28.413862 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.427929 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.427936 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:28.427949 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:28.427951 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) mark_dirty [inode 1000006b2e2 [2,head] /test_small/small5/blarg10070 auth v178751 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.427969 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10070)  mark_dirty [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178752 v=177734 ap=2+0 inode=0x3f3a2bd8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0]
2015-03-31 11:02:28.427981 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178752 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 83=83+0) hs=84+1520,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178752
2015-03-31 11:02:28.427993 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) mark_dirty_parent
2015-03-31 11:02:28.427995 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295322 pv3295329 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 83=83+0) n(v1 rc2015-03-31 11:03:05.000000 84=83+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428012 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295329 v=3295322 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.428017 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295325 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295325
2015-03-31 11:02:28.428027 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178753 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 84=84+0) hs=84+1520,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178753
2015-03-31 11:02:28.428036 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295326 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382380+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295326
2015-03-31 11:02:28.428046 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e2 [2,head] /test_small/small5/blarg10070 auth v178752 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3a2bd8]
2015-03-31 11:02:28.428058 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:28.428061 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27559 client_caps(grant ino 1000006b2e2 1851543 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.428086 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178752 ap=2+0 inode=0x3f3a2bd8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0]
2015-03-31 11:02:28.428096 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408026 create #1000006026a/blarg10070 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.428110 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e2
2015-03-31 11:02:28.428113 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178752 ap=2+0 inode=0x3f3a2bd8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0]
2015-03-31 11:02:28.428123 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178752 ap=2+0 inode=0x3f3a2bd8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0]
2015-03-31 11:02:28.428130 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178752 ap=2+0 inode=0x3f3a2bd8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0]
2015-03-31 11:02:28.428137 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10070) auth_unpin by 0x3ce8a38 on [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178752 ap=1+0 inode=0x3f3a2bd8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0] now 1+0
2015-03-31 11:02:28.428145 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178752 ap=1+0 inode=0x3f3a2bd8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0]
2015-03-31 11:02:28.428151 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.428168 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178752 ap=1+0 inode=0x3f3a2bd8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce88e0]
2015-03-31 11:02:28.428176 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295325 pv3295329 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 85=84+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428191 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295325 pv3295329 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 85=84+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428205 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295325 pv3295329 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 85=84+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428226 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408026 cr=0x8f0b980)
2015-03-31 11:02:28.428235 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.428254 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.428267 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10070) auth_unpin by 0x29a75500 on [dentry #1/test_small/small5/blarg10070 [2,head] auth (dn sync l=1) (dversion lock) v=178752 inode=0x3f3a2bd8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce88e0] now 0+0
2015-03-31 11:02:28.428275 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295326 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382380+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:28.428288 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178753 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 84=84+0) hs=84+1520,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:28.428297 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295325 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 85=84+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.428329 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.428331 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:28.428336 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:28.428338 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) mark_dirty [inode 1000006b2e3 [2,head] /test_small/small5/blarg10071 auth v178753 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.428350 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10071)  mark_dirty [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178754 v=177736 ap=2+0 inode=0x3f4c6488 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0]
2015-03-31 11:02:28.428358 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178754 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 84=84+0) hs=85+1519,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178754
2015-03-31 11:02:28.428368 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) mark_dirty_parent
2015-03-31 11:02:28.428370 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295325 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 84=84+0) n(v1 rc2015-03-31 11:03:05.000000 85=84+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428384 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295329 v=3295325 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.428388 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295327 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382380+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295327
2015-03-31 11:02:28.428400 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178755 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 85=85+0) hs=85+1519,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178755
2015-03-31 11:02:28.428408 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295328 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382388=382381+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295328
2015-03-31 11:02:28.428418 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e3 [2,head] /test_small/small5/blarg10071 auth v178754 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4c6488]
2015-03-31 11:02:28.428430 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:28.428432 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27560 client_caps(grant ino 1000006b2e3 1851544 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.428453 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178754 ap=2+0 inode=0x3f4c6488 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0]
2015-03-31 11:02:28.428462 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408036 create #1000006026a/blarg10071 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.428474 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e3
2015-03-31 11:02:28.428478 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178754 ap=2+0 inode=0x3f4c6488 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0]
2015-03-31 11:02:28.428486 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178754 ap=2+0 inode=0x3f4c6488 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0]
2015-03-31 11:02:28.428492 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178754 ap=2+0 inode=0x3f4c6488 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0]
2015-03-31 11:02:28.428498 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10071) auth_unpin by 0x3ce8c18 on [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178754 ap=1+0 inode=0x3f4c6488 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0] now 1+0
2015-03-31 11:02:28.428504 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178754 ap=1+0 inode=0x3f4c6488 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0]
2015-03-31 11:02:28.428511 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.428527 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178754 ap=1+0 inode=0x3f4c6488 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ac0]
2015-03-31 11:02:28.428534 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295327 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 86=85+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428549 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295327 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 86=85+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428561 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295327 pv3295329 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 86=85+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428583 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408036 cr=0x25f48a00)
2015-03-31 11:02:28.428591 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a75a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.428610 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a75a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.428622 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10071) auth_unpin by 0x29a75a00 on [dentry #1/test_small/small5/blarg10071 [2,head] auth (dn sync l=1) (dversion lock) v=178754 inode=0x3f4c6488 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce8ac0] now 0+0
2015-03-31 11:02:28.428630 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a75a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295328 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382388=382381+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:28.428642 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a75a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178755 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 85=85+0) hs=85+1519,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:28.428650 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a75a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295327 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 86=85+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.428682 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.428684 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:28.428689 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:28.428690 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) mark_dirty [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178755 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.428703 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10072)  mark_dirty [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178756 v=177738 ap=2+0 inode=0x3f417b40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0]
2015-03-31 11:02:28.428711 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178756 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 85=85+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178756
2015-03-31 11:02:28.428720 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) mark_dirty_parent
2015-03-31 11:02:28.428722 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295327 pv3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 85=85+0) n(v1 rc2015-03-31 11:03:05.000000 86=85+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428735 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295329 v=3295327 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.428740 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295329 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382388=382381+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295329
2015-03-31 11:02:28.428751 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178757 v=178757 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178757
2015-03-31 11:02:28.428759 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295330 v=3295330 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382389=382382+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295330
2015-03-31 11:02:28.428769 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.428780 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:28.428799 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27561 client_caps(grant ino 1000006b2e4 1851545 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.428822 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178756 ap=2+0 inode=0x3f417b40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0]
2015-03-31 11:02:28.428832 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408046 create #1000006026a/blarg10072 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.428844 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e4
2015-03-31 11:02:28.428848 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178756 ap=2+0 inode=0x3f417b40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0]
2015-03-31 11:02:28.428857 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178756 ap=2+0 inode=0x3f417b40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0]
2015-03-31 11:02:28.428864 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178756 ap=2+0 inode=0x3f417b40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0]
2015-03-31 11:02:28.428871 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10072) auth_unpin by 0x3ce8df8 on [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178756 ap=1+0 inode=0x3f417b40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0] now 1+0
2015-03-31 11:02:28.428878 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178756 ap=1+0 inode=0x3f417b40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0]
2015-03-31 11:02:28.428885 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.428901 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.428914 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178756 ap=1+0 inode=0x3f417b40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8ca0]
2015-03-31 11:02:28.428922 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428936 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428949 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428961 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:28.428964 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.428976 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.428988 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:28.428990 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408051 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.428994 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408051 cr=0x682d000) #1000006026a
2015-03-31 11:02:28.428997 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.428998 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.428999 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429011 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408051 cr=0x682d000)
2015-03-31 11:02:28.429015 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.429032 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.429044 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429054 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.429071 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.429082 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429092 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.429109 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.429120 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429130 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429143 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429154 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429166 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429178 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429190 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429201 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429213 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31494} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429234 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40408051 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.429239 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408051 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.429252 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.429256 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.429260 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31495
2015-03-31 11:02:28.429263 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31495 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.429284 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408051 cr=0x682d000)
2015-03-31 11:02:28.429294 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.429319 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.429336 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.429348 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.429359 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429372 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429384 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429395 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429407 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429418 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429432 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429443 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429455 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429465 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429476 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76900 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.429492 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.429503 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.429533 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429547 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429558 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429569 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.429592 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408046 cr=0x968df00)
2015-03-31 11:02:28.429600 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76400 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.429617 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.429629 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10072) auth_unpin by 0x29a76400 on [dentry #1/test_small/small5/blarg10072 [2,head] auth (dn sync l=1) (dversion lock) v=178756 inode=0x3f417b40 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce8ca0] now 0+0
2015-03-31 11:02:28.429638 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a76400 on [dir 10000000000 /test_small/ [2,head] auth v=3295330 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382389=382382+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:28.429651 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a76400 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:28.429660 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.429696 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e5d follows 0 op update
2015-03-31 11:02:28.429705 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429721 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.429723 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.429745 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.429746 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429756 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429766 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.429768 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429775 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429790 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429796 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.429798 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429807 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429815 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429822 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429829 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.429831 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.429832 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e5d [2,head] /test_small/small1/blarg10072 auth v136962 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a6ce8]
2015-03-31 11:02:28.429840 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.429864 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408052 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.429886 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408052 cr=0x9ae1400)
2015-03-31 11:02:28.429889 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408052 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.429892 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408052 cr=0x9ae1400) #1000006b2e4
2015-03-31 11:02:28.429894 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e4 snap head
2015-03-31 11:02:28.429897 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.429898 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.429912 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408052 cr=0x9ae1400)
2015-03-31 11:02:28.429916 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.429934 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.429946 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.429957 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.429968 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.429989 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.430005 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.430016 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.430029 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.430039 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.430051 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f417b40]
2015-03-31 11:02:28.430061 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_pin by 0x29a76e00 on [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f417b40] now 1+0
2015-03-31 11:02:28.430072 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430089 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430106 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430118 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430130 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430141 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430153 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.430164 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.430182 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408052 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.430187 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408052 getattr Xs #1000006b2e4 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.430200 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.430204 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.430208 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:28.430212 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.430229 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408052 cr=0x9ae1400)
2015-03-31 11:02:28.430247 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430266 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430283 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430295 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430306 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430321 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430332 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.430344 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f417b40]
2015-03-31 11:02:28.430354 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.430371 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.430383 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:28.430394 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) auth_unpin by 0x29a76e00 on [inode 1000006b2e4 [2,head] /test_small/small5/blarg10072 auth v178756 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f417b40] now 0+0
2015-03-31 11:02:28.430439 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408053 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.430460 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408053 cr=0x9ae1b80)
2015-03-31 11:02:28.430463 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408053 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.430466 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408053 cr=0x9ae1b80) #1000006026a
2015-03-31 11:02:28.430468 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.430469 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.430470 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.430483 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408053 cr=0x9ae1b80)
2015-03-31 11:02:28.430486 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.430502 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.430513 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.430523 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.430538 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.430554 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.430564 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.430575 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.430585 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.430597 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430613 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430628 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430640 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430652 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430662 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430674 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430685 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31495} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430703 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408053 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.430707 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408053 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.430718 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.430721 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.430732 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31496
2015-03-31 11:02:28.430734 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31496 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.430749 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408053 cr=0x9ae1b80)
2015-03-31 11:02:28.430766 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430788 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.430805 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430816 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.430828 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430842 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430854 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430865 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.430876 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.430892 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.430904 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.431053 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408054 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431074 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408054 cr=0xa250f00)
2015-03-31 11:02:28.431077 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408054 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431080 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408054 cr=0xa250f00) #10000004e6a
2015-03-31 11:02:28.431082 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6a snap head
2015-03-31 11:02:28.431084 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.431085 7fbe462be700 10 mds.0.server ref is [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.431097 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408054 cr=0xa250f00)
2015-03-31 11:02:28.431100 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.431117 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.431128 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.431138 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.431145 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.431160 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.431176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.431187 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.431199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.431209 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a76e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.431219 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.431226 7fbe462be700 10 mds.0.cache.ino(10000004e6a) auth_pin by 0x29a76e00 on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0] now 1+0
2015-03-31 11:02:28.431234 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.431250 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.431266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.431278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.431290 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.431308 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.431318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431339 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431347 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431364 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408054 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431368 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408054 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431380 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.431383 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.431388 7fbe462be700 10 mds.0.cache.ino(10000004e6a) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.431391 7fbe462be700 10 mds.0.cache.ino(10000004e6a) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.431405 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408054 cr=0xa250f00)
2015-03-31 11:02:28.431422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.431440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.431456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.431468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.431480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.431493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.431504 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431512 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431519 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431525 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.431532 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.431549 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.431560 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a76e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.431571 7fbe462be700 10 mds.0.cache.ino(10000004e6a) auth_unpin by 0x29a76e00 on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a63b0] now 0+0
2015-03-31 11:02:28.431685 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408055 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431705 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408055 cr=0x51da300)
2015-03-31 11:02:28.431707 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408055 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431710 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408055 cr=0x51da300) #1000006026a
2015-03-31 11:02:28.431713 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.431714 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.431715 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.431729 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408055 cr=0x51da300)
2015-03-31 11:02:28.431732 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.431749 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.431760 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.431771 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.431791 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.431807 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.431818 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.431830 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.431841 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.431853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.431869 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.431885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.431897 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.431909 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.431920 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.431939 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.431959 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31496} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.431978 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408055 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431982 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408055 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.431994 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.431998 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.432002 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31497
2015-03-31 11:02:28.432004 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31497 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.432019 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408055 cr=0x51da300)
2015-03-31 11:02:28.432037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.432054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.432070 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.432082 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.432096 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.432108 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.432119 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.432129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.432140 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.432156 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.432167 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.432295 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408056 lookup #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.432315 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408056 cr=0x45a5c80)
2015-03-31 11:02:28.432317 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408056 lookup #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.432320 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408056 cr=0x45a5c80) #1000006026a/blarg10073
2015-03-31 11:02:28.432322 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.432325 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10073 [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock) v=177740 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.432334 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.432336 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408056 lookup #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.432346 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.432358 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408056 cr=0x45a5c80)
2015-03-31 11:02:28.472058 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408057 lookup #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472077 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408057 cr=0x5410f00)
2015-03-31 11:02:28.472082 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408057 lookup #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472085 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408057 cr=0x5410f00) #1000006026a/blarg10073
2015-03-31 11:02:28.472087 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.472089 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10073 [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock) v=177740 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.472096 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.472097 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408057 lookup #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472106 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.472122 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408057 cr=0x5410f00)
2015-03-31 11:02:28.472152 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408058 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472171 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408058 cr=0x26903700)
2015-03-31 11:02:28.472173 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408058 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472176 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408058 cr=0x26903700) #1000006026a
2015-03-31 11:02:28.472182 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.472184 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.472185 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.472200 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408058 cr=0x26903700)
2015-03-31 11:02:28.472203 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.472219 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.472231 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.472241 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.472257 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.472273 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.472283 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.472296 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.472306 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.472318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.472334 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.472352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.472363 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.472374 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472385 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472397 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472409 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31497} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472434 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408058 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472447 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408058 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472458 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.472462 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.472466 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31498
2015-03-31 11:02:28.472468 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31498 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.472482 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408058 cr=0x26903700)
2015-03-31 11:02:28.472499 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.472517 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.472534 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.472545 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.472557 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472571 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472582 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472593 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472604 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.472619 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.472631 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.472670 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408059 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472689 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408059 cr=0x25f4ee00)
2015-03-31 11:02:28.472692 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408059 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472695 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408059 cr=0x25f4ee00) #1000006026a
2015-03-31 11:02:28.472697 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.472698 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.472699 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.472712 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408059 cr=0x25f4ee00)
2015-03-31 11:02:28.472715 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.472731 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.472742 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.472752 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.472768 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.472790 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.472801 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.472819 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.472830 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.472849 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.472865 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.472880 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.472892 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.472903 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472914 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472926 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472937 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31498} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.472956 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408059 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472960 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408059 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.472970 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.472974 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.472977 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31499
2015-03-31 11:02:28.472980 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31499 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.472994 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408059 cr=0x25f4ee00)
2015-03-31 11:02:28.473011 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.473028 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.473044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.473056 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.473067 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.473082 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.473093 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.473104 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.473115 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.473130 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.473141 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.473186 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408060 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.473205 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408060 cr=0xb264880)
2015-03-31 11:02:28.473207 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408060 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.473210 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408060 cr=0xb264880) #10000004e6a
2015-03-31 11:02:28.473212 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6a snap head
2015-03-31 11:02:28.473214 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.473215 7fbe462be700 10 mds.0.server ref is [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.473223 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408060 cr=0xb264880)
2015-03-31 11:02:28.473226 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.473242 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.473253 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.473263 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.473269 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.473284 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.473300 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.473311 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.473331 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.473341 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x29a76e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.473352 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.473359 7fbe462be700 10 mds.0.cache.ino(10000004e6a) auth_pin by 0x29a76e00 on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0] now 1+0
2015-03-31 11:02:28.473367 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.473383 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.473399 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.473411 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.473423 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.473433 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.473443 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473450 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473465 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473472 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473487 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408060 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.473491 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408060 getattr Xs #10000004e6a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.473503 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.473506 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.473510 7fbe462be700 10 mds.0.cache.ino(10000004e6a) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.473512 7fbe462be700 10 mds.0.cache.ino(10000004e6a) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.473526 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408060 cr=0xb264880)
2015-03-31 11:02:28.473543 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.473561 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.473577 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.473588 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.473599 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.473612 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.473623 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473631 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473638 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473645 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a63b0]
2015-03-31 11:02:28.473653 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.473669 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.473681 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x29a76e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.473691 7fbe462be700 10 mds.0.cache.ino(10000004e6a) auth_unpin by 0x29a76e00 on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a63b0] now 0+0
2015-03-31 11:02:28.473985 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408061 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474004 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408061 cr=0xb267080)
2015-03-31 11:02:28.474007 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408061 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474011 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408061 cr=0xb267080) #1000006026a
2015-03-31 11:02:28.474013 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.474014 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.474015 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.474029 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408061 cr=0xb267080)
2015-03-31 11:02:28.474032 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.474048 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.474059 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.474070 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.474085 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.474100 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.474111 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.474122 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.474133 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.474144 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.474160 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.474175 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.474185 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.474197 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474207 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474219 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474230 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31499} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474251 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408061 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474256 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408061 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474274 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.474278 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.474282 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31500
2015-03-31 11:02:28.474284 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31500 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.474298 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408061 cr=0xb267080)
2015-03-31 11:02:28.474322 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.474341 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.474357 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.474369 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.474384 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474396 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474407 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474418 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474429 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.474445 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.474457 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.474679 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408062 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474698 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408062 cr=0x60aa300)
2015-03-31 11:02:28.474701 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408062 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474704 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408062 cr=0x60aa300) #1000006026a
2015-03-31 11:02:28.474706 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.474708 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.474709 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.474723 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408062 cr=0x60aa300)
2015-03-31 11:02:28.474725 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.474741 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.474752 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.474763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.474777 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.474797 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.474808 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.474820 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.474830 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.474842 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.474857 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.474872 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.474884 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.474895 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474906 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474917 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474929 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31500} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.474945 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408062 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474950 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408062 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.474968 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.474971 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.474975 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31501
2015-03-31 11:02:28.474977 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31501 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.474992 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408062 cr=0x60aa300)
2015-03-31 11:02:28.475008 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.475026 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.475042 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.475054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.475065 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475080 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475091 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475101 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475113 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.475129 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.475140 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.475272 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408063 create #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.475290 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408063 cr=0x60afa80)
2015-03-31 11:02:28.475293 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475307 7fbe462be700 10 mds.0.locker  NOT changing wanted p -> p (issue_seq 31500 != last_issue 31501)
2015-03-31 11:02:28.475309 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475320 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.475322 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475334 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475346 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475356 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475366 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.475368 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408063 create #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.475371 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10073
2015-03-31 11:02:28.475372 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408063 cr=0x60afa80) #1000006026a/blarg10073
2015-03-31 11:02:28.475375 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10073
2015-03-31 11:02:28.475376 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.475378 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.475379 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.475388 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.475395 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10073 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.475406 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408063 cr=0x60afa80)
2015-03-31 11:02:28.475412 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.475429 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.475440 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock) v=177740 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475447 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475459 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.475474 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.475490 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.475501 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.475512 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock) v=177740 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475520 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10073) auth_pin by 0x29a76e00 on [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock) v=177740 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80] now 1+0
2015-03-31 11:02:28.475533 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.475557 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.475570 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock) v=177740 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475577 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177740 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475584 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177740 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475590 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177740 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475597 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177740 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475603 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10073) auth_pin by 0x3ce8fd8 on [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177740 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80] now 2+0
2015-03-31 11:02:28.475611 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x29a76e00) [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn xlock x=1 by 0x29a76e00) (dversion lock w=1 last_client=708310) v=177740 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.475618 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.475636 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.475652 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.475668 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.475684 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.475696 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.475708 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.475719 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.475731 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475742 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475753 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475765 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475777 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFc, xlocker allowed=pAsLsXsFc on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31501} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475795 7fbe462be700  7 mds.0.locker    sending MClientCaps to client.708310 seq 31502 new pending pAsLsXs was pAsLsXsFs
2015-03-31 11:02:28.475800 7fbe462be700 10 mds.0.15 send_message_client_counted client.708310 seq 27562 client_caps(revoke ino 1000006026a 1732604 seq 31502 caps=pAsLsXs dirty=- wanted=p follows 0 size 0/0 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.475819 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.475837 7fbe462be700  7 mds.0.locker wrlock_start waiting on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.475849 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x9245340 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:28.475852 7fbe462be700 10 mds.0.locker nudge_log (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516081 7fbe462be700  7 mds.0.locker handle_client_caps on 1000006026a follows 0 op update
2015-03-31 11:02:28.516084 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516104 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.516106 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.516126 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.516127 7fbe462be700 10 mds.0.locker   cap inode [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/pAsLsXsFs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516142 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXs dirty - on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516156 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXs wanted p on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516169 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516181 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.516182 7fbe462be700 10 mds.0.locker eval_gather (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516195 7fbe462be700 10 mds.0.locker  next state is lock issued/allows loner /cb xlocker /cb other /cb
2015-03-31 11:02:28.516198 7fbe462be700  7 mds.0.locker eval_gather finished gather on (ifile sync->lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile sync->lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.516210 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.516223 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516236 7fbe462be700  7 mds.0.locker file_eval stable, bump to sync (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516248 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516260 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516271 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516282 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516300 7fbe462be700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:28.516301 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408063 create #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.516305 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10073
2015-03-31 11:02:28.516306 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408063 cr=0x60afa80) #1000006026a/blarg10073
2015-03-31 11:02:28.516308 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10073
2015-03-31 11:02:28.516310 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.516311 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.516319 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.516328 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.516336 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10073 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 ap=0+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.516347 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408063 cr=0x60afa80)
2015-03-31 11:02:28.516354 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.516372 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.516385 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn xlock x=1 by 0x29a76e00) (dversion lock w=1 last_client=708310) v=177740 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.516394 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516405 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.516422 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.516434 7fbe462be700 10 mds.0.locker  already auth_pinned [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn xlock x=1 by 0x29a76e00) (dversion lock w=1 last_client=708310) v=177740 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.516441 7fbe462be700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516453 7fbe462be700 10 mds.0.locker  already wrlocked (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn xlock x=1 by 0x29a76e00) (dversion lock w=1 last_client=708310) v=177740 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.516460 7fbe462be700 10 mds.0.locker  already xlocked (dn xlock x=1 by 0x29a76e00) [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn xlock x=1 by 0x29a76e00) (dversion lock w=1 last_client=708310) v=177740 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.516467 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.516485 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.516501 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.516513 7fbe462be700 10 mds.0.locker  already rdlocked (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.516525 7fbe462be700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516536 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516547 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516560 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516573 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516585 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516596 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516608 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516618 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516630 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516652 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e5 ([1000006b2e6~33d], 829 left)
2015-03-31 11:02:28.516655 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.516658 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e5 [2,head] #1000006b2e5 auth v1 s=0 n() (iversion lock) 0x3f48e650]
2015-03-31 11:02:28.516662 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178758
2015-03-31 11:02:28.516664 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10073)  pre_dirty [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn xlock x=1 by 0x29a76e00) (dversion lock w=1 last_client=708310) pv=178758 v=177740 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.516674 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f48e650]
2015-03-31 11:02:28.516683 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x29a76e00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178757 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:28.516693 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3b6bc80
2015-03-31 11:02:28.516695 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178759
2015-03-31 11:02:28.516696 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178759 v=178757 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.516704 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178759 v=178757 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.516713 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f48e650]
2015-03-31 11:02:28.516720 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.516722 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516739 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295331
2015-03-31 11:02:28.516741 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295331 v=3295329 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.516747 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295331 (current v 3295329)
2015-03-31 11:02:28.516749 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178759 v=178757 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=86+1518,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.516758 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.516760 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x29a76e00 on [dir 10000000000 /test_small/ [2,head] auth v=3295330 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382389=382382+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:28.516771 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x69882c0
2015-03-31 11:02:28.516772 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295332
2015-03-31 11:02:28.516774 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.516794 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.516807 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516821 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.516823 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.488441 < 1, stopping
2015-03-31 11:02:28.516828 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.516840 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.516845 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295331 v=3295329 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.516851 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31502} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.516867 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f48e650]
2015-03-31 11:02:28.516875 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.516879 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f48e650]
2015-03-31 11:02:28.516888 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.516889 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516899 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516907 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516915 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516923 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516931 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516939 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516947 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516955 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516963 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516971 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516979 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516987 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.516995 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.517004 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48e650]
2015-03-31 11:02:28.517016 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.517017 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.517020 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f48e650 tracedn 0x3ce8e80
2015-03-31 11:02:28.517022 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x29a76e00) [dentry #1/test_small/small5/blarg10073 [2,head] auth NULL (dn xlock x=1 by 0x29a76e00) (dversion lock w=1 last_client=708310) pv=178758 v=177740 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce8e80]
2015-03-31 11:02:28.517031 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408063 create #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.517041 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.517045 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31503
2015-03-31 11:02:28.517047 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31503 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.517054 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.517058 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.517061 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) including xattrs version 0
2015-03-31 11:02:28.517100 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517128 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517144 7fbe406af700  5 mds.0.log _submit_thread 5419689831~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.517146 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517162 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517183 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517196 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517209 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517220 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517232 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517245 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517258 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517270 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517282 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517294 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517306 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFcb, xlocker allowed=pAsLsXsFcb on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517321 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.517579 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408064 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.517601 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408064 cr=0x43d2800)
2015-03-31 11:02:28.517605 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408064 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.517608 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408064 cr=0x43d2800) #1000006b2e5
2015-03-31 11:02:28.517610 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e5 snap head
2015-03-31 11:02:28.517612 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.517613 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f48e650]
2015-03-31 11:02:28.517628 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408064 cr=0x43d2800)
2015-03-31 11:02:28.517631 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517649 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517661 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517674 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f48e650]
2015-03-31 11:02:28.517683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517699 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a77300 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.517715 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517726 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a77300 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.517738 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517750 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a77300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.517761 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f48e650]
2015-03-31 11:02:28.517772 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_pin by 0x29a77300 on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f48e650] now 1+0
2015-03-31 11:02:28.517788 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517806 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517822 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517841 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.517853 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517864 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.517876 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.517888 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.517907 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408064 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.517911 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408064 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.517924 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.517927 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.517932 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.517936 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.517951 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408064 cr=0x43d2800)
2015-03-31 11:02:28.517968 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.517986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.518003 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518016 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518027 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518043 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518055 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.518067 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.518079 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a77300 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.518096 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a77300 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.518108 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a77300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.518120 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_unpin by 0x29a77300 on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48e650] now 0+0
2015-03-31 11:02:28.518477 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408065 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.518500 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408065 cr=0x9cc4880)
2015-03-31 11:02:28.518503 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408065 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.518506 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408065 cr=0x9cc4880) #1000006b2e5
2015-03-31 11:02:28.518508 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e5 snap head
2015-03-31 11:02:28.518510 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.518511 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.518529 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408065 cr=0x9cc4880)
2015-03-31 11:02:28.518533 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.518553 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518566 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518579 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.518591 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.518608 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a77300 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.518625 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518636 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a77300 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.518648 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518660 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a77300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.518673 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.518684 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_pin by 0x29a77300 on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48e650] now 1+0
2015-03-31 11:02:28.518701 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.518718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.518734 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518758 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518770 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518788 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.518800 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.518818 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408065 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.518823 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408065 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.518836 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.518840 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.518845 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.518849 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.518865 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408065 cr=0x9cc4880)
2015-03-31 11:02:28.518882 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.518901 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.518918 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.518947 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518960 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.518972 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.518984 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.518996 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x29a77300 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.519013 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a77300 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.519025 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a77300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.519037 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_unpin by 0x29a77300 on [inode 1000006b2e5 [2,head] {#1000006b2e5 /test_small/small5/blarg10073} auth v178758 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48e650] now 0+0
2015-03-31 11:02:28.519139 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408066 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.519158 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408066 cr=0x26d3af80)
2015-03-31 11:02:28.519160 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408066 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.519164 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408066 cr=0x26d3af80) #1000006026a
2015-03-31 11:02:28.519166 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.519167 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.519168 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519186 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408066 cr=0x26d3af80)
2015-03-31 11:02:28.519189 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.519206 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.519217 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519229 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.519244 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x29a77300 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.519260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.519271 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x29a77300 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.519283 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519294 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x29a77300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.519306 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.519322 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.519339 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.519350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.519362 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519374 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519387 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519398 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519417 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.519429 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.519442 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x240b24f0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:28.519445 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.533489 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:28.533497 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:28.533510 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:28.533512 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) mark_dirty [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178757 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.533530 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10073)  mark_dirty [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178758 v=177740 ap=2+0 inode=0x3f48e650 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80]
2015-03-31 11:02:28.533539 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178759 v=178758 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 86=86+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178758
2015-03-31 11:02:28.533552 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) mark_dirty_parent
2015-03-31 11:02:28.533557 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295329 pv3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 86=86+0) n(v1 rc2015-03-31 11:03:05.000000 87=86+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.533574 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295331 v=3295329 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.533579 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295332 v=3295331 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382389=382382+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295331
2015-03-31 11:02:28.533591 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178759 v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178759
2015-03-31 11:02:28.533600 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295332 v=3295332 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295332
2015-03-31 11:02:28.533611 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.533623 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:28.533626 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27563 client_caps(grant ino 1000006b2e5 1851546 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:28.533650 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178758 ap=2+0 inode=0x3f48e650 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80]
2015-03-31 11:02:28.533660 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408063 create #1000006026a/blarg10073 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.533674 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e5
2015-03-31 11:02:28.533677 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178758 ap=2+0 inode=0x3f48e650 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80]
2015-03-31 11:02:28.533688 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178758 ap=2+0 inode=0x3f48e650 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80]
2015-03-31 11:02:28.533695 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178758 ap=2+0 inode=0x3f48e650 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80]
2015-03-31 11:02:28.533701 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10073) auth_unpin by 0x3ce8fd8 on [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178758 ap=1+0 inode=0x3f48e650 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80] now 1+0
2015-03-31 11:02:28.533709 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178758 ap=1+0 inode=0x3f48e650 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80]
2015-03-31 11:02:28.533715 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.533733 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.533746 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178758 ap=1+0 inode=0x3f48e650 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce8e80]
2015-03-31 11:02:28.533753 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.533773 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.533794 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.533807 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:28.533810 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:28.533822 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.533835 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:28.533836 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408066 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.533840 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408066 cr=0x26d3af80) #1000006026a
2015-03-31 11:02:28.533842 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.533844 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.533845 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.533857 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408066 cr=0x26d3af80)
2015-03-31 11:02:28.533860 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.533878 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.533890 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.533900 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.533916 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.533928 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.533939 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.533965 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.533977 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.533989 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534001 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534012 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534024 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31503} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534042 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:28.534045 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178759 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.534054 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:28.534060 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:28.534064 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534070 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:28.534072 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534076 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:28.534078 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534082 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:28.534084 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534087 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:28.534089 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534092 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:28.534094 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534097 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:28.534099 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534102 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:28.534105 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534108 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:28.534110 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534113 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:28.534115 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534118 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:28.534120 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534124 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:28.534126 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534129 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:28.534131 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534134 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:28.534136 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534139 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:28.534141 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534145 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:28.534147 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534150 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:28.534151 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534154 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:28.534156 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534160 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:28.534162 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534165 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:28.534167 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534170 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:28.534172 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534175 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:28.534177 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534180 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:28.534182 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534186 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:28.534188 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534191 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:28.534193 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534196 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:28.534198 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534201 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:28.534203 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534206 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:28.534208 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534211 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:28.534213 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534216 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:28.534218 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534222 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:28.534224 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534227 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:28.534237 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534240 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:28.534242 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534245 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:28.534247 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534250 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:28.534251 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534255 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:28.534257 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534260 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:28.534262 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534265 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:28.534267 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534270 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:28.534272 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534275 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:28.534277 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534280 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:28.534282 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534285 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:28.534287 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534290 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:28.534292 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534295 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:28.534297 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534300 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:28.534302 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534305 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:28.534307 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534310 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:28.534312 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534315 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:28.534317 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534320 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:28.534322 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534325 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:28.534327 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534331 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:28.534332 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534336 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:28.534338 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534340 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:28.534342 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534345 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:28.534347 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534350 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:28.534352 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534356 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:28.534358 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534361 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:28.534363 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534366 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:28.534368 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534371 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:28.534373 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534376 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:28.534377 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534381 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:28.534383 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534386 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:28.534388 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534391 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:28.534393 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534396 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:28.534398 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534402 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:28.534404 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534407 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:28.534409 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534412 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:28.534414 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534417 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:28.534419 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534423 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:28.534424 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534428 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:28.534430 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534433 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:28.534435 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534438 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:28.534440 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534443 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:28.534445 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534448 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:28.534450 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534454 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:28.534456 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534459 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:28.534461 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534464 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:28.534466 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534469 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:28.534471 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534474 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:28.534476 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534479 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:28.534481 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534484 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:28.534487 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534490 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:28.534492 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534495 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:28.534497 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534500 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:28.534502 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534505 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:28.534507 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534510 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:28.534512 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534516 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.534517 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534571 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408066 readdir #1000006026a 2015-03-31 11:03:05.000000) v2 readdir num=87 bytes=23749 end=1 complete=1
2015-03-31 11:02:28.534577 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408066 readdir #1000006026a 2015-03-31 11:03:05.000000) v2 readdir num=87 end=1 complete=1
2015-03-31 11:02:28.534581 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408066 readdir #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.534592 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.534595 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.534599 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31504
2015-03-31 11:02:28.534601 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31504 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.534615 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408066 cr=0x26d3af80)
2015-03-31 11:02:28.534631 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.534652 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.534669 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.534681 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.534693 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534706 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534718 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534738 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534751 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534762 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534773 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a77300 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.534794 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a77300 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.534807 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a77300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.534837 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534851 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534862 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534874 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.534898 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408063 cr=0x60afa80)
2015-03-31 11:02:28.534906 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x29a76e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.534923 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x29a76e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.534936 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10073) auth_unpin by 0x29a76e00 on [dentry #1/test_small/small5/blarg10073 [2,head] auth (dn sync l=1) (dversion lock) v=178758 inode=0x3f48e650 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce8e80] now 0+0
2015-03-31 11:02:28.534945 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x29a76e00 on [dir 10000000000 /test_small/ [2,head] auth v=3295332 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:28.534957 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x29a76e00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178759 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:28.534966 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x29a76e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.535002 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6a follows 0 op update
2015-03-31 11:02:28.535011 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535026 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.535028 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.535050 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.535051 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535059 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535068 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.535070 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535084 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535094 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535101 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.535102 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535112 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535118 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535119 7fbe406af700  5 mds.0.log _submit_thread 5419691471~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.535126 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535132 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535140 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535147 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535154 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.535165 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.535184 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408067 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.535207 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408067 cr=0x2a509900)
2015-03-31 11:02:28.535211 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408067 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.535214 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408067 cr=0x2a509900) #1000006b2e5
2015-03-31 11:02:28.535217 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e5 snap head
2015-03-31 11:02:28.535218 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.535219 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.535234 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408067 cr=0x2a509900)
2015-03-31 11:02:28.535237 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.535255 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.535270 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.535282 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.535293 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.535309 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde80000 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.535325 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.535337 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.535349 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.535359 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.535371 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.535381 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_pin by 0xde80000 on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650] now 1+0
2015-03-31 11:02:28.535393 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.535414 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.535431 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.535444 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.535456 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.535467 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.535479 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.535490 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.535508 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408067 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.535512 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408067 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.535526 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.535530 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.535534 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:28.535538 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.535555 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408067 cr=0x2a509900)
2015-03-31 11:02:28.535572 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.535591 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.535608 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.535620 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.535632 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.535647 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.535659 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.535670 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.535681 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde80000 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.535699 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.535711 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:28.535731 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_unpin by 0xde80000 on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650] now 0+0
2015-03-31 11:02:28.536934 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6a follows 0 op update
2015-03-31 11:02:28.536937 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.536948 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.536950 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.536968 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.536969 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.536976 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.536984 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.536987 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.536992 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.536999 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.537005 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.537006 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.537013 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.537019 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.537025 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.537031 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.537032 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.537033 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e6a [2,head] /test_small/small1/blarg10073 auth v136964 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a63b0]
2015-03-31 11:02:28.537040 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.577078 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408068 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.577100 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408068 cr=0x929a300)
2015-03-31 11:02:28.577104 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408068 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.577108 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408068 cr=0x929a300) #1000006b2e5
2015-03-31 11:02:28.577110 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e5 snap head
2015-03-31 11:02:28.577111 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.577112 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.577128 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408068 cr=0x929a300)
2015-03-31 11:02:28.577131 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.577149 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.577161 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.577171 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.577182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.577196 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde80000 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.577211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.577221 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.577233 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.577243 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.577253 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650]
2015-03-31 11:02:28.577262 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_pin by 0xde80000 on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650] now 1+0
2015-03-31 11:02:28.577272 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.577298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.577312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.577332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.577341 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.577351 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.577361 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.577370 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.577387 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408068 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.577391 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408068 getattr Xs #1000006b2e5 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.577402 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.577405 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.577410 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:28.577413 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.577426 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408068 cr=0x929a300)
2015-03-31 11:02:28.577446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.577462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.577476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.577487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.577497 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.577512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.577522 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.577532 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f48e650]
2015-03-31 11:02:28.577541 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde80000 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.577556 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.577566 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:28.577576 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) auth_unpin by 0xde80000 on [inode 1000006b2e5 [2,head] /test_small/small5/blarg10073 auth v178758 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48e650] now 0+0
2015-03-31 11:02:28.577872 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408069 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.577890 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408069 cr=0x9299400)
2015-03-31 11:02:28.577891 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408069 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.577895 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408069 cr=0x9299400) #10000004e61
2015-03-31 11:02:28.577896 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e61 snap head
2015-03-31 11:02:28.577898 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.577899 7fbe462be700 10 mds.0.server ref is [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.577909 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408069 cr=0x9299400)
2015-03-31 11:02:28.577912 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.577927 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.577938 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.577947 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.577953 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.577966 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde80000 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.577980 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.577991 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.578001 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.578010 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde80000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.578019 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.578025 7fbe462be700 10 mds.0.cache.ino(10000004e61) auth_pin by 0xde80000 on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78] now 1+0
2015-03-31 11:02:28.578031 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.578046 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.578060 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.578071 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.578081 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.578091 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.578100 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578107 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578114 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578120 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578143 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408069 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.578157 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408069 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.578167 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.578170 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.578173 7fbe462be700 10 mds.0.cache.ino(10000004e61) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.578176 7fbe462be700 10 mds.0.cache.ino(10000004e61) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.578189 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408069 cr=0x9299400)
2015-03-31 11:02:28.578208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.578223 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.578237 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.578247 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.578257 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.578266 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.578278 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578284 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578290 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578296 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.578301 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde80000 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.578315 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.578325 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde80000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.578334 7fbe462be700 10 mds.0.cache.ino(10000004e61) auth_unpin by 0xde80000 on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a5a78] now 0+0
2015-03-31 11:02:28.578704 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408070 lookup #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.578724 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408070 cr=0x929e680)
2015-03-31 11:02:28.578726 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408070 lookup #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.578730 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408070 cr=0x929e680) #1000006026a/blarg10074
2015-03-31 11:02:28.578732 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.578734 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10074 [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock) v=177742 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.578743 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.578745 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408070 lookup #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.578755 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.578766 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408070 cr=0x929e680)
2015-03-31 11:02:28.579251 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408071 lookup #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.579270 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408071 cr=0x9298a00)
2015-03-31 11:02:28.579273 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408071 lookup #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.579276 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408071 cr=0x9298a00) #1000006026a/blarg10074
2015-03-31 11:02:28.579278 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.579280 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10074 [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock) v=177742 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.579288 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.579290 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408071 lookup #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.579302 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.579315 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408071 cr=0x9298a00)
2015-03-31 11:02:28.579780 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408072 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.579805 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408072 cr=0x929da00)
2015-03-31 11:02:28.579808 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408072 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.579811 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408072 cr=0x929da00) #10000004e61
2015-03-31 11:02:28.579813 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e61 snap head
2015-03-31 11:02:28.579815 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.579816 7fbe462be700 10 mds.0.server ref is [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.579828 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408072 cr=0x929da00)
2015-03-31 11:02:28.579831 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.579849 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.579860 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.579870 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.579876 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.579890 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde80000 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.579905 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.579915 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.579926 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.579935 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde80000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.579945 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.579952 7fbe462be700 10 mds.0.cache.ino(10000004e61) auth_pin by 0xde80000 on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78] now 1+0
2015-03-31 11:02:28.579958 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.579974 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.579988 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580009 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580029 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.580038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.580047 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580054 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580061 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580067 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580080 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408072 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.580084 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408072 getattr Xs #10000004e61 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.580094 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.580097 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.580100 7fbe462be700 10 mds.0.cache.ino(10000004e61) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.580102 7fbe462be700 10 mds.0.cache.ino(10000004e61) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.580116 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408072 cr=0x929da00)
2015-03-31 11:02:28.580135 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.580151 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.580165 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580176 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580186 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.580195 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.580209 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580216 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580223 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580229 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a5a78]
2015-03-31 11:02:28.580234 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde80000 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.580249 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.580259 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde80000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.580268 7fbe462be700 10 mds.0.cache.ino(10000004e61) auth_unpin by 0xde80000 on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a5a78] now 0+0
2015-03-31 11:02:28.580569 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408073 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.580588 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408073 cr=0x9299900)
2015-03-31 11:02:28.580590 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408073 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.580593 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408073 cr=0x9299900) #1000006026a
2015-03-31 11:02:28.580595 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.580596 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.580597 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.580611 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408073 cr=0x9299900)
2015-03-31 11:02:28.580613 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.580628 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.580638 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.580648 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.580661 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde80000 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.580675 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.580686 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.580696 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.580706 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:28.580716 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.580731 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.580745 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580755 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580765 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580775 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580790 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580800 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31504} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580833 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408073 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.580837 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408073 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.580857 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.580860 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.580863 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31505
2015-03-31 11:02:28.580865 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31505 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.580878 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408073 cr=0x9299900)
2015-03-31 11:02:28.580897 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.580912 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.580927 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580937 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.580947 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31505} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580957 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31505} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580970 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31505} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580979 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+0 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31505} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.580989 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde80000 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:28.581002 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:28.581012 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31505} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:28.581396 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408074 create #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.581417 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408074 cr=0x9298280)
2015-03-31 11:02:28.581420 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581438 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:28.581440 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581451 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.581452 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581464 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581474 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581484 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581493 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.581495 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408074 create #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.581498 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10074
2015-03-31 11:02:28.581499 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408074 cr=0x9298280) #1000006026a/blarg10074
2015-03-31 11:02:28.581501 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10074
2015-03-31 11:02:28.581503 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.581504 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.581505 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178759 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.581513 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178759 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.581519 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10074 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178759 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:28.581529 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408074 cr=0x9298280)
2015-03-31 11:02:28.581534 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.581550 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.581561 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock) v=177742 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581568 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581578 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:28.581593 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde80000 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.581608 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:28.581628 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:28.581648 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock) v=177742 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581653 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10074) auth_pin by 0xde80000 on [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock) v=177742 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060] now 1+0
2015-03-31 11:02:28.581659 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=0+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:28.581669 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.581679 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock) v=177742 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581684 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177742 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581690 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177742 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581694 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177742 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581700 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177742 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581705 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10074) auth_pin by 0x3ce91b8 on [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177742 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060] now 2+0
2015-03-31 11:02:28.581710 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xde80000) [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dn xlock x=1 by 0xde80000) (dversion lock w=1 last_client=708310) v=177742 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581715 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.581730 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.581744 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.581757 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.581770 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.581780 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.581794 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.581804 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.581814 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581823 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581832 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581842 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581852 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581862 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581871 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581881 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581890 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581900 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581909 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.581928 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e6 ([1000006b2e7~33c], 828 left)
2015-03-31 11:02:28.581931 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.581933 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e6 [2,head] #1000006b2e6 auth v1 s=0 n() (iversion lock) 0x3f36f760]
2015-03-31 11:02:28.581937 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178760
2015-03-31 11:02:28.581938 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10074)  pre_dirty [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dn xlock x=1 by 0xde80000) (dversion lock w=1 last_client=708310) pv=178760 v=177742 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.581947 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f36f760]
2015-03-31 11:02:28.581954 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xde80000 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:28.581964 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3b6f010
2015-03-31 11:02:28.581965 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178761
2015-03-31 11:02:28.581966 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178761 v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.581973 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178761 v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.581980 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f36f760]
2015-03-31 11:02:28.581987 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.581989 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582003 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295333
2015-03-31 11:02:28.582004 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295333 v=3295331 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.582008 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295333 (current v 3295331)
2015-03-31 11:02:28.582010 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178761 v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.582018 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.582020 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xde80000 on [dir 10000000000 /test_small/ [2,head] auth v=3295332 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:28.582030 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x698a050
2015-03-31 11:02:28.582031 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295334
2015-03-31 11:02:28.582032 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582044 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582054 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582065 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.582067 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.553719 < 1, stopping
2015-03-31 11:02:28.582071 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582082 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.582085 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295333 v=3295331 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.582090 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31505} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582103 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f36f760]
2015-03-31 11:02:28.582110 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.582113 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f36f760]
2015-03-31 11:02:28.582121 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.582122 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582131 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582138 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582145 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582152 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582159 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582166 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582173 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582179 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582185 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582192 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582199 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582206 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582212 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582219 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f36f760]
2015-03-31 11:02:28.582230 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.582231 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.582233 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f36f760 tracedn 0x3ce9060
2015-03-31 11:02:28.582235 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xde80000) [dentry #1/test_small/small5/blarg10074 [2,head] auth NULL (dn xlock x=1 by 0xde80000) (dversion lock w=1 last_client=708310) pv=178760 v=177742 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9060]
2015-03-31 11:02:28.582242 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408074 create #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.582250 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.582254 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31506
2015-03-31 11:02:28.582256 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31506 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.582262 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.582265 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.582268 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) including xattrs version 0
2015-03-31 11:02:28.582304 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582333 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582349 7fbe406af700  5 mds.0.log _submit_thread 5419692330~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.582348 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582361 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582380 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582392 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582403 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582413 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582423 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582435 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582467 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582476 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582742 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408075 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.582762 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408075 cr=0x929cb00)
2015-03-31 11:02:28.582765 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408075 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.582769 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408075 cr=0x929cb00) #1000006b2e6
2015-03-31 11:02:28.582771 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e6 snap head
2015-03-31 11:02:28.582772 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.582773 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f36f760]
2015-03-31 11:02:28.582789 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408075 cr=0x929cb00)
2015-03-31 11:02:28.582792 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582808 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582819 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582830 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f36f760]
2015-03-31 11:02:28.582840 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582854 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.582868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582878 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.582889 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.582899 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.582910 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f36f760]
2015-03-31 11:02:28.582919 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_pin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f36f760] now 1+0
2015-03-31 11:02:28.582930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582945 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.582959 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582970 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.582980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583007 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583037 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583053 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408075 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.583058 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408075 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.583068 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.583072 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.583076 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.583079 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.583091 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408075 cr=0x929cb00)
2015-03-31 11:02:28.583110 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583126 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583140 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583151 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583185 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583196 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583205 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.583220 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.583230 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.583241 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_unpin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760] now 0+0
2015-03-31 11:02:28.583537 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408076 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.583555 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408076 cr=0x9f78f00)
2015-03-31 11:02:28.583557 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408076 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.583560 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408076 cr=0x9f78f00) #1000006b2e6
2015-03-31 11:02:28.583562 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e6 snap head
2015-03-31 11:02:28.583563 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.583564 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.583576 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408076 cr=0x9f78f00)
2015-03-31 11:02:28.583578 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583594 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583604 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583615 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.583625 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583639 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.583653 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583663 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.583673 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583682 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.583693 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.583703 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_pin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760] now 1+0
2015-03-31 11:02:28.583713 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583728 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583742 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583764 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583774 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583799 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583820 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583836 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408076 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.583840 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408076 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.583849 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.583852 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.583856 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.583859 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.583872 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408076 cr=0x9f78f00)
2015-03-31 11:02:28.583880 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583906 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.583920 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583930 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.583939 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583952 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.583963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583973 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.583982 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.583996 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.584006 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.584017 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_unpin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760] now 0+0
2015-03-31 11:02:28.588336 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e61 follows 0 op update
2015-03-31 11:02:28.588339 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588350 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.588352 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.588371 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.588372 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588379 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588387 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.588388 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588399 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588409 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588415 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.588416 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588424 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588431 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588435 7fbe406af700  5 mds.0.log _submit_thread 5419693970~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.588436 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588451 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588456 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588463 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588468 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.588478 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.628048 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408077 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.628069 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408077 cr=0x9f79b80)
2015-03-31 11:02:28.628074 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408077 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.628077 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408077 cr=0x9f79b80) #1000006b2e6
2015-03-31 11:02:28.628079 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e6 snap head
2015-03-31 11:02:28.628081 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.628082 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.628098 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408077 cr=0x9f79b80)
2015-03-31 11:02:28.628101 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.628119 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.628131 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.628143 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.628153 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.628168 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.628183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.628193 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.628204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.628215 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.628235 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.628245 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_pin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760] now 1+0
2015-03-31 11:02:28.628255 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.628280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.628305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.628314 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.628324 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.628333 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.628343 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.628352 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.628367 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408077 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.628371 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408077 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.628381 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.628385 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.628389 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.628392 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.628404 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408077 cr=0x9f79b80)
2015-03-31 11:02:28.628423 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.628439 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.628452 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.628463 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.628473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.628490 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.628500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.628511 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.628520 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.628534 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.628544 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.628555 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_unpin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760] now 0+0
2015-03-31 11:02:28.629858 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e61 follows 0 op update
2015-03-31 11:02:28.629862 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629873 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.629875 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.629893 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.629894 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629900 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629909 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.629911 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629917 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629924 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629929 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.629930 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629936 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629943 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629950 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629956 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.629957 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.629958 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e61 [2,head] /test_small/small1/blarg10074 auth v136966 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5a78]
2015-03-31 11:02:28.629965 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.669052 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408078 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.669072 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408078 cr=0x9f7a300)
2015-03-31 11:02:28.669077 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408078 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.669080 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408078 cr=0x9f7a300) #1000006b2e6
2015-03-31 11:02:28.669082 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e6 snap head
2015-03-31 11:02:28.669084 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.669085 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.669101 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408078 cr=0x9f7a300)
2015-03-31 11:02:28.669104 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669122 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669134 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.669146 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.669157 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669172 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.669187 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669197 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.669208 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.669219 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.669240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:28.669250 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_pin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760] now 1+0
2015-03-31 11:02:28.669271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669286 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669320 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669329 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.669339 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.669348 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.669358 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.669372 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408078 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.669376 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408078 getattr Xs #1000006b2e6 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.669385 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.669389 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.669393 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.669396 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.669408 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408078 cr=0x9f7a300)
2015-03-31 11:02:28.669427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.669492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.669502 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.669512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f36f760]
2015-03-31 11:02:28.669522 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.669536 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.669546 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.669556 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) auth_unpin by 0xde85f00 on [inode 1000006b2e6 [2,head] {#1000006b2e6 /test_small/small5/blarg10074} auth v178760 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f36f760] now 0+0
2015-03-31 11:02:28.669842 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408079 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.669859 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408079 cr=0x9f7d780)
2015-03-31 11:02:28.669861 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408079 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.669864 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408079 cr=0x9f7d780) #10000004e63
2015-03-31 11:02:28.669866 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e63 snap head
2015-03-31 11:02:28.669867 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.669868 7fbe462be700 10 mds.0.server ref is [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.669878 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408079 cr=0x9f7d780)
2015-03-31 11:02:28.669880 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669895 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669905 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.669914 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.669919 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.669932 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.669947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.669956 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.669967 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.669975 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde85f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.669985 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.669990 7fbe462be700 10 mds.0.cache.ino(10000004e63) auth_pin by 0xde85f00 on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140] now 1+0
2015-03-31 11:02:28.669996 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.670010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.670024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.670034 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.670045 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.670054 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.670063 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670070 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670076 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670082 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670104 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408079 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.670108 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408079 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.670130 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.670133 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.670137 7fbe462be700 10 mds.0.cache.ino(10000004e63) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.670139 7fbe462be700 10 mds.0.cache.ino(10000004e63) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.670151 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408079 cr=0x9f7d780)
2015-03-31 11:02:28.670169 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.670185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.670198 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.670209 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.670218 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.670227 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.670239 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670245 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670251 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670257 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.670263 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.670277 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.670287 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde85f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.670296 7fbe462be700 10 mds.0.cache.ino(10000004e63) auth_unpin by 0xde85f00 on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a5140] now 0+0
2015-03-31 11:02:28.670653 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408080 lookup #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.670674 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408080 cr=0x9f7c380)
2015-03-31 11:02:28.670676 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408080 lookup #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.670679 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408080 cr=0x9f7c380) #1000006026a/blarg10075
2015-03-31 11:02:28.670681 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.670684 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10075 [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock) v=177744 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.670692 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.670694 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408080 lookup #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.670703 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.670715 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408080 cr=0x9f7c380)
2015-03-31 11:02:28.671174 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408081 lookup #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.671194 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408081 cr=0x9ae3e80)
2015-03-31 11:02:28.671196 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408081 lookup #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.671199 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408081 cr=0x9ae3e80) #1000006026a/blarg10075
2015-03-31 11:02:28.671200 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.671203 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10075 [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock) v=177744 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.671211 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.671212 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408081 lookup #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.671224 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.671237 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408081 cr=0x9ae3e80)
2015-03-31 11:02:28.671681 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408082 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.671702 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408082 cr=0x9ae7300)
2015-03-31 11:02:28.671704 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408082 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.671707 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408082 cr=0x9ae7300) #10000004e63
2015-03-31 11:02:28.671709 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e63 snap head
2015-03-31 11:02:28.671710 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.671711 7fbe462be700 10 mds.0.server ref is [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.671723 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408082 cr=0x9ae7300)
2015-03-31 11:02:28.671727 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.671744 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.671756 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.671766 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.671772 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.671798 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.671814 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.671825 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.671836 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.671845 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde85f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.671855 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.671862 7fbe462be700 10 mds.0.cache.ino(10000004e63) auth_pin by 0xde85f00 on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140] now 1+0
2015-03-31 11:02:28.671869 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.671885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.671899 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.671910 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.671921 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.671930 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.671940 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.671947 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.671953 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.671960 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.671974 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408082 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.671978 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408082 getattr Xs #10000004e63 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.671990 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.671993 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.671998 7fbe462be700 10 mds.0.cache.ino(10000004e63) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.672000 7fbe462be700 10 mds.0.cache.ino(10000004e63) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.672025 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408082 cr=0x9ae7300)
2015-03-31 11:02:28.672044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672061 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672077 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672088 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672099 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.672112 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.672122 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.672129 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.672137 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.672143 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a5140]
2015-03-31 11:02:28.672150 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.672165 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.672176 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde85f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.672185 7fbe462be700 10 mds.0.cache.ino(10000004e63) auth_unpin by 0xde85f00 on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a5140] now 0+0
2015-03-31 11:02:28.672453 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408083 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.672471 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408083 cr=0x9ae3200)
2015-03-31 11:02:28.672473 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408083 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.672476 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408083 cr=0x9ae3200) #1000006026a
2015-03-31 11:02:28.672478 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.672479 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.672480 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672495 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408083 cr=0x9ae3200)
2015-03-31 11:02:28.672498 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672513 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672523 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672534 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672547 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.672561 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672571 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.672582 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672592 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.672604 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672618 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672632 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672642 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672653 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672664 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672674 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672685 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31506} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672701 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408083 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.672705 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408083 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.672716 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.672719 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.672723 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31507
2015-03-31 11:02:28.672725 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31507 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.672738 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408083 cr=0x9ae3200)
2015-03-31 11:02:28.672746 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672763 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.672778 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672793 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.672804 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672815 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672829 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672839 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.672850 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:28.672864 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:28.672874 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:28.673286 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408084 create #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.673306 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408084 cr=0x9ae1680)
2015-03-31 11:02:28.673308 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408084 create #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.673311 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10075
2015-03-31 11:02:28.673312 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408084 cr=0x9ae1680) #1000006026a/blarg10075
2015-03-31 11:02:28.673315 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10075
2015-03-31 11:02:28.673316 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.673317 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.673319 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178761 v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.673328 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178761 v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.673336 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10075 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178761 v=178759 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.673347 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408084 cr=0x9ae1680)
2015-03-31 11:02:28.673352 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.673370 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673381 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock) v=177744 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673388 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673400 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.673414 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.673428 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673438 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.673449 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock) v=177744 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673454 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10075) auth_pin by 0xde85f00 on [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock) v=177744 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240] now 1+0
2015-03-31 11:02:28.673460 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=1+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673471 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.673482 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock) v=177744 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673487 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177744 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673493 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177744 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673498 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177744 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673513 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177744 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673519 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10075) auth_pin by 0x3ce9398 on [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177744 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240] now 2+0
2015-03-31 11:02:28.673538 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xde85f00) [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dn xlock x=1 by 0xde85f00) (dversion lock w=1 last_client=708310) v=177744 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673543 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.673558 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.673571 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.673583 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.673596 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673606 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673615 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673624 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673634 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673643 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673653 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673663 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673672 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673681 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673690 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673700 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673709 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673718 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673737 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e7 ([1000006b2e8~33b], 827 left)
2015-03-31 11:02:28.673739 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.673741 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e7 [2,head] #1000006b2e7 auth v1 s=0 n() (iversion lock) 0x3f4e4d20]
2015-03-31 11:02:28.673745 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178762
2015-03-31 11:02:28.673746 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10075)  pre_dirty [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dn xlock x=1 by 0xde85f00) (dversion lock w=1 last_client=708310) pv=178762 v=177744 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.673753 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4e4d20]
2015-03-31 11:02:28.673758 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xde85f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178762 v=178759 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:28.673767 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x698a310
2015-03-31 11:02:28.673769 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178763
2015-03-31 11:02:28.673770 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178763 v=178759 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.673777 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178763 v=178759 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.673789 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4e4d20]
2015-03-31 11:02:28.673794 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.673796 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295333 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673809 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295335
2015-03-31 11:02:28.673810 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295335 v=3295331 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.673814 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295335 (current v 3295331)
2015-03-31 11:02:28.673816 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178763 v=178759 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.673823 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.673825 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xde85f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295335 v=3295332 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:28.673835 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x995e300
2015-03-31 11:02:28.673836 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295336
2015-03-31 11:02:28.673837 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673847 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673857 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673868 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.673869 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.645528 < 1, stopping
2015-03-31 11:02:28.673873 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.673883 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.673886 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295335 v=3295331 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.673891 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31507} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.673903 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4e4d20]
2015-03-31 11:02:28.673910 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.673912 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673920 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.673921 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673928 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673935 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673941 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673948 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673954 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673961 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673967 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673973 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673979 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673986 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673993 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.673999 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.674005 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.674011 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4e4d20]
2015-03-31 11:02:28.674020 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.674021 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.674023 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4e4d20 tracedn 0x3ce9240
2015-03-31 11:02:28.674026 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xde85f00) [dentry #1/test_small/small5/blarg10075 [2,head] auth NULL (dn xlock x=1 by 0xde85f00) (dversion lock w=1 last_client=708310) pv=178762 v=177744 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9240]
2015-03-31 11:02:28.674032 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408084 create #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.674039 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.674043 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31508
2015-03-31 11:02:28.674045 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31508 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.674050 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.674053 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.674056 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) including xattrs version 0
2015-03-31 11:02:28.674092 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674120 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674136 7fbe406af700  5 mds.0.log _submit_thread 5419694829~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.674135 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674148 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674166 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674177 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674187 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674197 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674207 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674218 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674229 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674239 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674249 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674259 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674546 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408085 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.674566 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408085 cr=0x9ae4d80)
2015-03-31 11:02:28.674568 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408085 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.674571 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408085 cr=0x9ae4d80) #1000006b2e7
2015-03-31 11:02:28.674573 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e7 snap head
2015-03-31 11:02:28.674574 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.674575 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4e4d20]
2015-03-31 11:02:28.674588 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408085 cr=0x9ae4d80)
2015-03-31 11:02:28.674591 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674606 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674616 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674627 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4e4d20]
2015-03-31 11:02:28.674637 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674650 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.674664 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674673 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.674684 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674694 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.674704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4e4d20]
2015-03-31 11:02:28.674713 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_pin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4e4d20] now 1+0
2015-03-31 11:02:28.674723 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674738 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674751 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674762 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674772 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674787 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674813 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.674834 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.674848 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408085 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.674852 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408085 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.674862 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.674865 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.674869 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.674871 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.674883 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408085 cr=0x9ae4d80)
2015-03-31 11:02:28.674902 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674917 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.674931 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674941 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.674950 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674960 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.674973 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.674983 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.674992 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.675006 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.675016 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.675026 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_unpin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20] now 0+0
2015-03-31 11:02:28.675336 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408086 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.675353 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408086 cr=0x2a508c80)
2015-03-31 11:02:28.675355 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408086 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.675358 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408086 cr=0x2a508c80) #1000006b2e7
2015-03-31 11:02:28.675360 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e7 snap head
2015-03-31 11:02:28.675361 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.675362 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.675375 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408086 cr=0x2a508c80)
2015-03-31 11:02:28.675377 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.675392 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.675403 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.675413 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.675423 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.675437 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.675450 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.675460 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.675470 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.675480 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.675490 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.675499 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_pin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20] now 1+0
2015-03-31 11:02:28.675509 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.675523 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.675538 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.675548 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.675558 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.675568 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.675579 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.675598 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.675623 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408086 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.675627 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408086 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.675635 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.675637 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.675640 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.675643 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.675653 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408086 cr=0x2a508c80)
2015-03-31 11:02:28.675671 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.675687 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.675701 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.675711 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.675724 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.675734 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.675744 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.675754 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.675763 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.675777 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.675790 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.675800 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_unpin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20] now 0+0
2015-03-31 11:02:28.679990 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e63 follows 0 op update
2015-03-31 11:02:28.679993 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680004 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.680006 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.680024 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.680025 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680031 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680039 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.680041 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680051 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680070 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680077 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.680079 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680087 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680091 7fbe406af700  5 mds.0.log _submit_thread 5419696469~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.680095 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680100 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680106 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680112 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680119 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680125 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.680135 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.720062 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408087 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.720083 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408087 cr=0x6884880)
2015-03-31 11:02:28.720088 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408087 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.720092 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408087 cr=0x6884880) #1000006b2e7
2015-03-31 11:02:28.720094 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e7 snap head
2015-03-31 11:02:28.720095 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.720096 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.720113 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408087 cr=0x6884880)
2015-03-31 11:02:28.720116 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.720135 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.720147 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.720159 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.720170 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.720185 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.720200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.720211 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.720222 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.720243 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.720253 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.720263 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_pin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20] now 1+0
2015-03-31 11:02:28.720284 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.720310 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.720323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.720333 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.720342 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.720352 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.720362 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.720371 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.720385 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408087 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.720389 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408087 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.720400 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.720404 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.720407 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.720410 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.720422 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408087 cr=0x6884880)
2015-03-31 11:02:28.720441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.720457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.720471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.720482 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.720492 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.720507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.720517 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.720528 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.720537 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.720551 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.720561 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.720571 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_unpin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20] now 0+0
2015-03-31 11:02:28.721868 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e63 follows 0 op update
2015-03-31 11:02:28.721871 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721883 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.721885 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.721903 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.721904 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721911 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721919 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.721921 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721926 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721934 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721939 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.721940 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721947 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721954 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721959 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721965 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.721967 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.721968 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e63 [2,head] /test_small/small1/blarg10075 auth v136968 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a5140]
2015-03-31 11:02:28.721974 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.761062 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408088 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.761083 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408088 cr=0x6883980)
2015-03-31 11:02:28.761088 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408088 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.761091 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408088 cr=0x6883980) #1000006b2e7
2015-03-31 11:02:28.761093 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e7 snap head
2015-03-31 11:02:28.761094 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.761095 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.761112 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408088 cr=0x6883980)
2015-03-31 11:02:28.761115 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.761133 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.761145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.761157 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.761168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.761183 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.761197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.761208 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.761219 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.761229 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.761250 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:28.761260 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_pin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20] now 1+0
2015-03-31 11:02:28.761270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.761294 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.761320 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.761329 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.761339 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.761348 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.761358 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.761367 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.761382 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408088 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.761386 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408088 getattr Xs #1000006b2e7 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.761396 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.761399 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.761403 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.761406 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.761419 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408088 cr=0x6883980)
2015-03-31 11:02:28.761437 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.761453 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.761467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.761478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.761488 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.761503 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.761513 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.761523 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4e4d20]
2015-03-31 11:02:28.761532 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.761547 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.761557 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.761567 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) auth_unpin by 0xde85500 on [inode 1000006b2e7 [2,head] {#1000006b2e7 /test_small/small5/blarg10075} auth v178762 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4e4d20] now 0+0
2015-03-31 11:02:28.761934 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408089 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.761954 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408089 cr=0x6883200)
2015-03-31 11:02:28.761956 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408089 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.761960 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408089 cr=0x6883200) #10000004e64
2015-03-31 11:02:28.761961 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e64 snap head
2015-03-31 11:02:28.761963 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.761964 7fbe462be700 10 mds.0.server ref is [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.761977 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408089 cr=0x6883200)
2015-03-31 11:02:28.761980 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.761997 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.762008 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.762018 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.762025 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.762039 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.762053 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.762063 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.762074 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.762083 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde85500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.762092 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.762098 7fbe462be700 10 mds.0.cache.ino(10000004e64) auth_pin by 0xde85500 on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808] now 1+0
2015-03-31 11:02:28.762106 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.762120 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.762144 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.762154 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.762176 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.762184 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.762192 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762199 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762204 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762209 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762222 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408089 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.762226 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408089 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.762237 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.762240 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.762244 7fbe462be700 10 mds.0.cache.ino(10000004e64) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.762246 7fbe462be700 10 mds.0.cache.ino(10000004e64) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.762259 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408089 cr=0x6883200)
2015-03-31 11:02:28.762277 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.762293 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.762307 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.762317 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.762327 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.762336 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.762350 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762356 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762363 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762369 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.762375 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.762389 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.762400 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde85500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.762408 7fbe462be700 10 mds.0.cache.ino(10000004e64) auth_unpin by 0xde85500 on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a4808] now 0+0
2015-03-31 11:02:28.762790 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408090 lookup #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.762810 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408090 cr=0x968b480)
2015-03-31 11:02:28.762812 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408090 lookup #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.762815 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408090 cr=0x968b480) #1000006026a/blarg10076
2015-03-31 11:02:28.762817 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.762820 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10076 [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock) v=177746 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.762828 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.762830 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408090 lookup #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.762839 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.762852 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408090 cr=0x968b480)
2015-03-31 11:02:28.763329 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408091 lookup #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.763349 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408091 cr=0x4a0c100)
2015-03-31 11:02:28.763353 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408091 lookup #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.763355 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408091 cr=0x4a0c100) #1000006026a/blarg10076
2015-03-31 11:02:28.763357 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.763360 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10076 [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock) v=177746 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.763368 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.763369 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408091 lookup #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.763379 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.763391 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408091 cr=0x4a0c100)
2015-03-31 11:02:28.763874 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408092 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.763893 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408092 cr=0x237c6400)
2015-03-31 11:02:28.763897 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408092 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.763900 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408092 cr=0x237c6400) #10000004e64
2015-03-31 11:02:28.763902 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e64 snap head
2015-03-31 11:02:28.763904 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.763904 7fbe462be700 10 mds.0.server ref is [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.763915 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408092 cr=0x237c6400)
2015-03-31 11:02:28.763918 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.763935 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.763947 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.763956 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.763962 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.763976 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.763991 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764000 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.764011 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.764020 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde85500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.764029 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.764035 7fbe462be700 10 mds.0.cache.ino(10000004e64) auth_pin by 0xde85500 on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808] now 1+0
2015-03-31 11:02:28.764042 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764056 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764071 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764081 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764101 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.764110 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.764129 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764136 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764142 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764148 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764161 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408092 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.764164 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408092 getattr Xs #10000004e64 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.764175 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.764177 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.764181 7fbe462be700 10 mds.0.cache.ino(10000004e64) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.764183 7fbe462be700 10 mds.0.cache.ino(10000004e64) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.764196 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408092 cr=0x237c6400)
2015-03-31 11:02:28.764214 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764244 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764254 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764264 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.764277 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.764287 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764293 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764300 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764306 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a4808]
2015-03-31 11:02:28.764311 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.764324 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.764334 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde85500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.764343 7fbe462be700 10 mds.0.cache.ino(10000004e64) auth_unpin by 0xde85500 on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a4808] now 0+0
2015-03-31 11:02:28.764728 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408093 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.764748 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408093 cr=0x237c2300)
2015-03-31 11:02:28.764750 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408093 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.764754 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408093 cr=0x237c2300) #1000006026a
2015-03-31 11:02:28.764755 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.764757 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.764758 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.764776 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408093 cr=0x237c2300)
2015-03-31 11:02:28.764778 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764799 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764810 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.764821 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764834 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.764848 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764858 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.764869 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.764878 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.764889 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764903 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.764917 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764927 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.764948 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.764958 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.764980 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.764989 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31508} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765004 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408093 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.765008 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408093 getattr Xs #1000006026a 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.765018 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.765021 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.765026 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31509
2015-03-31 11:02:28.765028 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31509 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.765040 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408093 cr=0x237c2300)
2015-03-31 11:02:28.765059 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765089 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765099 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765110 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765125 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765135 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765145 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765155 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:28.765168 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:28.765177 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:28.765571 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408094 create #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.765590 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408094 cr=0x237c5f00)
2015-03-31 11:02:28.765593 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408094 create #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.765596 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10076
2015-03-31 11:02:28.765597 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408094 cr=0x237c5f00) #1000006026a/blarg10076
2015-03-31 11:02:28.765599 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10076
2015-03-31 11:02:28.765600 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.765602 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.765603 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178763 v=178759 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.765613 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178763 v=178759 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.765620 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10076 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178763 v=178759 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.765631 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408094 cr=0x237c5f00)
2015-03-31 11:02:28.765636 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765655 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765666 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock) v=177746 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765673 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765686 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765700 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.765714 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765724 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.765736 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock) v=177746 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765740 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10076) auth_pin by 0xde85500 on [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock) v=177746 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420] now 1+0
2015-03-31 11:02:28.765747 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=2+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765758 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.765769 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock) v=177746 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765774 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177746 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765795 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177746 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765800 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177746 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765816 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177746 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765821 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10076) auth_pin by 0x3ce9578 on [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177746 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420] now 2+0
2015-03-31 11:02:28.765826 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xde85500) [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dn xlock x=1 by 0xde85500) (dversion lock w=1 last_client=708310) v=177746 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.765831 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765845 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765858 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765871 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.765884 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765893 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765903 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765912 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.765921 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765931 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765940 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765950 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765959 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765968 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765977 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765987 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.765995 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766004 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766022 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e8 ([1000006b2e9~33a], 826 left)
2015-03-31 11:02:28.766024 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.766026 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e8 [2,head] #1000006b2e8 auth v1 s=0 n() (iversion lock) 0x3f43d278]
2015-03-31 11:02:28.766030 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178764
2015-03-31 11:02:28.766031 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10076)  pre_dirty [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dn xlock x=1 by 0xde85500) (dversion lock w=1 last_client=708310) pv=178764 v=177746 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.766038 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f43d278]
2015-03-31 11:02:28.766045 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xde85500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178764 v=178759 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:28.766053 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x265ab0d0
2015-03-31 11:02:28.766056 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178765
2015-03-31 11:02:28.766057 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178765 v=178759 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.766063 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178765 v=178759 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.766069 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f43d278]
2015-03-31 11:02:28.766074 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.766075 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295335 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766089 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295337
2015-03-31 11:02:28.766090 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295337 v=3295331 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.766093 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295337 (current v 3295331)
2015-03-31 11:02:28.766095 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178765 v=178759 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.766101 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.766102 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xde85500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295337 v=3295332 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:28.766111 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x265ac4c0
2015-03-31 11:02:28.766112 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295338
2015-03-31 11:02:28.766113 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766124 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766134 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766145 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.766146 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.737813 < 1, stopping
2015-03-31 11:02:28.766150 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766160 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.766163 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295337 v=3295331 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.766167 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31509} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766180 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f43d278]
2015-03-31 11:02:28.766186 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.766189 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f43d278]
2015-03-31 11:02:28.766197 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.766198 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766206 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766212 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766219 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766225 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766232 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766239 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766244 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766250 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766256 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766262 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766269 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766276 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766282 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766288 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f43d278]
2015-03-31 11:02:28.766297 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.766298 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.766300 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f43d278 tracedn 0x3ce9420
2015-03-31 11:02:28.766302 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xde85500) [dentry #1/test_small/small5/blarg10076 [2,head] auth NULL (dn xlock x=1 by 0xde85500) (dversion lock w=1 last_client=708310) pv=178764 v=177746 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9420]
2015-03-31 11:02:28.766308 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408094 create #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.766316 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.766319 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31510
2015-03-31 11:02:28.766321 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31510 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.766326 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.766329 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.766331 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) including xattrs version 0
2015-03-31 11:02:28.766366 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.766394 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.766409 7fbe406af700  5 mds.0.log _submit_thread 5419697328~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.766409 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.766421 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.766439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766461 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766471 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766481 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766492 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766502 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766522 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766531 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766887 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408095 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.766906 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408095 cr=0x237c5500)
2015-03-31 11:02:28.766909 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408095 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.766912 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408095 cr=0x237c5500) #1000006b2e8
2015-03-31 11:02:28.766914 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e8 snap head
2015-03-31 11:02:28.766916 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.766917 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f43d278]
2015-03-31 11:02:28.766932 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408095 cr=0x237c5500)
2015-03-31 11:02:28.766935 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.766952 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.766963 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.766975 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f43d278]
2015-03-31 11:02:28.766985 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.766999 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.767013 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767023 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.767034 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767044 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.767055 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f43d278]
2015-03-31 11:02:28.767064 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_pin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f43d278] now 1+0
2015-03-31 11:02:28.767074 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767099 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767125 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767135 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767144 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767154 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767164 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.767173 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.767188 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408095 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.767192 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408095 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.767202 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.767205 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.767209 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.767212 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.767225 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408095 cr=0x237c5500)
2015-03-31 11:02:28.767243 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767259 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767273 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767283 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767293 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767309 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767319 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.767329 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.767338 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.767352 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.767362 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.767372 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_unpin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278] now 0+0
2015-03-31 11:02:28.767650 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408096 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.767668 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408096 cr=0x237c5780)
2015-03-31 11:02:28.767670 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408096 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.767673 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408096 cr=0x237c5780) #1000006b2e8
2015-03-31 11:02:28.767674 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e8 snap head
2015-03-31 11:02:28.767676 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.767677 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.767690 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408096 cr=0x237c5780)
2015-03-31 11:02:28.767692 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767708 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767718 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767729 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.767739 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767753 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.767768 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767777 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.767792 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767803 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.767814 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.767824 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_pin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278] now 1+0
2015-03-31 11:02:28.767834 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767849 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767863 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767874 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.767884 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767895 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.767906 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.767916 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.767932 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408096 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.767936 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408096 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.767947 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.767951 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.767955 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.767957 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.767971 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408096 cr=0x237c5780)
2015-03-31 11:02:28.767980 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.767996 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.768011 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.768022 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.768033 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.768044 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.768054 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.768064 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.768074 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.768089 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.768100 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.768110 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_unpin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278] now 0+0
2015-03-31 11:02:28.772286 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e64 follows 0 op update
2015-03-31 11:02:28.772288 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772308 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.772310 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.772328 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.772328 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772335 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772343 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.772345 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772356 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772376 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772382 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.772383 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772391 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772395 7fbe406af700  5 mds.0.log _submit_thread 5419698968~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.772398 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772413 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772419 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772424 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772430 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772436 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.772446 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.812045 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408097 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.812066 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408097 cr=0x237c1400)
2015-03-31 11:02:28.812070 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408097 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.812074 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408097 cr=0x237c1400) #1000006b2e8
2015-03-31 11:02:28.812075 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e8 snap head
2015-03-31 11:02:28.812077 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.812078 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.812094 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408097 cr=0x237c1400)
2015-03-31 11:02:28.812097 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.812116 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.812128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.812140 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.812151 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.812166 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.812181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.812191 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.812202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.812213 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.812233 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.812243 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_pin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278] now 1+0
2015-03-31 11:02:28.812253 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.812278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.812302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.812312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.812322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.812331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.812340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.812349 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.812364 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408097 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.812368 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408097 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.812377 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.812381 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.812384 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.812387 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.812400 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408097 cr=0x237c1400)
2015-03-31 11:02:28.812419 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.812435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.812449 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.812459 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.812469 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.812479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.812500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.812510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.812520 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.812535 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.812545 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.812555 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_unpin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278] now 0+0
2015-03-31 11:02:28.813807 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e64 follows 0 op update
2015-03-31 11:02:28.813810 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813822 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.813823 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.813841 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.813842 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813849 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813857 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.813859 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813865 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813871 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813877 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.813878 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813884 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813891 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813896 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813902 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.813903 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.813904 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e64 [2,head] /test_small/small1/blarg10076 auth v136970 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a4808]
2015-03-31 11:02:28.813911 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.853056 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408098 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.853077 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408098 cr=0x3b0e180)
2015-03-31 11:02:28.853081 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408098 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.853084 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408098 cr=0x3b0e180) #1000006b2e8
2015-03-31 11:02:28.853086 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e8 snap head
2015-03-31 11:02:28.853088 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.853089 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.853106 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408098 cr=0x3b0e180)
2015-03-31 11:02:28.853109 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853127 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.853149 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.853160 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853175 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.853189 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853199 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.853210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.853221 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.853242 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:28.853251 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_pin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278] now 1+0
2015-03-31 11:02:28.853261 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853287 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853322 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.853341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.853350 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.853360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.853375 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408098 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.853379 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408098 getattr Xs #1000006b2e8 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:28.853389 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.853392 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.853396 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.853399 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.853411 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408098 cr=0x3b0e180)
2015-03-31 11:02:28.853430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853445 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853459 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853470 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.853490 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.853500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.853521 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f43d278]
2015-03-31 11:02:28.853531 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.853545 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.853556 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.853566 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) auth_unpin by 0xde85a00 on [inode 1000006b2e8 [2,head] {#1000006b2e8 /test_small/small5/blarg10076} auth v178764 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f43d278] now 0+0
2015-03-31 11:02:28.853863 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408099 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.853880 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408099 cr=0x3b08f00)
2015-03-31 11:02:28.853881 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408099 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.853884 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408099 cr=0x3b08f00) #10000004e79
2015-03-31 11:02:28.853886 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e79 snap head
2015-03-31 11:02:28.853888 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.853888 7fbe462be700 10 mds.0.server ref is [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.853898 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408099 cr=0x3b08f00)
2015-03-31 11:02:28.853900 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853915 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853926 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.853935 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.853941 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.853954 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.853968 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.853978 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.853987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.853996 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde85a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.854005 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.854010 7fbe462be700 10 mds.0.cache.ino(10000004e79) auth_pin by 0xde85a00 on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0] now 1+0
2015-03-31 11:02:28.854016 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.854031 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.854045 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.854055 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.854066 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.854075 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.854084 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854091 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854097 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854103 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854126 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408099 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.854130 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408099 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.854150 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.854153 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.854156 7fbe462be700 10 mds.0.cache.ino(10000004e79) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.854159 7fbe462be700 10 mds.0.cache.ino(10000004e79) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.854171 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408099 cr=0x3b08f00)
2015-03-31 11:02:28.854189 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.854205 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.854219 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.854229 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.854238 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.854247 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.854255 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854272 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854279 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854285 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.854290 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.854304 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.854314 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde85a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.854323 7fbe462be700 10 mds.0.cache.ino(10000004e79) auth_unpin by 0xde85a00 on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a3ed0] now 0+0
2015-03-31 11:02:28.854693 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408100 lookup #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.854713 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408100 cr=0xa256900)
2015-03-31 11:02:28.854716 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408100 lookup #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.854719 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408100 cr=0xa256900) #1000006026a/blarg10077
2015-03-31 11:02:28.854721 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.854723 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10077 [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock) v=177748 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.854732 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.854733 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408100 lookup #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.854743 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.854754 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408100 cr=0xa256900)
2015-03-31 11:02:28.855234 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408101 lookup #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.855252 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408101 cr=0xa251180)
2015-03-31 11:02:28.855254 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408101 lookup #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.855257 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408101 cr=0xa251180) #1000006026a/blarg10077
2015-03-31 11:02:28.855259 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.855262 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10077 [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock) v=177748 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.855269 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.855271 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408101 lookup #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.855281 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.855293 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408101 cr=0xa251180)
2015-03-31 11:02:28.855766 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408102 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.855793 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408102 cr=0xa253700)
2015-03-31 11:02:28.855796 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408102 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.855800 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408102 cr=0xa253700) #10000004e79
2015-03-31 11:02:28.855801 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e79 snap head
2015-03-31 11:02:28.855803 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.855804 7fbe462be700 10 mds.0.server ref is [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.855815 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408102 cr=0xa253700)
2015-03-31 11:02:28.855817 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.855835 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.855846 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.855856 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.855863 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.855877 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.855891 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.855901 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.855912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.855921 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde85a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.855930 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.855936 7fbe462be700 10 mds.0.cache.ino(10000004e79) auth_pin by 0xde85a00 on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0] now 1+0
2015-03-31 11:02:28.855943 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.855957 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.855972 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.855992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.856022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.856030 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856036 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856042 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856048 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856061 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408102 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.856065 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408102 getattr Xs #10000004e79 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.856075 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.856079 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.856082 7fbe462be700 10 mds.0.cache.ino(10000004e79) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.856084 7fbe462be700 10 mds.0.cache.ino(10000004e79) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.856096 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408102 cr=0xa253700)
2015-03-31 11:02:28.856115 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856131 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856145 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856156 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856165 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.856173 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.856182 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856200 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856206 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856212 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a3ed0]
2015-03-31 11:02:28.856218 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.856232 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.856243 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde85a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.856252 7fbe462be700 10 mds.0.cache.ino(10000004e79) auth_unpin by 0xde85a00 on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a3ed0] now 0+0
2015-03-31 11:02:28.856619 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408103 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.856640 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408103 cr=0x9ae4380)
2015-03-31 11:02:28.856642 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408103 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.856645 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408103 cr=0x9ae4380) #1000006026a
2015-03-31 11:02:28.856647 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.856648 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.856650 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.856667 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408103 cr=0x9ae4380)
2015-03-31 11:02:28.856670 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856686 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856697 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.856708 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856721 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.856735 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856745 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.856755 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.856765 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.856776 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856795 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856809 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856828 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856849 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.856859 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.856868 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.856878 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31510} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.856893 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408103 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.856897 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408103 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.856907 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.856910 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.856913 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31511
2015-03-31 11:02:28.856915 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31511 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.856928 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408103 cr=0x9ae4380)
2015-03-31 11:02:28.856946 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856961 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.856975 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856986 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.856996 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857006 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857016 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857037 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857047 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:28.857061 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:28.857070 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:28.857470 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408104 create #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.857490 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408104 cr=0x9ae3c00)
2015-03-31 11:02:28.857492 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408104 create #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.857495 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10077
2015-03-31 11:02:28.857496 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408104 cr=0x9ae3c00) #1000006026a/blarg10077
2015-03-31 11:02:28.857498 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10077
2015-03-31 11:02:28.857500 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.857501 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.857503 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178765 v=178759 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.857512 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178765 v=178759 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.857521 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10077 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178765 v=178759 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.857532 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408104 cr=0x9ae3c00)
2015-03-31 11:02:28.857537 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.857555 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.857567 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock) v=177748 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857574 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857585 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.857599 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.857613 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.857622 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.857633 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock) v=177748 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857638 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10077) auth_pin by 0xde85a00 on [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock) v=177748 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600] now 1+0
2015-03-31 11:02:28.857644 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=3+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857655 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.857666 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock) v=177748 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857673 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177748 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857679 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177748 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857693 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177748 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857699 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177748 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857704 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10077) auth_pin by 0x3ce9758 on [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177748 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600] now 2+0
2015-03-31 11:02:28.857720 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xde85a00) [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dn xlock x=1 by 0xde85a00) (dversion lock w=1 last_client=708310) v=177748 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857726 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.857740 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.857753 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.857766 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.857779 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.857793 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.857802 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.857811 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.857821 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857830 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857840 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857850 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857859 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857868 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857877 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857887 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857896 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857905 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857922 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2e9 ([1000006b2ea~339], 825 left)
2015-03-31 11:02:28.857925 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.857926 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2e9 [2,head] #1000006b2e9 auth v1 s=0 n() (iversion lock) 0x3f48b838]
2015-03-31 11:02:28.857930 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178766
2015-03-31 11:02:28.857932 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10077)  pre_dirty [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dn xlock x=1 by 0xde85a00) (dversion lock w=1 last_client=708310) pv=178766 v=177748 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.857939 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f48b838]
2015-03-31 11:02:28.857945 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xde85a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178766 v=178759 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:28.857954 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x93206e0
2015-03-31 11:02:28.857956 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178767
2015-03-31 11:02:28.857957 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178767 v=178759 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.857963 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178767 v=178759 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.857970 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f48b838]
2015-03-31 11:02:28.857975 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.857976 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295337 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.857990 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295339
2015-03-31 11:02:28.857991 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295339 v=3295331 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.857995 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295339 (current v 3295331)
2015-03-31 11:02:28.857996 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178767 v=178759 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.858002 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.858003 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xde85a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295339 v=3295332 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:28.858012 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3b6fc70
2015-03-31 11:02:28.858014 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295340
2015-03-31 11:02:28.858015 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858026 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858036 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858046 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.858047 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.829715 < 1, stopping
2015-03-31 11:02:28.858051 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858061 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.858065 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295339 v=3295331 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.858069 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31511} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858082 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f48b838]
2015-03-31 11:02:28.858088 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.858090 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f48b838]
2015-03-31 11:02:28.858097 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.858098 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858106 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858112 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858119 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858126 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858132 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858138 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858145 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858151 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858157 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858163 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858170 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858175 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858181 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858188 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f48b838]
2015-03-31 11:02:28.858197 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.858198 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.858200 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f48b838 tracedn 0x3ce9600
2015-03-31 11:02:28.858202 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xde85a00) [dentry #1/test_small/small5/blarg10077 [2,head] auth NULL (dn xlock x=1 by 0xde85a00) (dversion lock w=1 last_client=708310) pv=178766 v=177748 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9600]
2015-03-31 11:02:28.858209 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408104 create #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.858216 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.858219 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31512
2015-03-31 11:02:28.858221 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31512 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.858227 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.858230 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.858233 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) including xattrs version 0
2015-03-31 11:02:28.858268 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858297 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858311 7fbe406af700  5 mds.0.log _submit_thread 5419699827~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.858312 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858324 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858338 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858360 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858370 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858380 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858391 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858402 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858414 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858424 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858435 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858445 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858723 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408105 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.858742 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408105 cr=0x9ae4b00)
2015-03-31 11:02:28.858744 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408105 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.858748 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408105 cr=0x9ae4b00) #1000006b2e9
2015-03-31 11:02:28.858750 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e9 snap head
2015-03-31 11:02:28.858751 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.858752 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f48b838]
2015-03-31 11:02:28.858765 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408105 cr=0x9ae4b00)
2015-03-31 11:02:28.858767 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858787 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858798 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858809 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f48b838]
2015-03-31 11:02:28.858818 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858832 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.858846 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858855 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.858866 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858876 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.858887 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f48b838]
2015-03-31 11:02:28.858896 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_pin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f48b838] now 1+0
2015-03-31 11:02:28.858906 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858921 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.858935 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858945 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.858956 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858966 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.858986 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.859007 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.859022 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408105 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.859026 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408105 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.859034 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.859037 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.859042 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.859044 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.859056 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408105 cr=0x9ae4b00)
2015-03-31 11:02:28.859074 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859090 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859103 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859114 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859123 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.859134 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.859144 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.859165 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.859173 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.859188 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.859198 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.859209 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_unpin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838] now 0+0
2015-03-31 11:02:28.859555 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408106 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.859575 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408106 cr=0x51dd280)
2015-03-31 11:02:28.859577 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408106 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.859580 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408106 cr=0x51dd280) #1000006b2e9
2015-03-31 11:02:28.859582 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e9 snap head
2015-03-31 11:02:28.859584 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.859585 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.859601 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408106 cr=0x51dd280)
2015-03-31 11:02:28.859604 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859621 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859633 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.859645 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.859655 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859669 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.859684 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859693 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.859704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.859714 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.859725 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.859734 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_pin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838] now 1+0
2015-03-31 11:02:28.859744 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859769 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859800 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859810 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859820 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.859829 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.859838 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.859848 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.859862 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408106 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.859865 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408106 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.859875 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.859878 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.859883 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.859885 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.859898 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408106 cr=0x51dd280)
2015-03-31 11:02:28.859917 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859933 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.859947 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859958 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.859979 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.859990 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.860000 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.860011 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.860020 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.860035 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.860045 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.860056 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_unpin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838] now 0+0
2015-03-31 11:02:28.864851 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e79 follows 0 op update
2015-03-31 11:02:28.864855 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864864 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.864865 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.864881 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.864882 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864887 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864894 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.864895 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864905 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864925 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864930 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.864931 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864939 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864944 7fbe406af700  5 mds.0.log _submit_thread 5419701467~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.864946 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864959 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864965 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864972 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864978 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864985 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.864995 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.904043 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408107 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.904063 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408107 cr=0x51d9b80)
2015-03-31 11:02:28.904066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408107 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.904069 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408107 cr=0x51d9b80) #1000006b2e9
2015-03-31 11:02:28.904071 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e9 snap head
2015-03-31 11:02:28.904072 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.904074 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.904090 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408107 cr=0x51d9b80)
2015-03-31 11:02:28.904093 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.904111 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.904123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.904135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.904146 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.904161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.904176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.904186 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.904197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.904208 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.904228 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.904238 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_pin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838] now 1+0
2015-03-31 11:02:28.904248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.904285 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.904298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.904308 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.904318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.904327 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.904337 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.904346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.904361 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408107 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.904365 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408107 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.904375 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.904379 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.904382 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.904384 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.904397 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408107 cr=0x51d9b80)
2015-03-31 11:02:28.904416 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.904431 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.904446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.904456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.904466 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.904477 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.904497 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.904508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.904517 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.904532 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.904542 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.904553 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_unpin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838] now 0+0
2015-03-31 11:02:28.905810 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e79 follows 0 op update
2015-03-31 11:02:28.905813 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905824 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.905826 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.905844 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.905845 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905852 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905860 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.905862 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905868 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905876 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905881 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.905882 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905889 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905896 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905902 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905907 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.905909 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.905910 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e79 [2,head] /test_small/small1/blarg10077 auth v136972 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3ed0]
2015-03-31 11:02:28.905917 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.945065 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408108 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.945086 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408108 cr=0x25e38280)
2015-03-31 11:02:28.945090 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408108 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.945093 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408108 cr=0x25e38280) #1000006b2e9
2015-03-31 11:02:28.945096 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2e9 snap head
2015-03-31 11:02:28.945097 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.945098 7fbe462be700 10 mds.0.server ref is [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.945115 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408108 cr=0x25e38280)
2015-03-31 11:02:28.945117 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.945135 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.945148 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.945160 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.945170 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.945185 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.945200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.945210 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.945221 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.945231 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.945252 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:28.945261 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_pin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838] now 1+0
2015-03-31 11:02:28.945271 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.945296 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.945321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.945331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.945340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.945350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.945359 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.945369 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.945384 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408108 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.945388 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408108 getattr Xs #1000006b2e9 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.945398 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.945400 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.945405 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:28.945407 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.945419 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408108 cr=0x25e38280)
2015-03-31 11:02:28.945438 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.945454 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.945468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.945479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.945489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.945499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.945520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.945531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f48b838]
2015-03-31 11:02:28.945541 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.945555 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.945566 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.945577 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) auth_unpin by 0xde86e00 on [inode 1000006b2e9 [2,head] {#1000006b2e9 /test_small/small5/blarg10077} auth v178766 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f48b838] now 0+0
2015-03-31 11:02:28.945927 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408109 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.945947 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408109 cr=0x25e3b200)
2015-03-31 11:02:28.945949 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408109 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.945952 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408109 cr=0x25e3b200) #10000004e69
2015-03-31 11:02:28.945954 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e69 snap head
2015-03-31 11:02:28.945955 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.945956 7fbe462be700 10 mds.0.server ref is [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.945970 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408109 cr=0x25e3b200)
2015-03-31 11:02:28.945973 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.945990 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.946002 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.946011 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.946018 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.946033 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.946047 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.946057 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.946068 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.946077 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde86e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.946086 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.946093 7fbe462be700 10 mds.0.cache.ino(10000004e69) auth_pin by 0xde86e00 on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598] now 1+0
2015-03-31 11:02:28.946100 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.946115 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.946129 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.946150 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.946160 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.946169 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.946190 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946195 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946201 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946207 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946220 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408109 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.946224 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408109 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.946234 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.946236 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.946241 7fbe462be700 10 mds.0.cache.ino(10000004e69) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:28.946243 7fbe462be700 10 mds.0.cache.ino(10000004e69) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.946255 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408109 cr=0x25e3b200)
2015-03-31 11:02:28.946274 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.946290 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.946304 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.946314 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.946324 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.946332 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.946341 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946359 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946366 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946372 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.946379 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.946393 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.946404 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde86e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.946413 7fbe462be700 10 mds.0.cache.ino(10000004e69) auth_unpin by 0xde86e00 on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a3598] now 0+0
2015-03-31 11:02:28.946780 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408110 lookup #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.946807 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408110 cr=0x25e38500)
2015-03-31 11:02:28.946809 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408110 lookup #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.946811 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408110 cr=0x25e38500) #1000006026a/blarg10078
2015-03-31 11:02:28.946813 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.946816 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10078 [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock) v=177750 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.946824 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.946826 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408110 lookup #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.946836 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.946848 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408110 cr=0x25e38500)
2015-03-31 11:02:28.947334 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408111 lookup #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.947353 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408111 cr=0x25e39680)
2015-03-31 11:02:28.947355 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408111 lookup #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.947358 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408111 cr=0x25e39680) #1000006026a/blarg10078
2015-03-31 11:02:28.947360 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.947363 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10078 [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock) v=177750 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.947370 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:28.947372 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408111 lookup #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.947381 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.947393 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408111 cr=0x25e39680)
2015-03-31 11:02:28.947884 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408112 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.947904 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408112 cr=0x25e3d000)
2015-03-31 11:02:28.947906 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408112 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.947910 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408112 cr=0x25e3d000) #10000004e69
2015-03-31 11:02:28.947911 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e69 snap head
2015-03-31 11:02:28.947913 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.947914 7fbe462be700 10 mds.0.server ref is [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.947926 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408112 cr=0x25e3d000)
2015-03-31 11:02:28.947928 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.947946 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.947957 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.947967 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.947973 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.947987 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.948002 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948012 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.948023 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:28.948032 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde86e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:28.948041 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.948047 7fbe462be700 10 mds.0.cache.ino(10000004e69) auth_pin by 0xde86e00 on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598] now 1+0
2015-03-31 11:02:28.948055 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948069 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948084 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948094 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.948135 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.948143 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948150 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948156 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948161 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948174 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408112 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.948178 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408112 getattr Xs #10000004e69 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.948188 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.948191 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.948195 7fbe462be700 10 mds.0.cache.ino(10000004e69) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:28.948197 7fbe462be700 10 mds.0.cache.ino(10000004e69) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.948210 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408112 cr=0x25e3d000)
2015-03-31 11:02:28.948229 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948244 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948258 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948268 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948278 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.948287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:28.948295 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948313 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948320 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948326 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a3598]
2015-03-31 11:02:28.948333 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.948347 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.948358 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde86e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:28.948367 7fbe462be700 10 mds.0.cache.ino(10000004e69) auth_unpin by 0xde86e00 on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a3598] now 0+0
2015-03-31 11:02:28.948752 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408113 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.948773 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408113 cr=0x25e39e00)
2015-03-31 11:02:28.948776 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408113 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.948779 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408113 cr=0x25e39e00) #1000006026a
2015-03-31 11:02:28.948781 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.948787 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.948788 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.948807 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408113 cr=0x25e39e00)
2015-03-31 11:02:28.948809 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948826 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948837 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.948848 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948861 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.948875 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948885 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.948896 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.948906 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.948917 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948931 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.948945 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948955 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.948976 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.948986 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949007 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949016 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31512} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949031 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408113 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.949035 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408113 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.949045 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.949048 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.949053 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31513
2015-03-31 11:02:28.949055 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31513 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.949067 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408113 cr=0x25e39e00)
2015-03-31 11:02:28.949086 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949102 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949116 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949126 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949135 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949146 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949155 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949176 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949186 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:28.949200 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:28.949210 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:28.949614 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408114 create #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.949634 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408114 cr=0x25e3c380)
2015-03-31 11:02:28.949636 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408114 create #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.949639 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10078
2015-03-31 11:02:28.949640 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408114 cr=0x25e3c380) #1000006026a/blarg10078
2015-03-31 11:02:28.949642 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10078
2015-03-31 11:02:28.949644 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:28.949645 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.949647 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178767 v=178759 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.949656 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178767 v=178759 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.949664 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10078 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178767 v=178759 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.949675 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408114 cr=0x25e3c380)
2015-03-31 11:02:28.949680 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949698 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949710 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock) v=177750 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949717 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949729 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949743 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.949757 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949767 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.949778 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock) v=177750 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949788 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10078) auth_pin by 0xde86e00 on [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock) v=177750 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0] now 1+0
2015-03-31 11:02:28.949794 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=4+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949805 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.949817 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock) v=177750 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949822 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177750 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949838 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177750 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949843 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177750 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949848 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177750 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949863 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10078) auth_pin by 0x3ce9938 on [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177750 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0] now 2+0
2015-03-31 11:02:28.949868 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xde86e00) [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dn xlock x=1 by 0xde86e00) (dversion lock w=1 last_client=708310) v=177750 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.949874 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949888 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949902 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949914 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.949927 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949937 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949946 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949955 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.949965 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949974 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949984 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.949994 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950003 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950012 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950021 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950030 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950039 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950048 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950065 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ea ([1000006b2eb~338], 824 left)
2015-03-31 11:02:28.950068 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:28.950069 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ea [2,head] #1000006b2ea auth v1 s=0 n() (iversion lock) 0x3f37e710]
2015-03-31 11:02:28.950073 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178768
2015-03-31 11:02:28.950074 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10078)  pre_dirty [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dn xlock x=1 by 0xde86e00) (dversion lock w=1 last_client=708310) pv=178768 v=177750 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.950082 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f37e710]
2015-03-31 11:02:28.950088 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xde86e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178768 v=178759 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:28.950097 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9324360
2015-03-31 11:02:28.950098 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178769
2015-03-31 11:02:28.950099 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178769 v=178759 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.950105 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178769 v=178759 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.950111 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f37e710]
2015-03-31 11:02:28.950117 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.950119 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295339 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950132 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295341
2015-03-31 11:02:28.950133 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295341 v=3295331 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.950138 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295341 (current v 3295331)
2015-03-31 11:02:28.950139 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178769 v=178759 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:28.950147 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:28.950148 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xde86e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295341 v=3295332 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:28.950157 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x28ed0840
2015-03-31 11:02:28.950158 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295342
2015-03-31 11:02:28.950159 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950170 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950180 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950190 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:28.950191 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.921858 < 1, stopping
2015-03-31 11:02:28.950195 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950205 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:28.950209 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295341 v=3295331 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:28.950213 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31513} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950226 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f37e710]
2015-03-31 11:02:28.950232 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:28.950234 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f37e710]
2015-03-31 11:02:28.950242 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.950243 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950251 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950257 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950264 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950271 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950276 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950282 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950288 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950295 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950301 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950306 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950312 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950319 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950325 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950331 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f37e710]
2015-03-31 11:02:28.950341 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.950342 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:28.950344 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f37e710 tracedn 0x3ce97e0
2015-03-31 11:02:28.950346 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xde86e00) [dentry #1/test_small/small5/blarg10078 [2,head] auth NULL (dn xlock x=1 by 0xde86e00) (dversion lock w=1 last_client=708310) pv=178768 v=177750 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce97e0]
2015-03-31 11:02:28.950352 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408114 create #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.950359 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.950362 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31514
2015-03-31 11:02:28.950364 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31514 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.950369 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:28.950373 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:28.950375 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) including xattrs version 0
2015-03-31 11:02:28.950411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.950439 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.950454 7fbe406af700  5 mds.0.log _submit_thread 5419702326~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:28.950453 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.950467 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.950481 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950503 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950514 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950524 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950534 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950546 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950558 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950568 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950579 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950588 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950891 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408115 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.950909 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408115 cr=0x49d7300)
2015-03-31 11:02:28.950911 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408115 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.950915 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408115 cr=0x49d7300) #1000006b2ea
2015-03-31 11:02:28.950917 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ea snap head
2015-03-31 11:02:28.950918 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.950919 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f37e710]
2015-03-31 11:02:28.950932 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408115 cr=0x49d7300)
2015-03-31 11:02:28.950934 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.950949 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.950959 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.950970 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f37e710]
2015-03-31 11:02:28.950979 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.950993 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:28.951007 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951016 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:28.951027 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951037 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:28.951048 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f37e710]
2015-03-31 11:02:28.951057 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_pin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f37e710] now 1+0
2015-03-31 11:02:28.951067 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951082 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951096 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951107 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951117 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951127 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951137 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.951157 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.951183 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408115 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.951187 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408115 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.951197 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.951200 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.951203 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:28.951206 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.951217 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408115 cr=0x49d7300)
2015-03-31 11:02:28.951236 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951251 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951265 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951275 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951285 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951294 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951304 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.951324 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.951334 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.951348 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.951359 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.951370 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_unpin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710] now 0+0
2015-03-31 11:02:28.951679 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408116 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.951696 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408116 cr=0x49d2800)
2015-03-31 11:02:28.951698 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408116 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.951701 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408116 cr=0x49d2800) #1000006b2ea
2015-03-31 11:02:28.951703 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ea snap head
2015-03-31 11:02:28.951704 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.951705 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:28.951718 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408116 cr=0x49d2800)
2015-03-31 11:02:28.951720 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951735 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951746 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951756 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:28.951765 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951779 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:28.951797 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951807 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:28.951817 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951827 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:28.951837 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:28.951847 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_pin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710] now 1+0
2015-03-31 11:02:28.951857 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951872 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.951885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951896 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.951906 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951916 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.951936 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.951958 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.951971 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408116 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.951975 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408116 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.951984 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.951987 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.951990 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:28.951993 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.952005 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408116 cr=0x49d2800)
2015-03-31 11:02:28.952024 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.952039 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.952053 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.952063 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.952073 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.952094 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.952104 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.952114 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.952123 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.952138 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.952148 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.952159 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_unpin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710] now 0+0
2015-03-31 11:02:28.956271 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e69 follows 0 op update
2015-03-31 11:02:28.956275 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956283 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.956285 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.956300 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.956301 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956307 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956314 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:28.956316 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956326 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956345 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956351 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:28.956352 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956360 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956367 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956367 7fbe406af700  5 mds.0.log _submit_thread 5419703966~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:28.956372 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956378 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956383 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956388 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956393 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.956403 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:28.996062 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408117 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.996083 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408117 cr=0x49d1400)
2015-03-31 11:02:28.996087 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408117 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.996091 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408117 cr=0x49d1400) #1000006b2ea
2015-03-31 11:02:28.996093 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ea snap head
2015-03-31 11:02:28.996095 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:28.996096 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:28.996112 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408117 cr=0x49d1400)
2015-03-31 11:02:28.996115 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.996133 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.996145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.996156 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:28.996167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.996182 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:28.996197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.996207 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:28.996218 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.996229 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:28.996250 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:28.996259 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_pin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710] now 1+0
2015-03-31 11:02:28.996270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.996306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.996319 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.996329 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.996338 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.996348 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.996357 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.996366 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.996380 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408117 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.996383 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408117 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:28.996393 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:28.996395 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:28.996400 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:28.996402 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:28.996415 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408117 cr=0x49d1400)
2015-03-31 11:02:28.996434 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.996450 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.996463 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.996474 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:28.996484 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.996494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:28.996504 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.996525 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:28.996535 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:28.996549 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:28.996560 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:28.996570 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_unpin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710] now 0+0
2015-03-31 11:02:28.997858 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e69 follows 0 op update
2015-03-31 11:02:28.997861 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997872 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:28.997874 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:28.997892 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:28.997893 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997899 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997906 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:28.997908 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997914 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997921 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997928 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:28.997929 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997935 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997942 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997947 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997953 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:28.997954 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:28.997955 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e69 [2,head] /test_small/small1/blarg10078 auth v136974 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a3598]
2015-03-31 11:02:28.997963 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.037043 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408118 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.037065 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408118 cr=0x49d4880)
2015-03-31 11:02:29.037067 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408118 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.037070 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408118 cr=0x49d4880) #1000006b2ea
2015-03-31 11:02:29.037072 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ea snap head
2015-03-31 11:02:29.037074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.037075 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:29.037092 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408118 cr=0x49d4880)
2015-03-31 11:02:29.037095 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.037137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:29.037148 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037164 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.037179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037189 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.037200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.037221 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.037232 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:29.037241 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_pin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710] now 1+0
2015-03-31 11:02:29.037252 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037277 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.037331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.037340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:29.037350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:29.037364 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408118 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.037368 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408118 getattr Xs #1000006b2ea 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.037378 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.037381 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.037386 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.037388 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.037401 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408118 cr=0x49d4880)
2015-03-31 11:02:29.037420 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037461 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.037481 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.037501 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:29.037512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f37e710]
2015-03-31 11:02:29.037521 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.037536 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.037546 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.037557 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) auth_unpin by 0xde86900 on [inode 1000006b2ea [2,head] {#1000006b2ea /test_small/small5/blarg10078} auth v178768 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f37e710] now 0+0
2015-03-31 11:02:29.037857 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408119 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.037874 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408119 cr=0x6fc9b80)
2015-03-31 11:02:29.037876 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408119 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.037879 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408119 cr=0x6fc9b80) #10000004e68
2015-03-31 11:02:29.037880 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e68 snap head
2015-03-31 11:02:29.037882 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.037883 7fbe462be700 10 mds.0.server ref is [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.037892 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408119 cr=0x6fc9b80)
2015-03-31 11:02:29.037895 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037910 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037921 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.037930 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.037936 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.037949 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.037963 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.037972 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.037983 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.037991 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde86900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.038000 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.038005 7fbe462be700 10 mds.0.cache.ino(10000004e68) auth_pin by 0xde86900 on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60] now 1+0
2015-03-31 11:02:29.038011 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.038025 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.038039 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.038050 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.038060 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.038069 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.038078 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038084 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038089 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038095 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038119 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408119 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.038123 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408119 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.038144 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.038146 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.038150 7fbe462be700 10 mds.0.cache.ino(10000004e68) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.038152 7fbe462be700 10 mds.0.cache.ino(10000004e68) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.038164 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408119 cr=0x6fc9b80)
2015-03-31 11:02:29.038182 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.038197 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.038211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.038221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.038231 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.038239 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.038248 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038265 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038271 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038277 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.038284 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.038298 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.038308 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde86900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.038317 7fbe462be700 10 mds.0.cache.ino(10000004e68) auth_unpin by 0xde86900 on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a2c60] now 0+0
2015-03-31 11:02:29.038693 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408120 lookup #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.038713 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408120 cr=0x237c1b80)
2015-03-31 11:02:29.038715 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408120 lookup #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.038718 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408120 cr=0x237c1b80) #1000006026a/blarg10079
2015-03-31 11:02:29.038719 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.038722 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10079 [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock) v=177752 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.038729 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.038730 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408120 lookup #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.038742 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.038754 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408120 cr=0x237c1b80)
2015-03-31 11:02:29.039236 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408121 lookup #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.039255 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408121 cr=0x25f4df00)
2015-03-31 11:02:29.039257 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408121 lookup #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.039260 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408121 cr=0x25f4df00) #1000006026a/blarg10079
2015-03-31 11:02:29.039262 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.039264 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10079 [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock) v=177752 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.039272 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.039274 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408121 lookup #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.039283 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.039295 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408121 cr=0x25f4df00)
2015-03-31 11:02:29.039768 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408122 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.039794 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408122 cr=0x9830000)
2015-03-31 11:02:29.039797 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408122 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.039800 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408122 cr=0x9830000) #10000004e68
2015-03-31 11:02:29.039802 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e68 snap head
2015-03-31 11:02:29.039804 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.039805 7fbe462be700 10 mds.0.server ref is [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.039816 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408122 cr=0x9830000)
2015-03-31 11:02:29.039818 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.039836 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.039847 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.039857 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.039864 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.039878 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.039892 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.039901 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.039912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.039921 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde86900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.039930 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.039937 7fbe462be700 10 mds.0.cache.ino(10000004e68) auth_pin by 0xde86900 on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60] now 1+0
2015-03-31 11:02:29.039943 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.039958 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.039972 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.039992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.040023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.040031 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040037 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040043 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040048 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040060 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408122 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.040064 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408122 getattr Xs #10000004e68 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.040074 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.040077 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.040081 7fbe462be700 10 mds.0.cache.ino(10000004e68) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.040084 7fbe462be700 10 mds.0.cache.ino(10000004e68) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.040097 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408122 cr=0x9830000)
2015-03-31 11:02:29.040115 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040131 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040145 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040156 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040165 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.040174 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.040183 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040200 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040206 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040211 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a2c60]
2015-03-31 11:02:29.040218 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.040231 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.040242 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde86900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.040251 7fbe462be700 10 mds.0.cache.ino(10000004e68) auth_unpin by 0xde86900 on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a2c60] now 0+0
2015-03-31 11:02:29.040599 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408123 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.040620 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408123 cr=0x26900500)
2015-03-31 11:02:29.040622 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408123 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.040625 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408123 cr=0x26900500) #1000006026a
2015-03-31 11:02:29.040627 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.040629 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.040630 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040647 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408123 cr=0x26900500)
2015-03-31 11:02:29.040650 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040666 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040677 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040688 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040701 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.040715 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040725 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.040736 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040746 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.040757 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040771 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040791 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040801 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040812 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040832 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040842 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040863 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31514} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040878 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408123 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.040882 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408123 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.040892 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.040896 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.040900 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31515
2015-03-31 11:02:29.040902 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31515 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.040915 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408123 cr=0x26900500)
2015-03-31 11:02:29.040933 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040949 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.040963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040973 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.040983 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.040994 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041015 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041025 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041035 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.041049 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.041059 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.041430 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408124 create #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.041450 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408124 cr=0x9d48000)
2015-03-31 11:02:29.041453 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408124 create #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.041457 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10079
2015-03-31 11:02:29.041458 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408124 cr=0x9d48000) #1000006026a/blarg10079
2015-03-31 11:02:29.041460 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10079
2015-03-31 11:02:29.041461 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.041463 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.041464 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178769 v=178759 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.041474 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178769 v=178759 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.041482 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10079 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178769 v=178759 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.041492 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408124 cr=0x9d48000)
2015-03-31 11:02:29.041498 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.041517 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.041529 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock) v=177752 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041535 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041548 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.041561 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86900 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.041576 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.041585 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.041596 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock) v=177752 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041601 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10079) auth_pin by 0xde86900 on [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock) v=177752 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0] now 1+0
2015-03-31 11:02:29.041606 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041617 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.041629 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock) v=177752 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041634 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177752 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041650 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177752 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041655 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177752 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041660 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177752 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041677 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10079) auth_pin by 0x3ce9b18 on [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177752 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0] now 2+0
2015-03-31 11:02:29.041682 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xde86900) [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dn xlock x=1 by 0xde86900) (dversion lock w=1 last_client=708310) v=177752 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041688 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.041703 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.041716 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.041729 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.041741 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.041751 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.041761 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.041770 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.041779 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041794 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041803 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041813 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041822 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041832 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041841 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041850 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041859 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041869 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041886 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2eb ([1000006b2ec~337], 823 left)
2015-03-31 11:02:29.041889 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.041890 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2eb [2,head] #1000006b2eb auth v1 s=0 n() (iversion lock) 0x3f3bb840]
2015-03-31 11:02:29.041894 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178770
2015-03-31 11:02:29.041896 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10079)  pre_dirty [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dn xlock x=1 by 0xde86900) (dversion lock w=1 last_client=708310) pv=178770 v=177752 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.041903 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3bb840]
2015-03-31 11:02:29.041909 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xde86900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178770 v=178759 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:29.041918 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0xa06b7b0
2015-03-31 11:02:29.041920 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178771
2015-03-31 11:02:29.041921 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178759 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.041928 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178759 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.041934 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3bb840]
2015-03-31 11:02:29.041940 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.041942 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295341 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.041955 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295343
2015-03-31 11:02:29.041955 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295331 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.041959 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295343 (current v 3295331)
2015-03-31 11:02:29.041960 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178759 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=87+1517,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.041967 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.041968 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xde86900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295343 v=3295332 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:29.041977 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa069550
2015-03-31 11:02:29.041978 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295344
2015-03-31 11:02:29.041979 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.041990 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042000 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042010 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.042011 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.01368 ago, continuing
2015-03-31 11:02:29.042015 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120424 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042026 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120426
2015-03-31 11:02:29.042027 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120426 v=120424 ap=0+7 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:29.042030 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120426 (current v 120424)
2015-03-31 11:02:29.042031 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295332 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:29.042040 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.042041 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0xde86900 on [dir 1 / [2,head] auth v=120425 cv=119911/119911 dir_auth=0 ap=1+6+7 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382403=382394+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 7
2015-03-31 11:02:29.042049 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0xa06df90
2015-03-31 11:02:29.042050 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120427
2015-03-31 11:02:29.042051 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042064 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042077 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042087 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.042088 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.904894 < 1, stopping
2015-03-31 11:02:29.042091 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042104 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - added at 2015-03-31 11:02:29.042104
2015-03-31 11:02:29.042108 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120426 v=120424 ap=0+7 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:29.042112 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042123 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295331 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.042126 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31515} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042139 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3bb840]
2015-03-31 11:02:29.042146 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.042148 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042156 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.042157 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042165 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042172 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042178 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042185 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042191 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042198 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042204 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042210 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042215 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042222 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042228 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042234 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042240 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042247 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3bb840]
2015-03-31 11:02:29.042257 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.042258 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.042260 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3bb840 tracedn 0x3ce99c0
2015-03-31 11:02:29.042262 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xde86900) [dentry #1/test_small/small5/blarg10079 [2,head] auth NULL (dn xlock x=1 by 0xde86900) (dversion lock w=1 last_client=708310) pv=178770 v=177752 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce99c0]
2015-03-31 11:02:29.042268 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408124 create #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.042276 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.042279 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31516
2015-03-31 11:02:29.042281 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31516 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.042286 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.042289 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.042291 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) including xattrs version 0
2015-03-31 11:02:29.042326 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042355 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042376 7fbe406af700  5 mds.0.log _submit_thread 5419704825~2315 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:29.042370 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042393 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042418 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042429 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042440 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042451 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042461 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042473 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042484 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042494 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042505 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042514 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042588 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408125 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.042608 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408125 cr=0xb262800)
2015-03-31 11:02:29.042610 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408125 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.042614 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408125 cr=0xb262800) #1000006026a
2015-03-31 11:02:29.042616 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.042617 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.042618 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042632 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408125 cr=0xb262800)
2015-03-31 11:02:29.042635 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042650 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042661 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042671 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042695 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86400 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.042709 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042718 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.042729 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042739 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.042749 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042764 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042778 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042792 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042803 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042813 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042823 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042834 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31516} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042871 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408125 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.042875 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408125 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.042885 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.042887 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.042891 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31517
2015-03-31 11:02:29.042893 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31517 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.042905 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408125 cr=0xb262800)
2015-03-31 11:02:29.042924 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042939 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.042953 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042963 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.042974 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042984 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.042994 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043014 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043024 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86400 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.043037 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.043047 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.043181 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408126 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.043198 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408126 cr=0x45a2300)
2015-03-31 11:02:29.043200 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408126 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.043203 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408126 cr=0x45a2300) #1000006b2eb
2015-03-31 11:02:29.043205 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2eb snap head
2015-03-31 11:02:29.043206 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.043207 7fbe462be700 10 mds.0.server ref is [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3bb840]
2015-03-31 11:02:29.043221 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408126 cr=0x45a2300)
2015-03-31 11:02:29.043223 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043239 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043250 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043260 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3bb840]
2015-03-31 11:02:29.043270 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043294 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86400 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.043308 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043318 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.043329 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043338 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.043348 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3bb840]
2015-03-31 11:02:29.043358 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_pin by 0xde86400 on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3bb840] now 1+0
2015-03-31 11:02:29.043367 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043382 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043396 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043407 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043417 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043428 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043449 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.043458 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.043472 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408126 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.043475 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408126 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.043485 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.043487 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.043490 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.043493 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.043505 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408126 cr=0x45a2300)
2015-03-31 11:02:29.043523 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043539 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043553 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043563 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043574 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043584 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043605 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.043615 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.043624 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde86400 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.043639 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.043650 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.043661 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_unpin by 0xde86400 on [inode 1000006b2eb [2,head] {#1000006b2eb /test_small/small5/blarg10079} auth v178770 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3bb840] now 0+0
2015-03-31 11:02:29.043786 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408127 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.043806 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408127 cr=0xaeedc80)
2015-03-31 11:02:29.043810 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408127 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.043813 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408127 cr=0xaeedc80) #1000006026a
2015-03-31 11:02:29.043815 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.043816 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.043817 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043831 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408127 cr=0xaeedc80)
2015-03-31 11:02:29.043834 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043848 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043859 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043870 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043893 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde86400 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.043907 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043916 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde86400 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.043927 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.043936 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde86400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.043946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043960 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.043973 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043984 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.043994 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.044004 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.044014 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.044024 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.044045 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=8+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:29.044066 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=8+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.044076 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x9a9ef30 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:29.044078 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=8+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.059403 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.059410 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.059424 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.059426 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) mark_dirty [inode 1000006b2e6 [2,head] /test_small/small5/blarg10074 auth v178759 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f36f760]
2015-03-31 11:02:29.059443 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10074)  mark_dirty [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178760 v=177742 ap=2+0 inode=0x3f36f760 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060]
2015-03-31 11:02:29.059453 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178760 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 87=87+0) hs=88+1516,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178760
2015-03-31 11:02:29.059466 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) mark_dirty_parent
2015-03-31 11:02:29.059468 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295331 pv3295343 ap=8+1 f(v0 m2015-03-31 11:03:05.000000 87=87+0) n(v1 rc2015-03-31 11:03:05.000000 88=87+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.059485 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295331 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.059490 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295333 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382390=382383+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295333
2015-03-31 11:02:29.059503 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178761 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 88=88+0) hs=88+1516,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178761
2015-03-31 11:02:29.059512 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295334 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382391=382384+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295334
2015-03-31 11:02:29.059522 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e6 [2,head] /test_small/small5/blarg10074 auth v178760 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f36f760]
2015-03-31 11:02:29.059535 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.059538 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27564 client_caps(grant ino 1000006b2e6 1851547 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:29.059562 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178760 ap=2+0 inode=0x3f36f760 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060]
2015-03-31 11:02:29.059577 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408074 create #1000006026a/blarg10074 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:29.059598 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e6
2015-03-31 11:02:29.059601 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178760 ap=2+0 inode=0x3f36f760 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060]
2015-03-31 11:02:29.059611 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178760 ap=2+0 inode=0x3f36f760 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060]
2015-03-31 11:02:29.059621 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178760 ap=2+0 inode=0x3f36f760 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060]
2015-03-31 11:02:29.059626 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10074) auth_unpin by 0x3ce91b8 on [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178760 ap=1+0 inode=0x3f36f760 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060] now 1+0
2015-03-31 11:02:29.059634 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178760 ap=1+0 inode=0x3f36f760 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060]
2015-03-31 11:02:29.059639 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.059663 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178760 ap=1+0 inode=0x3f36f760 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9060]
2015-03-31 11:02:29.059671 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295333 pv3295343 ap=8+1 f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 89=88+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.059694 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295333 pv3295343 ap=8+1 f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 89=88+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.059708 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295333 pv3295343 ap=8+1 f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 89=88+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.059731 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408074 cr=0x9298280)
2015-03-31 11:02:29.059741 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde80000 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.059759 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde80000 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.059773 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10074) auth_unpin by 0xde80000 on [dentry #1/test_small/small5/blarg10074 [2,head] auth (dn sync l=1) (dversion lock) v=178760 inode=0x3f36f760 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce9060] now 0+0
2015-03-31 11:02:29.059800 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xde80000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295334 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382391=382384+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:29.059813 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xde80000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178761 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 88=88+0) hs=88+1516,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:29.059823 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde80000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295333 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 89=88+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.059856 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.059858 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.059863 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.059865 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) mark_dirty [inode 1000006b2e7 [2,head] /test_small/small5/blarg10075 auth v178761 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:29.059877 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10075)  mark_dirty [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178762 v=177744 ap=2+0 inode=0x3f4e4d20 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240]
2015-03-31 11:02:29.059886 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178762 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 88=88+0) hs=89+1515,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178762
2015-03-31 11:02:29.059896 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) mark_dirty_parent
2015-03-31 11:02:29.059899 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295333 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 88=88+0) n(v1 rc2015-03-31 11:03:05.000000 89=88+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.059913 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295333 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.059918 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295335 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382391=382384+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295335
2015-03-31 11:02:29.059929 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178763 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 89=89+0) hs=89+1515,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178763
2015-03-31 11:02:29.059938 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295336 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382392=382385+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295336
2015-03-31 11:02:29.059947 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e7 [2,head] /test_small/small5/blarg10075 auth v178762 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4e4d20]
2015-03-31 11:02:29.059959 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.059961 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27565 client_caps(grant ino 1000006b2e7 1851548 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:29.059983 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178762 ap=2+0 inode=0x3f4e4d20 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240]
2015-03-31 11:02:29.059992 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408084 create #1000006026a/blarg10075 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:29.060004 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e7
2015-03-31 11:02:29.060008 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178762 ap=2+0 inode=0x3f4e4d20 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240]
2015-03-31 11:02:29.060017 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178762 ap=2+0 inode=0x3f4e4d20 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240]
2015-03-31 11:02:29.060024 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178762 ap=2+0 inode=0x3f4e4d20 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240]
2015-03-31 11:02:29.060030 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10075) auth_unpin by 0x3ce9398 on [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178762 ap=1+0 inode=0x3f4e4d20 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240] now 1+0
2015-03-31 11:02:29.060036 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178762 ap=1+0 inode=0x3f4e4d20 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240]
2015-03-31 11:02:29.060043 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.060059 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178762 ap=1+0 inode=0x3f4e4d20 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9240]
2015-03-31 11:02:29.060066 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295335 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 90=89+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060081 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295335 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 90=89+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060094 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295335 pv3295343 ap=7+1 f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 90=89+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060116 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408084 cr=0x9ae1680)
2015-03-31 11:02:29.060124 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde85f00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.060142 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85f00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.060155 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10075) auth_unpin by 0xde85f00 on [dentry #1/test_small/small5/blarg10075 [2,head] auth (dn sync l=1) (dversion lock) v=178762 inode=0x3f4e4d20 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce9240] now 0+0
2015-03-31 11:02:29.060162 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xde85f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295336 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382392=382385+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:29.060173 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xde85f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178763 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 89=89+0) hs=89+1515,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:29.060182 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295335 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 90=89+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.060213 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.060215 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.060220 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.060221 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) mark_dirty [inode 1000006b2e8 [2,head] /test_small/small5/blarg10076 auth v178763 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f43d278]
2015-03-31 11:02:29.060233 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10076)  mark_dirty [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178764 v=177746 ap=2+0 inode=0x3f43d278 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420]
2015-03-31 11:02:29.060241 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178764 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 89=89+0) hs=90+1514,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178764
2015-03-31 11:02:29.060251 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) mark_dirty_parent
2015-03-31 11:02:29.060252 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295335 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 89=89+0) n(v1 rc2015-03-31 11:03:05.000000 90=89+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060266 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295335 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.060270 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295337 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382392=382385+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295337
2015-03-31 11:02:29.060281 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178765 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 90=90+0) hs=90+1514,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178765
2015-03-31 11:02:29.060290 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295338 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382393=382386+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295338
2015-03-31 11:02:29.060300 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e8 [2,head] /test_small/small5/blarg10076 auth v178764 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f43d278]
2015-03-31 11:02:29.060311 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.060313 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27566 client_caps(grant ino 1000006b2e8 1851549 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:05.000000) v4
2015-03-31 11:02:29.060334 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178764 ap=2+0 inode=0x3f43d278 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420]
2015-03-31 11:02:29.060343 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408094 create #1000006026a/blarg10076 2015-03-31 11:03:05.000000) v2
2015-03-31 11:02:29.060355 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e8
2015-03-31 11:02:29.060358 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178764 ap=2+0 inode=0x3f43d278 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420]
2015-03-31 11:02:29.060367 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178764 ap=2+0 inode=0x3f43d278 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420]
2015-03-31 11:02:29.060374 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178764 ap=2+0 inode=0x3f43d278 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420]
2015-03-31 11:02:29.060381 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10076) auth_unpin by 0x3ce9578 on [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178764 ap=1+0 inode=0x3f43d278 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420] now 1+0
2015-03-31 11:02:29.060388 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178764 ap=1+0 inode=0x3f43d278 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420]
2015-03-31 11:02:29.060393 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.060409 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178764 ap=1+0 inode=0x3f43d278 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9420]
2015-03-31 11:02:29.060416 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295337 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 91=90+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060431 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295337 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 91=90+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060444 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295337 pv3295343 ap=6+1 f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 91=90+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060465 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408094 cr=0x237c5f00)
2015-03-31 11:02:29.060473 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde85500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.060492 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85500 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.060504 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10076) auth_unpin by 0xde85500 on [dentry #1/test_small/small5/blarg10076 [2,head] auth (dn sync l=1) (dversion lock) v=178764 inode=0x3f43d278 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce9420] now 0+0
2015-03-31 11:02:29.060512 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xde85500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295338 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382393=382386+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:29.060523 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xde85500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178765 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 90=90+0) hs=90+1514,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:29.060532 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295337 pv3295343 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 91=90+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.060562 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.060565 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.060570 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.060571 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) mark_dirty [inode 1000006b2e9 [2,head] /test_small/small5/blarg10077 auth v178765 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f48b838]
2015-03-31 11:02:29.060583 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10077)  mark_dirty [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178766 v=177748 ap=2+0 inode=0x3f48b838 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600]
2015-03-31 11:02:29.060591 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178766 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 90=90+0) hs=91+1513,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178766
2015-03-31 11:02:29.060601 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) mark_dirty_parent
2015-03-31 11:02:29.060602 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295337 pv3295343 ap=5+1 f(v0 m2015-03-31 11:03:05.000000 90=90+0) n(v1 rc2015-03-31 11:03:05.000000 91=90+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060616 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295337 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.060621 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295339 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382393=382386+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295339
2015-03-31 11:02:29.060632 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178767 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 91=91+0) hs=91+1513,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178767
2015-03-31 11:02:29.060639 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295340 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382394=382387+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295340
2015-03-31 11:02:29.060649 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2e9 [2,head] /test_small/small5/blarg10077 auth v178766 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f48b838]
2015-03-31 11:02:29.060660 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.060663 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27567 client_caps(grant ino 1000006b2e9 1851550 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.060683 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178766 ap=2+0 inode=0x3f48b838 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600]
2015-03-31 11:02:29.060692 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408104 create #1000006026a/blarg10077 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.060704 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2e9
2015-03-31 11:02:29.060707 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178766 ap=2+0 inode=0x3f48b838 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600]
2015-03-31 11:02:29.060716 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178766 ap=2+0 inode=0x3f48b838 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600]
2015-03-31 11:02:29.060723 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178766 ap=2+0 inode=0x3f48b838 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600]
2015-03-31 11:02:29.060729 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10077) auth_unpin by 0x3ce9758 on [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178766 ap=1+0 inode=0x3f48b838 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600] now 1+0
2015-03-31 11:02:29.060736 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178766 ap=1+0 inode=0x3f48b838 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600]
2015-03-31 11:02:29.060742 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.060758 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178766 ap=1+0 inode=0x3f48b838 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9600]
2015-03-31 11:02:29.060765 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295339 pv3295343 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 92=91+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060779 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295339 pv3295343 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 92=91+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060797 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295339 pv3295343 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 92=91+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060819 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408104 cr=0x9ae3c00)
2015-03-31 11:02:29.060827 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde85a00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.060845 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde85a00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.060858 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10077) auth_unpin by 0xde85a00 on [dentry #1/test_small/small5/blarg10077 [2,head] auth (dn sync l=1) (dversion lock) v=178766 inode=0x3f48b838 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce9600] now 0+0
2015-03-31 11:02:29.060865 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xde85a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295340 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382394=382387+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:29.060877 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xde85a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178767 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 91=91+0) hs=91+1513,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:29.060885 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde85a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295339 pv3295343 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 92=91+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.060914 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.060916 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.060922 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.060923 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) mark_dirty [inode 1000006b2ea [2,head] /test_small/small5/blarg10078 auth v178767 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f37e710]
2015-03-31 11:02:29.060935 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10078)  mark_dirty [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178768 v=177750 ap=2+0 inode=0x3f37e710 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0]
2015-03-31 11:02:29.060943 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178768 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 91=91+0) hs=92+1512,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178768
2015-03-31 11:02:29.060952 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) mark_dirty_parent
2015-03-31 11:02:29.060954 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295339 pv3295343 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 91=91+0) n(v1 rc2015-03-31 11:03:06.000000 92=91+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.060967 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295339 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.060972 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295341 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382394=382387+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295341
2015-03-31 11:02:29.060983 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178769 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 92=92+0) hs=92+1512,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178769
2015-03-31 11:02:29.060991 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295342 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382395=382388+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295342
2015-03-31 11:02:29.061001 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ea [2,head] /test_small/small5/blarg10078 auth v178768 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f37e710]
2015-03-31 11:02:29.061012 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.061015 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27568 client_caps(grant ino 1000006b2ea 1851551 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.061035 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178768 ap=2+0 inode=0x3f37e710 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0]
2015-03-31 11:02:29.061045 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408114 create #1000006026a/blarg10078 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.061056 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ea
2015-03-31 11:02:29.061060 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178768 ap=2+0 inode=0x3f37e710 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0]
2015-03-31 11:02:29.061068 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178768 ap=2+0 inode=0x3f37e710 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0]
2015-03-31 11:02:29.061075 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178768 ap=2+0 inode=0x3f37e710 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0]
2015-03-31 11:02:29.061081 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10078) auth_unpin by 0x3ce9938 on [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178768 ap=1+0 inode=0x3f37e710 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0] now 1+0
2015-03-31 11:02:29.061088 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178768 ap=1+0 inode=0x3f37e710 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0]
2015-03-31 11:02:29.061095 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061110 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178768 ap=1+0 inode=0x3f37e710 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce97e0]
2015-03-31 11:02:29.061116 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295341 pv3295343 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 93=92+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061130 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295341 pv3295343 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 93=92+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061143 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295341 pv3295343 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 93=92+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061165 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408114 cr=0x25e3c380)
2015-03-31 11:02:29.061173 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde86e00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.061191 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86e00 on [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.061204 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10078) auth_unpin by 0xde86e00 on [dentry #1/test_small/small5/blarg10078 [2,head] auth (dn sync l=1) (dversion lock) v=178768 inode=0x3f37e710 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce97e0] now 0+0
2015-03-31 11:02:29.061211 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xde86e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295342 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382395=382388+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:29.061222 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xde86e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178769 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 92=92+0) hs=92+1512,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:29.061231 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295341 pv3295343 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 93=92+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.061260 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.061262 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.061268 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.061269 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) mark_dirty [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178769 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.061281 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10079)  mark_dirty [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178770 v=177752 ap=2+0 inode=0x3f3bb840 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0]
2015-03-31 11:02:29.061289 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178770 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 92=92+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178770
2015-03-31 11:02:29.061298 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) mark_dirty_parent
2015-03-31 11:02:29.061300 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295341 pv3295343 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 92=92+0) n(v1 rc2015-03-31 11:03:06.000000 93=92+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061313 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295343 v=3295341 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.061318 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295343 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382395=382388+7)/n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382386=382379+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295343
2015-03-31 11:02:29.061329 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120424 pv120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:05.000000 b422190090565 382387=382379+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061341 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120426 v=120424 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:29.061345 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120427 v=120426 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:05.000000 b422190196760 382403=382394+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120426
2015-03-31 11:02:29.061357 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178771 v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178771
2015-03-31 11:02:29.061365 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295344 v=3295344 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295344
2015-03-31 11:02:29.061374 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120427 v=120427 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:06.000000 b422190196760 382413=382404+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120427
2015-03-31 11:02:29.061384 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.061395 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.061397 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27569 client_caps(grant ino 1000006b2eb 1851552 seq 3 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.061417 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178770 ap=2+0 inode=0x3f3bb840 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0]
2015-03-31 11:02:29.061427 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408124 create #1000006026a/blarg10079 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.061438 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2eb
2015-03-31 11:02:29.061441 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178770 ap=2+0 inode=0x3f3bb840 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0]
2015-03-31 11:02:29.061450 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178770 ap=2+0 inode=0x3f3bb840 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0]
2015-03-31 11:02:29.061456 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178770 ap=2+0 inode=0x3f3bb840 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0]
2015-03-31 11:02:29.061463 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10079) auth_unpin by 0x3ce9b18 on [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178770 ap=1+0 inode=0x3f3bb840 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0] now 1+0
2015-03-31 11:02:29.061469 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178770 ap=1+0 inode=0x3f3bb840 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0]
2015-03-31 11:02:29.061476 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.061496 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.061514 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061528 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061541 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061560 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178770 ap=1+0 inode=0x3f3bb840 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce99c0]
2015-03-31 11:02:29.061567 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061584 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061597 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061609 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:29.061612 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.061624 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.061636 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:29.061638 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408127 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.061642 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408127 cr=0xaeedc80) #1000006026a
2015-03-31 11:02:29.061645 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.061646 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.061647 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061660 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408127 cr=0xaeedc80)
2015-03-31 11:02:29.061665 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.061682 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061694 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061706 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.061721 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061740 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061750 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.061767 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.061778 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061794 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061806 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061818 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061829 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061841 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061852 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061864 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061880 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31517} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.061900 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40408127 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.061905 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408127 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.061918 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.061922 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.061927 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31518
2015-03-31 11:02:29.061930 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31518 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.061946 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408127 cr=0xaeedc80)
2015-03-31 11:02:29.061963 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.061982 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.061999 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.062011 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.062023 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062036 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062056 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062068 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062080 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062092 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062105 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062116 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062126 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062137 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062152 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde86400 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.062168 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86400 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.062180 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.062209 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062223 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062234 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062245 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062269 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408124 cr=0x9d48000)
2015-03-31 11:02:29.062277 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde86900 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.062294 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde86900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.062306 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10079) auth_unpin by 0xde86900 on [dentry #1/test_small/small5/blarg10079 [2,head] auth (dn sync l=1) (dversion lock) v=178770 inode=0x3f3bb840 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce99c0] now 0+0
2015-03-31 11:02:29.062315 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0xde86900 on [dir 1 / [2,head] auth v=120427 cv=119911/119911 dir_auth=0 ap=0+0+1 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:06.000000 b422190196760 382413=382404+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 1
2015-03-31 11:02:29.062334 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xde86900 on [dir 10000000000 /test_small/ [2,head] auth v=3295344 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:29.062348 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xde86900 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178771 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:29.062357 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde86900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.062408 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408128 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.062439 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408128 cr=0xaeea080)
2015-03-31 11:02:29.062442 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408128 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.062446 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408128 cr=0xaeea080) #1000006b2eb
2015-03-31 11:02:29.062448 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2eb snap head
2015-03-31 11:02:29.062449 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.062451 7fbe462be700 10 mds.0.server ref is [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.062468 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408128 cr=0xaeea080)
2015-03-31 11:02:29.062471 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.062489 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.062501 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.062511 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.062522 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.062537 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.062551 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.062561 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.062573 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.062582 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.062593 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.062602 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_pin by 0x24afad00 on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840] now 1+0
2015-03-31 11:02:29.062612 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.062628 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.062642 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.062653 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.062673 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062683 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062705 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.062714 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.062728 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408128 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.062732 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408128 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.062743 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.062746 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.062751 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.062753 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.062767 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408128 cr=0xaeea080)
2015-03-31 11:02:29.062792 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.062808 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.062823 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.062833 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.062843 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062853 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.062873 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.062883 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.062892 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.062907 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.062917 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:29.062927 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_unpin by 0x24afad00 on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840] now 0+0
2015-03-31 11:02:29.062977 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408129 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.062996 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408129 cr=0x25f4fa80)
2015-03-31 11:02:29.062998 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408129 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.063001 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408129 cr=0x25f4fa80) #1000006026a
2015-03-31 11:02:29.063003 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.063004 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.063006 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.063019 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408129 cr=0x25f4fa80)
2015-03-31 11:02:29.063021 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.063036 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.063046 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.063055 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.063069 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.063084 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.063093 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.063114 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.063123 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.063133 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.063157 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.063170 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.063179 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.063189 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063199 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063208 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063218 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31518} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063233 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408129 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.063237 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408129 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.063258 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.063260 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.063263 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31519
2015-03-31 11:02:29.063265 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31519 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.063276 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408129 cr=0x25f4fa80)
2015-03-31 11:02:29.063294 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.063309 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.063323 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.063333 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.063343 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063353 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063362 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063382 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.063391 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.063405 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.063416 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.103070 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408130 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.103089 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408130 cr=0x37d4b00)
2015-03-31 11:02:29.103094 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408130 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.103098 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408130 cr=0x37d4b00) #1000006026a
2015-03-31 11:02:29.103100 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.103101 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.103102 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.103119 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408130 cr=0x37d4b00)
2015-03-31 11:02:29.103122 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.103138 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.103149 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.103159 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.103173 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.103188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.103198 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.103209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.103218 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.103229 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.103244 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.103258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.103269 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.103279 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103300 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103310 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31519} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103327 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408130 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.103331 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408130 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.103342 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.103356 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.103361 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31520
2015-03-31 11:02:29.103375 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31520 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.103387 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408130 cr=0x37d4b00)
2015-03-31 11:02:29.103406 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.103422 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.103436 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.103446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.103456 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103466 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103475 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103495 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103505 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.103519 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.103530 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.103567 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e68 follows 0 op update
2015-03-31 11:02:29.103570 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103578 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.103580 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.103595 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.103596 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103602 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103609 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.103610 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103621 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103640 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103647 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.103648 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103657 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103659 7fbe406af700  5 mds.0.log _submit_thread 5419707160~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.103664 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103670 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103675 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103681 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103688 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103694 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e68 [2,head] /test_small/small1/blarg10079 auth v136976 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a2c60]
2015-03-31 11:02:29.103704 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.103717 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408131 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.103745 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408131 cr=0x6fc8000)
2015-03-31 11:02:29.103748 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408131 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.103751 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408131 cr=0x6fc8000) #1000006b2eb
2015-03-31 11:02:29.103753 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2eb snap head
2015-03-31 11:02:29.103754 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.103755 7fbe462be700 10 mds.0.server ref is [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.103777 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408131 cr=0x6fc8000)
2015-03-31 11:02:29.103780 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.103800 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.103810 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.103819 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.103828 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.103842 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.103856 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.103865 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.103875 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.103884 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.103895 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.103903 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_pin by 0x24afad00 on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840] now 1+0
2015-03-31 11:02:29.103912 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.103926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.103951 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.103961 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.103970 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103979 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.103988 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.103996 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.104009 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408131 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.104013 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408131 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.104022 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.104024 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.104027 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.104031 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.104043 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408131 cr=0x6fc8000)
2015-03-31 11:02:29.104061 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.104077 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.104091 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.104101 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.104110 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.104119 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.104129 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.104149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.104159 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.104173 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.104184 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:29.104194 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_unpin by 0x24afad00 on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840] now 0+0
2015-03-31 11:02:29.104989 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408132 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105009 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408132 cr=0xb264600)
2015-03-31 11:02:29.105013 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408132 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105016 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408132 cr=0xb264600) #1000006026a
2015-03-31 11:02:29.105018 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.105019 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.105020 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.105037 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408132 cr=0xb264600)
2015-03-31 11:02:29.105040 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.105056 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.105066 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.105077 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.105090 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.105104 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.105114 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.105124 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.105134 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.105144 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105158 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105172 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105182 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105192 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105212 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105222 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105242 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31520} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105257 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408132 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105261 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408132 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105271 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.105275 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.105278 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31521
2015-03-31 11:02:29.105280 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31521 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.105293 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408132 cr=0xb264600)
2015-03-31 11:02:29.105311 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105327 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105340 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105350 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105360 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105369 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105378 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105398 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105408 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.105422 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.105433 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.105567 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408133 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105585 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408133 cr=0x51dfd00)
2015-03-31 11:02:29.105587 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408133 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105590 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408133 cr=0x51dfd00) #1000006026a
2015-03-31 11:02:29.105592 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.105593 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.105595 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.105608 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408133 cr=0x51dfd00)
2015-03-31 11:02:29.105611 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.105625 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.105636 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.105645 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.105659 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.105684 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.105693 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.105704 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.105713 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.105723 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105737 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105751 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105761 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105772 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105785 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105796 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105806 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31521} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105821 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408133 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105824 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408133 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.105835 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.105838 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.105842 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31522
2015-03-31 11:02:29.105844 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31522 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.105878 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408133 cr=0x51dfd00)
2015-03-31 11:02:29.105886 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105911 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.105925 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105935 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.105944 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105954 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105982 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.105992 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.106006 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.106016 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.106060 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408134 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.106077 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408134 cr=0x26d3b200)
2015-03-31 11:02:29.106080 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408134 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.106083 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408134 cr=0x26d3b200) #1000006b2eb
2015-03-31 11:02:29.106084 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2eb snap head
2015-03-31 11:02:29.106086 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.106087 7fbe462be700 10 mds.0.server ref is [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.106100 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408134 cr=0x26d3b200)
2015-03-31 11:02:29.106102 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.106118 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.106128 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.106137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.106147 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.106161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.106176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.106186 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.106197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.106206 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.106227 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840]
2015-03-31 11:02:29.106235 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_pin by 0x24afad00 on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840] now 1+0
2015-03-31 11:02:29.106245 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.106270 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.106283 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.106293 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.106303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.106312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.106322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.106331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.106356 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408134 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.106359 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408134 getattr Xs #1000006b2eb 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.106367 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.106369 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.106372 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:29.106375 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.106386 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408134 cr=0x26d3b200)
2015-03-31 11:02:29.106404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.106419 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.106433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.106443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.106453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.106462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.106471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.106491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f3bb840]
2015-03-31 11:02:29.106501 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.106515 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.106525 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:29.106535 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) auth_unpin by 0x24afad00 on [inode 1000006b2eb [2,head] /test_small/small5/blarg10079 auth v178770 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3bb840] now 0+0
2015-03-31 11:02:29.146054 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408135 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146075 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408135 cr=0x26d3b700)
2015-03-31 11:02:29.146079 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408135 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146083 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408135 cr=0x26d3b700) #100000003f4
2015-03-31 11:02:29.146085 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f4 snap head
2015-03-31 11:02:29.146087 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.146088 7fbe462be700 10 mds.0.server ref is [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.146102 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408135 cr=0x26d3b700)
2015-03-31 11:02:29.146106 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.146123 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.146135 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.146144 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.146151 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.146166 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.146181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.146191 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.146202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.146211 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x24afad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.146220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.146227 7fbe462be700 10 mds.0.cache.ino(100000003f4) auth_pin by 0x24afad00 on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0] now 1+0
2015-03-31 11:02:29.146234 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146249 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146264 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146275 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146286 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.146317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.146337 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146349 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146355 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146367 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408135 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146371 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408135 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146380 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.146384 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.146387 7fbe462be700 10 mds.0.cache.ino(100000003f4) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.146389 7fbe462be700 10 mds.0.cache.ino(100000003f4) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.146402 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408135 cr=0x26d3b700)
2015-03-31 11:02:29.146421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146460 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146470 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.146479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.146488 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146506 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146513 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146517 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.146523 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.146537 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.146548 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x24afad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.146556 7fbe462be700 10 mds.0.cache.ino(100000003f4) auth_unpin by 0x24afad00 on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99bdc0] now 0+0
2015-03-31 11:02:29.146590 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408136 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146607 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408136 cr=0xa254880)
2015-03-31 11:02:29.146609 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408136 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146612 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408136 cr=0xa254880) #1000006026a
2015-03-31 11:02:29.146613 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.146615 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.146615 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.146628 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408136 cr=0xa254880)
2015-03-31 11:02:29.146630 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.146644 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.146654 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.146663 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.146677 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.146691 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.146700 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.146710 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.146719 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.146729 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146777 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146802 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146812 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.146821 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.146831 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.146841 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31522} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.146867 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408136 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146871 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408136 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.146881 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.146885 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.146888 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31523
2015-03-31 11:02:29.146890 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31523 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.146903 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408136 cr=0xa254880)
2015-03-31 11:02:29.146911 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146926 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.146940 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146950 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.146960 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.146981 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.146992 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.147001 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.147011 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.147026 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.147037 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.147072 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408137 lookup #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.147089 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408137 cr=0xa252080)
2015-03-31 11:02:29.147091 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408137 lookup #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.147094 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408137 cr=0xa252080) #1000006026a/blarg1008
2015-03-31 11:02:29.147095 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.147098 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1008 [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock) v=177754 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.147106 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.147107 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408137 lookup #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.147116 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.147136 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408137 cr=0xa252080)
2015-03-31 11:02:29.147564 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408138 lookup #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.147583 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408138 cr=0x26904d80)
2015-03-31 11:02:29.147586 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408138 lookup #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.147589 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408138 cr=0x26904d80) #1000006026a/blarg1008
2015-03-31 11:02:29.147591 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.147594 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1008 [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock) v=177754 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.147602 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.147603 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408138 lookup #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.147613 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.147625 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408138 cr=0x26904d80)
2015-03-31 11:02:29.148097 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408139 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.148116 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408139 cr=0x43d0c80)
2015-03-31 11:02:29.148118 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408139 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.148121 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408139 cr=0x43d0c80) #100000003f4
2015-03-31 11:02:29.148123 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f4 snap head
2015-03-31 11:02:29.148125 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.148126 7fbe462be700 10 mds.0.server ref is [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.148138 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408139 cr=0x43d0c80)
2015-03-31 11:02:29.148141 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.148158 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.148169 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.148178 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.148185 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.148199 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.148214 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.148224 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.148234 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.148243 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x24afad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.148252 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.148259 7fbe462be700 10 mds.0.cache.ino(100000003f4) auth_pin by 0x24afad00 on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0] now 1+0
2015-03-31 11:02:29.148266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.148280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.148295 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.148305 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.148325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.148345 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.148354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148366 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148372 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148385 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408139 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.148389 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408139 getattr Xs #100000003f4 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.148399 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.148402 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.148406 7fbe462be700 10 mds.0.cache.ino(100000003f4) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.148408 7fbe462be700 10 mds.0.cache.ino(100000003f4) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.148421 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408139 cr=0x43d0c80)
2015-03-31 11:02:29.148440 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.148455 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.148469 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.148480 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.148489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.148498 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.148507 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148525 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148532 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148538 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99bdc0]
2015-03-31 11:02:29.148544 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.148559 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.148569 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x24afad00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.148578 7fbe462be700 10 mds.0.cache.ino(100000003f4) auth_unpin by 0x24afad00 on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99bdc0] now 0+0
2015-03-31 11:02:29.148703 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408140 readdir #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.148720 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408140 cr=0x26458280)
2015-03-31 11:02:29.148722 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408140 readdir #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.148725 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408140 cr=0x26458280) #1000006026a
2015-03-31 11:02:29.148727 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.148728 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.148729 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.148743 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408140 cr=0x26458280)
2015-03-31 11:02:29.148746 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.148761 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.148771 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.148781 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.148810 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.148823 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.148833 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.148843 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.148852 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.148863 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.148877 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.148891 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.148901 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.148911 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.148921 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.148931 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.148941 7fbe462be700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.148951 7fbe462be700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.148970 7fbe462be700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (idft sync r=1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31523} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.148996 7fbe462be700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:29.148998 7fbe462be700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178771 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.149006 7fbe462be700 10 mds.0.server snapid head
2015-03-31 11:02:29.149010 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.149013 7fbe462be700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149017 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.149019 7fbe462be700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149022 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.149023 7fbe462be700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149026 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.149028 7fbe462be700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149031 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.149033 7fbe462be700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149035 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.149037 7fbe462be700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149040 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.149041 7fbe462be700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149044 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.149046 7fbe462be700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149049 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.149050 7fbe462be700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149053 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.149054 7fbe462be700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149057 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.149059 7fbe462be700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149061 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.149063 7fbe462be700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149065 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.149067 7fbe462be700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149069 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.149071 7fbe462be700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149074 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.149075 7fbe462be700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149078 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.149080 7fbe462be700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149082 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.149084 7fbe462be700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149086 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.149088 7fbe462be700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149090 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.149092 7fbe462be700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149095 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.149097 7fbe462be700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149099 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.149101 7fbe462be700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149103 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.149105 7fbe462be700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149108 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.149109 7fbe462be700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149112 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.149114 7fbe462be700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149116 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.149118 7fbe462be700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149120 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.149122 7fbe462be700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149124 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.149126 7fbe462be700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149128 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.149130 7fbe462be700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149132 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.149134 7fbe462be700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149136 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.149138 7fbe462be700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149140 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.149142 7fbe462be700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149144 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.149146 7fbe462be700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149148 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.149150 7fbe462be700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149153 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.149154 7fbe462be700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149156 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.149158 7fbe462be700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149161 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.149162 7fbe462be700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149165 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.149166 7fbe462be700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149169 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.149170 7fbe462be700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149173 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.149175 7fbe462be700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149178 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.149179 7fbe462be700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149182 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.149183 7fbe462be700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149186 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.149187 7fbe462be700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149190 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.149191 7fbe462be700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149194 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.149195 7fbe462be700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149198 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.149200 7fbe462be700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149203 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.149205 7fbe462be700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149207 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.149209 7fbe462be700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149211 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.149213 7fbe462be700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149215 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.149217 7fbe462be700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149219 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.149221 7fbe462be700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149223 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.149225 7fbe462be700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149227 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.149229 7fbe462be700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149232 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.149233 7fbe462be700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149236 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.149237 7fbe462be700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149240 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.149242 7fbe462be700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149244 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.149246 7fbe462be700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149249 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.149250 7fbe462be700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149253 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.149254 7fbe462be700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149257 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.149259 7fbe462be700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149261 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.149263 7fbe462be700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149265 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.149267 7fbe462be700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149269 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.149271 7fbe462be700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149273 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.149275 7fbe462be700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149277 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.149279 7fbe462be700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149281 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.149283 7fbe462be700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149286 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.149287 7fbe462be700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149290 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.149291 7fbe462be700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149294 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.149295 7fbe462be700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149298 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.149299 7fbe462be700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149302 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.149304 7fbe462be700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149306 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.149308 7fbe462be700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149310 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.149312 7fbe462be700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149314 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.149316 7fbe462be700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149318 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.149320 7fbe462be700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149323 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.149324 7fbe462be700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149327 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.149328 7fbe462be700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149331 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.149333 7fbe462be700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149335 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.149336 7fbe462be700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149339 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.149341 7fbe462be700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149344 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.149345 7fbe462be700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149347 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.149349 7fbe462be700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149351 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.149353 7fbe462be700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149355 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.149357 7fbe462be700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149359 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.149361 7fbe462be700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149363 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.149365 7fbe462be700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149367 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.149368 7fbe462be700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149371 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.149372 7fbe462be700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149375 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.149376 7fbe462be700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149379 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.149380 7fbe462be700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149382 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.149384 7fbe462be700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149386 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.149388 7fbe462be700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149390 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.149392 7fbe462be700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149394 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.149396 7fbe462be700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149439 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40408140 readdir #1000006026a 2015-03-31 11:03:06.000000) v2 readdir num=93 bytes=25387 end=1 complete=1
2015-03-31 11:02:29.149443 7fbe462be700 10 mds.0.server reply to client_request(client.708310:40408140 readdir #1000006026a 2015-03-31 11:03:06.000000) v2 readdir num=93 end=1 complete=1
2015-03-31 11:02:29.149446 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408140 readdir #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.149456 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.149458 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.149461 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31524
2015-03-31 11:02:29.149463 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31524 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.149474 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408140 cr=0x26458280)
2015-03-31 11:02:29.149491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.149507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.149520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.149529 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.149538 7fbe462be700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.149547 7fbe462be700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.149557 7fbe462be700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.149565 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.149575 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.149593 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.149603 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.149617 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.149627 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.149798 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408141 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.149817 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408141 cr=0x4a0a800)
2015-03-31 11:02:29.149819 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408141 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.149822 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408141 cr=0x4a0a800) #1000006026a
2015-03-31 11:02:29.149824 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.149825 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.149826 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.149839 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408141 cr=0x4a0a800)
2015-03-31 11:02:29.149842 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.149856 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.149876 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.149886 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.149899 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.149913 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.149922 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.149933 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.149942 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.149952 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.149966 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.149980 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.149990 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.149999 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150009 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150019 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150029 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31524} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150044 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408141 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.150048 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408141 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.150070 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.150073 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.150076 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31525
2015-03-31 11:02:29.150078 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31525 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.150090 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408141 cr=0x4a0a800)
2015-03-31 11:02:29.150108 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.150123 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.150137 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.150147 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.150157 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31525} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150177 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31525} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150186 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31525} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150196 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31525} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.150205 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.150229 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.150240 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31525} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.190060 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408142 create #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.190080 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408142 cr=0x60a8000)
2015-03-31 11:02:29.190083 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190101 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:29.190102 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190113 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.190115 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190126 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190137 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190146 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190156 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.190157 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408142 create #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.190160 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1008
2015-03-31 11:02:29.190161 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408142 cr=0x60a8000) #1000006026a/blarg1008
2015-03-31 11:02:29.190164 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1008
2015-03-31 11:02:29.190165 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.190166 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.190167 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178771 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.190175 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178771 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.190182 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1008 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178771 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.190191 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408142 cr=0x60a8000)
2015-03-31 11:02:29.190196 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.190212 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.190223 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock) v=177754 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190230 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.190265 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.190301 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.190309 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.190319 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock) v=177754 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190323 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1008) auth_pin by 0x24afad00 on [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock) v=177754 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0] now 1+0
2015-03-31 11:02:29.190328 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.190337 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.190347 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock) v=177754 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190351 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177754 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190357 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177754 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190361 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177754 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190366 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177754 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190372 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1008) auth_pin by 0x3ce9cf8 on [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177754 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0] now 2+0
2015-03-31 11:02:29.190377 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x24afad00) [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dn xlock x=1 by 0x24afad00) (dversion lock w=1 last_client=708310) v=177754 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190383 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.190397 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.190410 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.190423 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.190436 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.190445 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.190455 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.190464 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.190473 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190482 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190491 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190500 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190509 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190518 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190528 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190537 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190546 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190555 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190564 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190582 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ec ([1000006b2ed~336], 822 left)
2015-03-31 11:02:29.190585 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.190587 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ec [2,head] #1000006b2ec auth v1 s=0 n() (iversion lock) 0x3f4a0418]
2015-03-31 11:02:29.190591 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178772
2015-03-31 11:02:29.190592 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1008)  pre_dirty [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dn xlock x=1 by 0x24afad00) (dversion lock w=1 last_client=708310) pv=178772 v=177754 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190599 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4a0418]
2015-03-31 11:02:29.190606 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x24afad00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:29.190614 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x49b9080
2015-03-31 11:02:29.190617 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178773
2015-03-31 11:02:29.190618 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178773 v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.190624 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178773 v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.190630 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4a0418]
2015-03-31 11:02:29.190636 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.190637 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190650 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295345
2015-03-31 11:02:29.190651 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295345 v=3295343 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.190654 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295345 (current v 3295343)
2015-03-31 11:02:29.190656 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178773 v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.190662 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.190664 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x24afad00 on [dir 10000000000 /test_small/ [2,head] auth v=3295344 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:29.190672 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9322f70
2015-03-31 11:02:29.190674 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295346
2015-03-31 11:02:29.190675 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.190686 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.190696 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190707 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.190708 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.148695 < 1, stopping
2015-03-31 11:02:29.190712 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.190722 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.190725 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295345 v=3295343 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.190730 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31525} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.190743 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4a0418]
2015-03-31 11:02:29.190750 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.190753 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190760 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.190762 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190769 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190776 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190788 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190795 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190801 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190808 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190814 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190820 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190826 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190832 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190838 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190844 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190850 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190857 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4a0418]
2015-03-31 11:02:29.190866 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.190867 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.190869 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4a0418 tracedn 0x3ce9ba0
2015-03-31 11:02:29.190871 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x24afad00) [dentry #1/test_small/small5/blarg1008 [2,head] auth NULL (dn xlock x=1 by 0x24afad00) (dversion lock w=1 last_client=708310) pv=178772 v=177754 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9ba0]
2015-03-31 11:02:29.190877 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408142 create #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.190885 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.190888 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31526
2015-03-31 11:02:29.190890 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31526 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.190896 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.190899 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.190901 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) including xattrs version 0
2015-03-31 11:02:29.190938 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.190966 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.190981 7fbe406af700  5 mds.0.log _submit_thread 5419708019~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.190981 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.190994 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.191007 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191030 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191040 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191050 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191061 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191073 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191084 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191094 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191105 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191115 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191472 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408143 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.191493 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408143 cr=0x60abe80)
2015-03-31 11:02:29.191495 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408143 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.191498 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408143 cr=0x60abe80) #1000006b2ec
2015-03-31 11:02:29.191500 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ec snap head
2015-03-31 11:02:29.191501 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.191502 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4a0418]
2015-03-31 11:02:29.191518 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408143 cr=0x60abe80)
2015-03-31 11:02:29.191520 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.191538 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191549 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191561 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4a0418]
2015-03-31 11:02:29.191571 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.191585 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.191599 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191609 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.191620 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191630 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.191641 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4a0418]
2015-03-31 11:02:29.191650 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_pin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4a0418] now 1+0
2015-03-31 11:02:29.191660 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.191676 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.191700 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191722 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191731 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191741 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191750 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.191759 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.191774 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408143 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.191778 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408143 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.191793 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.191797 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.191800 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.191803 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.191816 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408143 cr=0x60abe80)
2015-03-31 11:02:29.191824 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.191851 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.191866 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191876 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.191886 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191897 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.191907 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.191928 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.191938 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.191952 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.191963 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.191973 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_unpin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418] now 0+0
2015-03-31 11:02:29.192340 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408144 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.192361 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408144 cr=0x9cc6b80)
2015-03-31 11:02:29.192363 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408144 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.192366 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408144 cr=0x9cc6b80) #1000006b2ec
2015-03-31 11:02:29.192368 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ec snap head
2015-03-31 11:02:29.192370 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.192371 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.192387 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408144 cr=0x9cc6b80)
2015-03-31 11:02:29.192389 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.192407 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.192418 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.192429 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.192439 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.192454 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.192469 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.192479 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.192490 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.192500 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.192510 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.192520 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_pin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418] now 1+0
2015-03-31 11:02:29.192531 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.192556 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.192580 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.192590 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.192599 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.192609 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.192618 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.192627 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.192642 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408144 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.192645 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408144 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.192656 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.192659 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.192663 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.192666 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.192678 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408144 cr=0x9cc6b80)
2015-03-31 11:02:29.192697 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.192713 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.192727 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.192737 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.192748 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.192758 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.192779 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.192794 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.192804 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.192819 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.192829 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.192840 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_unpin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418] now 0+0
2015-03-31 11:02:29.197731 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f4 follows 0 op update
2015-03-31 11:02:29.197735 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197745 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.197747 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.197764 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.197765 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197772 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197779 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.197780 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197796 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197816 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197823 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.197825 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197834 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197835 7fbe406af700  5 mds.0.log _submit_thread 5419709658~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.197841 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197847 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197852 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197859 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197864 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197870 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.197880 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.237049 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408145 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.237070 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408145 cr=0x9cc2580)
2015-03-31 11:02:29.237073 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408145 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.237076 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408145 cr=0x9cc2580) #1000006b2ec
2015-03-31 11:02:29.237078 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ec snap head
2015-03-31 11:02:29.237080 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.237081 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.237097 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408145 cr=0x9cc2580)
2015-03-31 11:02:29.237100 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.237118 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.237130 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.237143 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.237153 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.237168 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.237183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.237193 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.237204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.237215 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.237236 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.237246 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_pin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418] now 1+0
2015-03-31 11:02:29.237256 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.237280 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.237305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.237316 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.237325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.237335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.237345 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.237354 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.237369 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408145 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.237372 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408145 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.237381 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.237384 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.237388 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.237390 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.237403 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408145 cr=0x9cc2580)
2015-03-31 11:02:29.237422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.237437 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.237452 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.237462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.237471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.237482 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.237492 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.237513 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.237522 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.237537 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.237547 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.237558 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_unpin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418] now 0+0
2015-03-31 11:02:29.238844 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f4 follows 0 op update
2015-03-31 11:02:29.238847 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238858 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.238860 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.238878 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.238879 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238886 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238894 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.238897 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238902 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238910 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238916 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.238918 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238924 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238930 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238936 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238941 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.238942 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.238943 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003f4 [2,head] /test_small/small1/blarg1008 auth v59078 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99bdc0]
2015-03-31 11:02:29.238951 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.278057 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408146 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.278078 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408146 cr=0x9cc6e00)
2015-03-31 11:02:29.278082 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408146 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.278085 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408146 cr=0x9cc6e00) #1000006b2ec
2015-03-31 11:02:29.278087 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ec snap head
2015-03-31 11:02:29.278089 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.278090 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.278106 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408146 cr=0x9cc6e00)
2015-03-31 11:02:29.278110 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278128 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278140 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.278152 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.278162 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278177 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.278192 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278202 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.278213 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.278224 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.278244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.278254 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_pin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418] now 1+0
2015-03-31 11:02:29.278264 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278314 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278333 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.278343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.278352 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.278362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.278377 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408146 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.278380 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408146 getattr Xs #1000006b2ec 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.278390 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.278393 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.278396 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.278399 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.278411 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408146 cr=0x9cc6e00)
2015-03-31 11:02:29.278430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278446 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278460 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278470 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.278490 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.278500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.278521 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4a0418]
2015-03-31 11:02:29.278530 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.278545 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.278555 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.278566 7fbe462be700 10 mds.0.cache.ino(1000006b2ec) auth_unpin by 0xde87800 on [inode 1000006b2ec [2,head] {#1000006b2ec /test_small/small5/blarg1008} auth v178772 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4a0418] now 0+0
2015-03-31 11:02:29.278860 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408147 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.278877 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408147 cr=0x9cc6180)
2015-03-31 11:02:29.278880 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408147 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.278883 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408147 cr=0x9cc6180) #10000004e6b
2015-03-31 11:02:29.278885 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6b snap head
2015-03-31 11:02:29.278887 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.278888 7fbe462be700 10 mds.0.server ref is [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.278897 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408147 cr=0x9cc6180)
2015-03-31 11:02:29.278900 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278915 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278925 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.278933 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.278940 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.278953 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.278967 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.278976 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.278987 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.278995 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde87800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.279004 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.279010 7fbe462be700 10 mds.0.cache.ino(10000004e6b) auth_pin by 0xde87800 on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0] now 1+0
2015-03-31 11:02:29.279018 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.279032 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.279045 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.279055 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.279065 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.279075 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.279084 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279091 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279097 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279103 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279127 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408147 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.279142 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408147 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.279150 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.279154 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.279157 7fbe462be700 10 mds.0.cache.ino(10000004e6b) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.279161 7fbe462be700 10 mds.0.cache.ino(10000004e6b) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.279173 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408147 cr=0x9cc6180)
2015-03-31 11:02:29.279191 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.279206 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.279220 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.279230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.279239 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.279248 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.279257 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279275 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279282 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.279292 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.279306 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.279316 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde87800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.279325 7fbe462be700 10 mds.0.cache.ino(10000004e6b) auth_unpin by 0xde87800 on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a19f0] now 0+0
2015-03-31 11:02:29.279697 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408148 lookup #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.279717 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408148 cr=0x9cc1180)
2015-03-31 11:02:29.279719 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408148 lookup #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.279722 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408148 cr=0x9cc1180) #1000006026a/blarg10080
2015-03-31 11:02:29.279724 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.279727 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10080 [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock) v=177756 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.279735 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.279737 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408148 lookup #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.279748 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.279762 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408148 cr=0x9cc1180)
2015-03-31 11:02:29.280233 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408149 lookup #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.280251 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408149 cr=0x9cc3c00)
2015-03-31 11:02:29.280253 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408149 lookup #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.280256 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408149 cr=0x9cc3c00) #1000006026a/blarg10080
2015-03-31 11:02:29.280258 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.280260 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10080 [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock) v=177756 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.280267 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.280269 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408149 lookup #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.280280 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.280292 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408149 cr=0x9cc3c00)
2015-03-31 11:02:29.280754 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408150 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.280775 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408150 cr=0x2bd64d80)
2015-03-31 11:02:29.280777 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408150 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.280780 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408150 cr=0x2bd64d80) #10000004e6b
2015-03-31 11:02:29.280786 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6b snap head
2015-03-31 11:02:29.280788 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.280789 7fbe462be700 10 mds.0.server ref is [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.280800 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408150 cr=0x2bd64d80)
2015-03-31 11:02:29.280803 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.280821 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.280832 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.280842 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.280849 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.280862 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.280876 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.280886 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.280897 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.280906 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0xde87800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.280915 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.280922 7fbe462be700 10 mds.0.cache.ino(10000004e6b) auth_pin by 0xde87800 on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0] now 1+0
2015-03-31 11:02:29.280929 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.280944 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.280958 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.280979 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.280989 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.281009 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.281017 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281024 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281029 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281035 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281048 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408150 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.281052 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408150 getattr Xs #10000004e6b 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.281063 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.281065 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.281070 7fbe462be700 10 mds.0.cache.ino(10000004e6b) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.281072 7fbe462be700 10 mds.0.cache.ino(10000004e6b) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.281085 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408150 cr=0x2bd64d80)
2015-03-31 11:02:29.281103 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281119 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281133 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281154 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.281163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.281172 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281189 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281196 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281202 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a19f0]
2015-03-31 11:02:29.281208 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.281222 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.281232 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0xde87800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.281241 7fbe462be700 10 mds.0.cache.ino(10000004e6b) auth_unpin by 0xde87800 on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a19f0] now 0+0
2015-03-31 11:02:29.281594 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408151 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.281615 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408151 cr=0x2bd67d00)
2015-03-31 11:02:29.281617 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408151 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.281620 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408151 cr=0x2bd67d00) #1000006026a
2015-03-31 11:02:29.281622 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.281623 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.281624 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281641 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408151 cr=0x2bd67d00)
2015-03-31 11:02:29.281644 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281660 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281671 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281682 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281696 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.281710 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281719 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.281730 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281739 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.281750 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281764 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281778 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281793 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281812 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281822 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281833 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281854 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31526} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281871 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408151 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.281874 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408151 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.281885 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.281888 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.281892 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31527
2015-03-31 11:02:29.281894 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31527 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.281907 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408151 cr=0x2bd67d00)
2015-03-31 11:02:29.281925 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281941 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.281954 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281964 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.281975 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.281985 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282006 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282016 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282026 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.282040 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.282050 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.282443 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408152 create #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.282464 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408152 cr=0x2bd65280)
2015-03-31 11:02:29.282466 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408152 create #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.282469 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10080
2015-03-31 11:02:29.282471 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408152 cr=0x2bd65280) #1000006026a/blarg10080
2015-03-31 11:02:29.282473 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10080
2015-03-31 11:02:29.282474 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.282476 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.282477 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178773 v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.282487 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178773 v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.282495 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10080 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178773 v=178771 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.282506 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408152 cr=0x2bd65280)
2015-03-31 11:02:29.282511 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.282530 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.282541 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock) v=177756 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282547 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282560 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.282574 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.282588 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.282598 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.282609 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock) v=177756 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282613 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10080) auth_pin by 0xde87800 on [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock) v=177756 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80] now 1+0
2015-03-31 11:02:29.282620 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282631 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.282642 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock) v=177756 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282647 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177756 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282652 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177756 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282667 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177756 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282672 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177756 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282677 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10080) auth_pin by 0x3ce9ed8 on [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177756 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80] now 2+0
2015-03-31 11:02:29.282694 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0xde87800) [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dn xlock x=1 by 0xde87800) (dversion lock w=1 last_client=708310) v=177756 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282699 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.282713 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.282727 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.282740 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.282752 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.282761 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.282771 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.282780 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.282793 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282803 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282813 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282823 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282832 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282840 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282850 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282859 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282868 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282877 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282896 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ed ([1000006b2ee~335], 821 left)
2015-03-31 11:02:29.282899 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.282900 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ed [2,head] #1000006b2ed auth v1 s=0 n() (iversion lock) 0x3f4dde80]
2015-03-31 11:02:29.282904 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178774
2015-03-31 11:02:29.282905 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10080)  pre_dirty [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dn xlock x=1 by 0xde87800) (dversion lock w=1 last_client=708310) pv=178774 v=177756 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.282912 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4dde80]
2015-03-31 11:02:29.282919 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0xde87800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178774 v=178771 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:29.282927 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x47feeb0
2015-03-31 11:02:29.282928 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178775
2015-03-31 11:02:29.282930 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178775 v=178771 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.282936 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178775 v=178771 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.282942 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4dde80]
2015-03-31 11:02:29.282948 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.282951 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295345 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.282964 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295347
2015-03-31 11:02:29.282965 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295347 v=3295343 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.282969 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295347 (current v 3295343)
2015-03-31 11:02:29.282970 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178775 v=178771 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.282978 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.282979 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0xde87800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295347 v=3295344 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:29.282987 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0xa068420
2015-03-31 11:02:29.282988 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295348
2015-03-31 11:02:29.282989 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283000 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283008 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283019 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.283020 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.241009 < 1, stopping
2015-03-31 11:02:29.283024 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283034 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.283038 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295347 v=3295343 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.283043 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31527} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283056 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4dde80]
2015-03-31 11:02:29.283063 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.283065 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283073 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.283076 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283083 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283089 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283096 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283103 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283109 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283116 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283122 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283128 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283135 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283141 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283147 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283154 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283160 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283166 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4dde80]
2015-03-31 11:02:29.283176 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.283177 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.283179 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4dde80 tracedn 0x3ce9d80
2015-03-31 11:02:29.283181 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0xde87800) [dentry #1/test_small/small5/blarg10080 [2,head] auth NULL (dn xlock x=1 by 0xde87800) (dversion lock w=1 last_client=708310) pv=178774 v=177756 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9d80]
2015-03-31 11:02:29.283187 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408152 create #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.283195 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.283198 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31528
2015-03-31 11:02:29.283200 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31528 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.283205 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.283208 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.283211 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) including xattrs version 0
2015-03-31 11:02:29.283247 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283275 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283290 7fbe406af700  5 mds.0.log _submit_thread 5419710516~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.283290 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283303 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283316 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283338 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283349 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283359 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283370 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283381 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283392 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283402 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283413 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283423 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283689 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408153 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.283710 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408153 cr=0x2bd66900)
2015-03-31 11:02:29.283712 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408153 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.283715 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408153 cr=0x2bd66900) #1000006b2ed
2015-03-31 11:02:29.283717 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ed snap head
2015-03-31 11:02:29.283718 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.283719 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4dde80]
2015-03-31 11:02:29.283732 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408153 cr=0x2bd66900)
2015-03-31 11:02:29.283734 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283750 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283760 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283770 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4dde80]
2015-03-31 11:02:29.283780 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283797 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.283811 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283821 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.283832 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283841 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.283852 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4dde80]
2015-03-31 11:02:29.283861 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_pin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4dde80] now 1+0
2015-03-31 11:02:29.283871 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283886 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.283899 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283910 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.283920 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283930 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.283954 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.283975 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.283990 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408153 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.283993 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408153 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.284003 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.284007 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.284010 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.284012 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.284024 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408153 cr=0x2bd66900)
2015-03-31 11:02:29.284043 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284058 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284071 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284082 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284091 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284101 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284122 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.284132 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.284142 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.284157 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.284166 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.284177 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_unpin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80] now 0+0
2015-03-31 11:02:29.284487 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408154 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.284504 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408154 cr=0x2bd62580)
2015-03-31 11:02:29.284506 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408154 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.284509 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408154 cr=0x2bd62580) #1000006b2ed
2015-03-31 11:02:29.284511 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ed snap head
2015-03-31 11:02:29.284512 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.284513 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.284526 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408154 cr=0x2bd62580)
2015-03-31 11:02:29.284528 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284543 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284553 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284564 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.284572 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284585 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.284599 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284608 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.284618 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284628 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.284639 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.284648 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_pin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80] now 1+0
2015-03-31 11:02:29.284658 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284672 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284686 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284697 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284707 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284717 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284727 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.284747 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.284772 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408154 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.284776 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408154 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.284789 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.284792 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.284795 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.284798 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.284810 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408154 cr=0x2bd62580)
2015-03-31 11:02:29.284828 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284844 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.284857 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284867 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.284888 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284898 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.284908 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.284918 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.284928 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.284942 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.284951 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.284961 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_unpin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80] now 0+0
2015-03-31 11:02:29.288806 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6b follows 0 op update
2015-03-31 11:02:29.288809 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288817 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.288819 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.288835 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.288836 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288842 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288849 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.288851 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288861 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288880 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288886 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.288887 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288894 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288901 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288901 7fbe406af700  5 mds.0.log _submit_thread 5419712156~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.288906 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288911 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288918 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288924 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288930 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.288940 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.328063 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408155 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.328084 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408155 cr=0x940b700)
2015-03-31 11:02:29.328088 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408155 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.328092 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408155 cr=0x940b700) #1000006b2ed
2015-03-31 11:02:29.328094 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ed snap head
2015-03-31 11:02:29.328095 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.328096 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.328113 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408155 cr=0x940b700)
2015-03-31 11:02:29.328116 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.328134 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.328146 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.328158 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.328169 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.328184 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.328199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.328209 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.328220 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.328231 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.328252 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.328261 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_pin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80] now 1+0
2015-03-31 11:02:29.328282 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.328297 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.328322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.328331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.328341 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.328350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.328360 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.328369 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.328383 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408155 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.328387 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408155 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.328397 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.328401 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.328405 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.328408 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.328420 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408155 cr=0x940b700)
2015-03-31 11:02:29.328439 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.328455 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.328469 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.328479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.328489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.328499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.328520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.328531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.328540 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.328555 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.328565 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.328576 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_unpin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80] now 0+0
2015-03-31 11:02:29.329700 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6b follows 0 op update
2015-03-31 11:02:29.329703 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329714 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.329716 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.329733 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.329734 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329741 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329749 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.329751 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329756 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329764 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329769 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.329770 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329777 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329795 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329802 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329808 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.329809 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.329810 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e6b [2,head] /test_small/small1/blarg10080 auth v136978 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a19f0]
2015-03-31 11:02:29.329818 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.369059 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408156 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.369080 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408156 cr=0x940e180)
2015-03-31 11:02:29.369085 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408156 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.369088 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408156 cr=0x940e180) #1000006b2ed
2015-03-31 11:02:29.369090 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ed snap head
2015-03-31 11:02:29.369092 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.369093 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.369109 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408156 cr=0x940e180)
2015-03-31 11:02:29.369112 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369130 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369142 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.369154 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.369164 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369179 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.369193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369203 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.369215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.369225 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.369246 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.369256 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_pin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80] now 1+0
2015-03-31 11:02:29.369266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369291 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369335 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.369344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.369354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.369362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.369377 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408156 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.369381 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408156 getattr Xs #1000006b2ed 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.369391 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.369394 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.369399 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.369401 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.369413 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408156 cr=0x940e180)
2015-03-31 11:02:29.369432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369448 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369462 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.369492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.369513 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.369523 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4dde80]
2015-03-31 11:02:29.369533 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.369548 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.369558 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.369569 7fbe462be700 10 mds.0.cache.ino(1000006b2ed) auth_unpin by 0x28768f00 on [inode 1000006b2ed [2,head] {#1000006b2ed /test_small/small5/blarg10080} auth v178774 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4dde80] now 0+0
2015-03-31 11:02:29.369870 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408157 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.369888 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408157 cr=0x940a080)
2015-03-31 11:02:29.369890 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408157 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.369893 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408157 cr=0x940a080) #10000004e6d
2015-03-31 11:02:29.369895 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6d snap head
2015-03-31 11:02:29.369897 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.369898 7fbe462be700 10 mds.0.server ref is [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.369907 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408157 cr=0x940a080)
2015-03-31 11:02:29.369910 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369925 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369936 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.369945 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.369952 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.369966 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.369981 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.369991 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.370002 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.370011 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.370021 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.370027 7fbe462be700 10 mds.0.cache.ino(10000004e6d) auth_pin by 0x28768f00 on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8] now 1+0
2015-03-31 11:02:29.370034 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.370049 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.370064 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.370074 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.370084 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.370094 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.370103 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370120 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370126 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370134 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370168 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408157 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.370172 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408157 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.370181 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.370183 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.370187 7fbe462be700 10 mds.0.cache.ino(10000004e6d) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.370190 7fbe462be700 10 mds.0.cache.ino(10000004e6d) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.370202 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408157 cr=0x940a080)
2015-03-31 11:02:29.370220 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.370236 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.370250 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.370260 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.370270 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.370279 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.370299 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370306 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370312 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370318 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.370323 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.370337 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.370348 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.370357 7fbe462be700 10 mds.0.cache.ino(10000004e6d) auth_unpin by 0x28768f00 on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a10b8] now 0+0
2015-03-31 11:02:29.370665 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408158 lookup #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.370682 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408158 cr=0x940b480)
2015-03-31 11:02:29.370685 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408158 lookup #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.370687 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408158 cr=0x940b480) #1000006026a/blarg10081
2015-03-31 11:02:29.370689 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.370692 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10081 [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock) v=177758 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.370700 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.370701 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408158 lookup #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.370710 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.370720 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408158 cr=0x940b480)
2015-03-31 11:02:29.371192 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408159 lookup #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.371211 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408159 cr=0x9408f00)
2015-03-31 11:02:29.371214 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408159 lookup #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.371216 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408159 cr=0x9408f00) #1000006026a/blarg10081
2015-03-31 11:02:29.371218 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.371221 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10081 [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock) v=177758 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.371228 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.371229 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408159 lookup #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.371238 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.371250 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408159 cr=0x9408f00)
2015-03-31 11:02:29.371723 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408160 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.371745 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408160 cr=0x9408c80)
2015-03-31 11:02:29.371747 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408160 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.371750 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408160 cr=0x9408c80) #10000004e6d
2015-03-31 11:02:29.371752 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6d snap head
2015-03-31 11:02:29.371753 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.371754 7fbe462be700 10 mds.0.server ref is [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.371765 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408160 cr=0x9408c80)
2015-03-31 11:02:29.371768 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.371792 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.371804 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.371814 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.371820 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.371834 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.371849 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.371859 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.371869 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.371878 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.371887 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.371893 7fbe462be700 10 mds.0.cache.ino(10000004e6d) auth_pin by 0x28768f00 on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8] now 1+0
2015-03-31 11:02:29.371901 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.371916 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.371930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.371950 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.371960 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.371980 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.371989 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.371994 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.372000 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.372006 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.372018 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408160 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.372022 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408160 getattr Xs #10000004e6d 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.372032 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.372035 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.372039 7fbe462be700 10 mds.0.cache.ino(10000004e6d) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.372042 7fbe462be700 10 mds.0.cache.ino(10000004e6d) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.372054 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408160 cr=0x9408c80)
2015-03-31 11:02:29.372073 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372089 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372103 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372113 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372123 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.372131 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.372151 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.372157 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.372164 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.372171 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a10b8]
2015-03-31 11:02:29.372177 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.372191 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.372201 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768f00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.372211 7fbe462be700 10 mds.0.cache.ino(10000004e6d) auth_unpin by 0x28768f00 on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a10b8] now 0+0
2015-03-31 11:02:29.372566 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408161 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.372583 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408161 cr=0x6887d00)
2015-03-31 11:02:29.372586 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408161 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.372589 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408161 cr=0x6887d00) #1000006026a
2015-03-31 11:02:29.372591 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.372592 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.372593 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372608 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408161 cr=0x6887d00)
2015-03-31 11:02:29.372611 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372625 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372635 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372646 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372659 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.372673 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372682 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.372693 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372703 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.372713 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372727 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372741 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372751 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372761 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372772 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372797 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372807 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31528} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372834 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408161 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.372837 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408161 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.372847 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.372849 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.372852 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31529
2015-03-31 11:02:29.372854 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31529 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.372866 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408161 cr=0x6887d00)
2015-03-31 11:02:29.372884 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372899 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.372913 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372923 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.372933 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372943 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372964 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372974 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.372984 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.372998 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.373007 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.373373 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408162 create #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.373389 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408162 cr=0x6885780)
2015-03-31 11:02:29.373392 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408162 create #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.373394 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10081
2015-03-31 11:02:29.373395 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408162 cr=0x6885780) #1000006026a/blarg10081
2015-03-31 11:02:29.373398 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10081
2015-03-31 11:02:29.373399 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.373400 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.373402 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178775 v=178771 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.373410 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178775 v=178771 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.373417 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10081 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178775 v=178771 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.373426 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408162 cr=0x6885780)
2015-03-31 11:02:29.373431 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.373448 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373458 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock) v=177758 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373465 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373475 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.373489 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.373503 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373513 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.373523 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock) v=177758 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373528 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10081) auth_pin by 0x28768f00 on [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock) v=177758 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60] now 1+0
2015-03-31 11:02:29.373534 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373544 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.373555 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock) v=177758 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373560 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177758 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373566 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177758 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373571 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177758 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373577 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177758 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373582 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10081) auth_pin by 0x3cea0b8 on [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177758 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60] now 2+0
2015-03-31 11:02:29.373588 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28768f00) [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dn xlock x=1 by 0x28768f00) (dversion lock w=1 last_client=708310) v=177758 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373604 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.373631 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.373644 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.373657 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.373670 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373679 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373688 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373697 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373706 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373716 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373725 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373735 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373744 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373753 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373762 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373772 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373781 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373794 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373812 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ee ([1000006b2ef~334], 820 left)
2015-03-31 11:02:29.373814 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.373816 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ee [2,head] #1000006b2ee auth v1 s=0 n() (iversion lock) 0x3f42c720]
2015-03-31 11:02:29.373820 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178776
2015-03-31 11:02:29.373821 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10081)  pre_dirty [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dn xlock x=1 by 0x28768f00) (dversion lock w=1 last_client=708310) pv=178776 v=177758 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.373828 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42c720]
2015-03-31 11:02:29.373834 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28768f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178776 v=178771 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:29.373843 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x28ed3910
2015-03-31 11:02:29.373845 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178777
2015-03-31 11:02:29.373846 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178777 v=178771 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.373852 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178777 v=178771 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.373859 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42c720]
2015-03-31 11:02:29.373864 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.373865 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295347 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373878 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295349
2015-03-31 11:02:29.373879 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295349 v=3295343 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.373883 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295349 (current v 3295343)
2015-03-31 11:02:29.373884 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178777 v=178771 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.373890 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.373892 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28768f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295349 v=3295344 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:29.373899 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x47ff7a0
2015-03-31 11:02:29.373900 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295350
2015-03-31 11:02:29.373901 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373912 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373922 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373933 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.373934 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.331926 < 1, stopping
2015-03-31 11:02:29.373938 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.373948 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.373952 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295349 v=3295343 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.373957 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31529} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.373971 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f42c720]
2015-03-31 11:02:29.373977 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.373980 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f42c720]
2015-03-31 11:02:29.373987 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.373988 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.373996 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374002 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374009 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374015 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374022 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374028 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374034 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374040 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374045 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374052 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374058 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374064 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374071 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374077 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42c720]
2015-03-31 11:02:29.374087 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.374088 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.374090 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f42c720 tracedn 0x3ce9f60
2015-03-31 11:02:29.374092 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28768f00) [dentry #1/test_small/small5/blarg10081 [2,head] auth NULL (dn xlock x=1 by 0x28768f00) (dversion lock w=1 last_client=708310) pv=178776 v=177758 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ce9f60]
2015-03-31 11:02:29.374099 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408162 create #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.374106 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.374109 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31530
2015-03-31 11:02:29.374111 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31530 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.374116 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.374118 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.374121 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) including xattrs version 0
2015-03-31 11:02:29.374155 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374184 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374200 7fbe406af700  5 mds.0.log _submit_thread 5419713015~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.374199 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374211 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374225 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374247 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374258 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374267 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374278 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374289 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374300 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374310 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374321 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374330 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374597 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408163 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.374616 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408163 cr=0x6887800)
2015-03-31 11:02:29.374619 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408163 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.374623 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408163 cr=0x6887800) #1000006b2ee
2015-03-31 11:02:29.374624 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ee snap head
2015-03-31 11:02:29.374625 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.374626 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f42c720]
2015-03-31 11:02:29.374638 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408163 cr=0x6887800)
2015-03-31 11:02:29.374641 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374656 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374666 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374677 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42c720]
2015-03-31 11:02:29.374686 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374700 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.374714 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374723 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.374734 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374744 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.374754 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42c720]
2015-03-31 11:02:29.374764 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_pin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42c720] now 1+0
2015-03-31 11:02:29.374773 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374792 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374807 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374817 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374827 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374838 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.374863 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.374885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.374899 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408163 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.374903 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408163 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.374912 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.374915 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.374918 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.374921 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.374933 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408163 cr=0x6887800)
2015-03-31 11:02:29.374951 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374967 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.374980 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.374990 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.375000 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375010 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.375041 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.375051 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.375065 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.375076 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.375086 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_unpin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720] now 0+0
2015-03-31 11:02:29.375384 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408164 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.375401 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408164 cr=0x23fbc100)
2015-03-31 11:02:29.375403 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408164 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.375406 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408164 cr=0x23fbc100) #1000006b2ee
2015-03-31 11:02:29.375408 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ee snap head
2015-03-31 11:02:29.375409 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.375411 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.375423 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408164 cr=0x23fbc100)
2015-03-31 11:02:29.375425 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.375440 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.375450 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375461 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.375470 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.375483 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.375498 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.375507 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.375517 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375527 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.375537 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.375546 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_pin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720] now 1+0
2015-03-31 11:02:29.375556 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.375571 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.375585 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.375595 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.375605 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375615 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375625 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.375645 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.375671 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408164 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.375674 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408164 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.375684 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.375686 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.375689 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.375692 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.375704 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408164 cr=0x23fbc100)
2015-03-31 11:02:29.375722 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.375737 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.375751 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.375760 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.375770 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375794 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.375804 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.375815 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.375824 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.375838 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.375848 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.375859 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_unpin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720] now 0+0
2015-03-31 11:02:29.379765 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6d follows 0 op update
2015-03-31 11:02:29.379768 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379776 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.379777 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.379795 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.379796 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379802 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379809 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.379811 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379821 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379840 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379847 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.379849 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379857 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379861 7fbe406af700  5 mds.0.log _submit_thread 5419714655~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.379864 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379869 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379874 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379880 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379886 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379892 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.379902 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.419049 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408165 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.419070 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408165 cr=0x23fbc880)
2015-03-31 11:02:29.419074 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408165 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.419079 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408165 cr=0x23fbc880) #1000006b2ee
2015-03-31 11:02:29.419081 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ee snap head
2015-03-31 11:02:29.419082 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.419083 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.419100 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408165 cr=0x23fbc880)
2015-03-31 11:02:29.419103 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.419121 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.419133 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.419145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.419155 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.419170 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.419185 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.419195 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.419207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.419228 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.419238 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.419248 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_pin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720] now 1+0
2015-03-31 11:02:29.419258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.419273 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.419297 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.419307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.419317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.419328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.419337 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.419347 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.419363 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408165 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.419368 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408165 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.419377 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.419381 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.419385 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.419388 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.419401 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408165 cr=0x23fbc880)
2015-03-31 11:02:29.419420 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.419437 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.419451 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.419462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.419473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.419483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.419505 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.419516 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.419526 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.419541 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.419552 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.419563 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_unpin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720] now 0+0
2015-03-31 11:02:29.420827 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6d follows 0 op update
2015-03-31 11:02:29.420830 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420841 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.420843 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.420861 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.420862 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420869 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420877 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.420879 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420884 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420890 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420896 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.420897 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420904 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420910 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420916 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420922 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.420923 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.420924 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e6d [2,head] /test_small/small1/blarg10081 auth v136980 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a10b8]
2015-03-31 11:02:29.420931 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.460059 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408166 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.460080 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408166 cr=0x9689e00)
2015-03-31 11:02:29.460084 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408166 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.460088 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408166 cr=0x9689e00) #1000006b2ee
2015-03-31 11:02:29.460090 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ee snap head
2015-03-31 11:02:29.460092 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.460093 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.460110 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408166 cr=0x9689e00)
2015-03-31 11:02:29.460113 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460130 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460142 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.460154 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.460165 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460180 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.460195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460205 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.460216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.460227 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.460247 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.460256 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_pin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720] now 1+0
2015-03-31 11:02:29.460266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460291 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460316 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460325 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.460344 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.460354 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.460363 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.460378 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408166 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.460382 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408166 getattr Xs #1000006b2ee 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.460392 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.460395 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.460400 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.460402 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.460415 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408166 cr=0x9689e00)
2015-03-31 11:02:29.460434 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460450 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460465 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460475 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460485 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.460495 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.460516 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.460527 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42c720]
2015-03-31 11:02:29.460537 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.460551 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.460562 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.460572 7fbe462be700 10 mds.0.cache.ino(1000006b2ee) auth_unpin by 0x28768500 on [inode 1000006b2ee [2,head] {#1000006b2ee /test_small/small5/blarg10081} auth v178776 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42c720] now 0+0
2015-03-31 11:02:29.460871 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408167 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.460888 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408167 cr=0x968e400)
2015-03-31 11:02:29.460890 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408167 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.460893 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408167 cr=0x968e400) #10000004e6f
2015-03-31 11:02:29.460895 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6f snap head
2015-03-31 11:02:29.460896 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.460897 7fbe462be700 10 mds.0.server ref is [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.460907 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408167 cr=0x968e400)
2015-03-31 11:02:29.460910 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460925 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460935 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.460944 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.460951 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.460964 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.460978 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.460987 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.460998 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.461006 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.461015 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.461020 7fbe462be700 10 mds.0.cache.ino(10000004e6f) auth_pin by 0x28768500 on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780] now 1+0
2015-03-31 11:02:29.461027 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.461041 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.461055 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.461066 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.461076 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.461084 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.461094 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461100 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461106 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461113 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461137 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408167 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.461140 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408167 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.461162 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.461164 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.461168 7fbe462be700 10 mds.0.cache.ino(10000004e6f) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.461171 7fbe462be700 10 mds.0.cache.ino(10000004e6f) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.461183 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408167 cr=0x968e400)
2015-03-31 11:02:29.461201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.461217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.461231 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.461241 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.461252 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.461260 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.461280 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461287 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461294 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461300 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.461306 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.461320 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.461330 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.461339 7fbe462be700 10 mds.0.cache.ino(10000004e6f) auth_unpin by 0x28768500 on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a0780] now 0+0
2015-03-31 11:02:29.461684 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408168 lookup #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.461704 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408168 cr=0x968c880)
2015-03-31 11:02:29.461706 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408168 lookup #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.461709 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408168 cr=0x968c880) #1000006026a/blarg10082
2015-03-31 11:02:29.461711 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.461713 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10082 [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock) v=177760 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea140]
2015-03-31 11:02:29.461721 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.461722 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408168 lookup #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.461733 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.461744 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408168 cr=0x968c880)
2015-03-31 11:02:29.462222 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408169 lookup #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.462241 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408169 cr=0x968b200)
2015-03-31 11:02:29.462245 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408169 lookup #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.462248 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408169 cr=0x968b200) #1000006026a/blarg10082
2015-03-31 11:02:29.462250 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.462252 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10082 [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock) v=177760 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea140]
2015-03-31 11:02:29.462260 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.462261 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408169 lookup #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.462272 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.462284 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408169 cr=0x968b200)
2015-03-31 11:02:29.462759 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408170 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.462780 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408170 cr=0x25f4af80)
2015-03-31 11:02:29.462788 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408170 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.462792 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408170 cr=0x25f4af80) #10000004e6f
2015-03-31 11:02:29.462793 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6f snap head
2015-03-31 11:02:29.462795 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.462796 7fbe462be700 10 mds.0.server ref is [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.462807 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408170 cr=0x25f4af80)
2015-03-31 11:02:29.462809 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.462827 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.462838 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.462848 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.462855 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.462868 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.462883 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.462893 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.462904 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.462912 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.462922 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.462928 7fbe462be700 10 mds.0.cache.ino(10000004e6f) auth_pin by 0x28768500 on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780] now 1+0
2015-03-31 11:02:29.462936 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.462950 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.462965 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.462986 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.462995 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.463015 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.463023 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463030 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463036 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463041 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463053 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408170 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.463056 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408170 getattr Xs #10000004e6f 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.463066 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.463070 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.463074 7fbe462be700 10 mds.0.cache.ino(10000004e6f) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.463076 7fbe462be700 10 mds.0.cache.ino(10000004e6f) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.463089 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408170 cr=0x25f4af80)
2015-03-31 11:02:29.463107 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463123 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463138 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463148 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463158 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.463166 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.463186 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463193 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463199 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463204 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9a0780]
2015-03-31 11:02:29.463209 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.463223 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.463234 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.463243 7fbe462be700 10 mds.0.cache.ino(10000004e6f) auth_unpin by 0x28768500 on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9a0780] now 0+0
2015-03-31 11:02:29.463590 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408171 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.463611 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408171 cr=0x25f4e400)
2015-03-31 11:02:29.463613 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408171 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.463617 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408171 cr=0x25f4e400) #1000006026a
2015-03-31 11:02:29.463618 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.463620 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.463621 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463639 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408171 cr=0x25f4e400)
2015-03-31 11:02:29.463642 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463658 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463669 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463680 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463694 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.463708 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463717 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.463728 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463738 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.463749 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463763 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463777 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463792 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463802 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463822 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463832 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463853 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31530} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463868 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408171 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.463872 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408171 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.463882 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.463885 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.463890 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31531
2015-03-31 11:02:29.463892 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31531 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.463904 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408171 cr=0x25f4e400)
2015-03-31 11:02:29.463923 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463939 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.463953 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463963 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.463973 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.463984 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464005 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464015 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464025 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.464038 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.464049 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.464439 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408172 create #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.464459 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408172 cr=0x3b99900)
2015-03-31 11:02:29.464461 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408172 create #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.464463 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10082
2015-03-31 11:02:29.464464 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408172 cr=0x3b99900) #1000006026a/blarg10082
2015-03-31 11:02:29.464467 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10082
2015-03-31 11:02:29.464468 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.464469 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.464471 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178777 v=178771 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.464481 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178777 v=178771 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.464489 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10082 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178777 v=178771 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.464499 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408172 cr=0x3b99900)
2015-03-31 11:02:29.464505 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.464523 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.464535 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock) v=177760 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464542 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464553 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.464567 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.464581 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.464591 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.464601 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock) v=177760 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464606 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10082) auth_pin by 0x28768500 on [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock) v=177760 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140] now 1+0
2015-03-31 11:02:29.464611 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464623 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.464635 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock) v=177760 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464640 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177760 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464646 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177760 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464661 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177760 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464667 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177760 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464673 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10082) auth_pin by 0x3cea298 on [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177760 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140] now 2+0
2015-03-31 11:02:29.464690 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28768500) [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dn xlock x=1 by 0x28768500) (dversion lock w=1 last_client=708310) v=177760 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464696 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.464710 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.464723 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.464736 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.464749 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.464758 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.464768 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.464777 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.464790 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464800 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464810 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464819 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464828 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464837 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464847 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464856 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464865 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464874 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464891 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ef ([1000006b2f0~333], 819 left)
2015-03-31 11:02:29.464894 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.464895 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ef [2,head] #1000006b2ef auth v1 s=0 n() (iversion lock) 0x3f3fb788]
2015-03-31 11:02:29.464899 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178778
2015-03-31 11:02:29.464900 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10082)  pre_dirty [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dn xlock x=1 by 0x28768500) (dversion lock w=1 last_client=708310) pv=178778 v=177760 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.464907 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3fb788]
2015-03-31 11:02:29.464914 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28768500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178778 v=178771 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:29.464923 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3c246d0
2015-03-31 11:02:29.464925 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178779
2015-03-31 11:02:29.464926 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178779 v=178771 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.464932 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178779 v=178771 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.464939 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3fb788]
2015-03-31 11:02:29.464945 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.464947 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295349 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.464961 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295351
2015-03-31 11:02:29.464962 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295351 v=3295343 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.464965 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295351 (current v 3295343)
2015-03-31 11:02:29.464967 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178779 v=178771 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.464973 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.464974 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28768500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295351 v=3295344 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:29.464980 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x93253e0
2015-03-31 11:02:29.464982 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295352
2015-03-31 11:02:29.464982 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.464993 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465003 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465014 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.465015 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.423005 < 1, stopping
2015-03-31 11:02:29.465019 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465029 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.465032 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295351 v=3295343 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.465036 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31531} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465049 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3fb788]
2015-03-31 11:02:29.465056 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.465058 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465066 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.465067 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465075 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465081 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465088 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465094 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465101 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465107 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465113 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465120 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465126 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465132 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465137 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465144 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465150 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465157 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3fb788]
2015-03-31 11:02:29.465166 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.465167 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.465169 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3fb788 tracedn 0x3cea140
2015-03-31 11:02:29.465171 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28768500) [dentry #1/test_small/small5/blarg10082 [2,head] auth NULL (dn xlock x=1 by 0x28768500) (dversion lock w=1 last_client=708310) pv=178778 v=177760 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea140]
2015-03-31 11:02:29.465178 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408172 create #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.465186 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.465189 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31532
2015-03-31 11:02:29.465191 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31532 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.465196 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.465199 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.465202 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) including xattrs version 0
2015-03-31 11:02:29.465237 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465266 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465281 7fbe406af700  5 mds.0.log _submit_thread 5419715514~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.465281 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465294 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465308 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465330 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465341 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465351 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465361 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465373 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465384 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465394 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465405 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465414 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465679 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408173 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.465699 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408173 cr=0x3b9c100)
2015-03-31 11:02:29.465701 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408173 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.465704 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408173 cr=0x3b9c100) #1000006b2ef
2015-03-31 11:02:29.465706 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ef snap head
2015-03-31 11:02:29.465707 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.465708 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3fb788]
2015-03-31 11:02:29.465721 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408173 cr=0x3b9c100)
2015-03-31 11:02:29.465724 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465739 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465749 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465760 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3fb788]
2015-03-31 11:02:29.465769 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465787 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.465802 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465811 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.465822 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465832 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.465843 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3fb788]
2015-03-31 11:02:29.465852 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_pin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3fb788] now 1+0
2015-03-31 11:02:29.465862 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465877 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.465891 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465902 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.465912 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465923 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.465949 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.465970 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.465984 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408173 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.465988 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408173 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.465997 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.466001 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.466004 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.466006 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.466019 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408173 cr=0x3b9c100)
2015-03-31 11:02:29.466037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466053 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466066 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466076 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466086 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466096 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466117 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.466127 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.466137 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.466152 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.466162 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.466172 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_unpin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788] now 0+0
2015-03-31 11:02:29.466474 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408174 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.466491 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408174 cr=0x3b9d000)
2015-03-31 11:02:29.466493 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408174 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.466496 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408174 cr=0x3b9d000) #1000006b2ef
2015-03-31 11:02:29.466498 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ef snap head
2015-03-31 11:02:29.466499 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.466500 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.466512 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408174 cr=0x3b9d000)
2015-03-31 11:02:29.466515 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466530 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466540 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466551 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.466560 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466574 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.466588 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466597 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.466608 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466618 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.466628 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.466637 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_pin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788] now 1+0
2015-03-31 11:02:29.466646 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466660 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466674 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466684 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466694 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466705 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466715 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.466735 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.466761 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408174 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.466765 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408174 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.466775 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.466778 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.466781 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.466787 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.466799 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408174 cr=0x3b9d000)
2015-03-31 11:02:29.466817 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466833 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.466846 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466856 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.466866 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466887 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.466897 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.466907 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.466916 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.466930 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.466941 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.466951 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_unpin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788] now 0+0
2015-03-31 11:02:29.470772 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6f follows 0 op update
2015-03-31 11:02:29.470775 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470786 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.470788 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.470804 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.470805 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470811 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470818 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.470820 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470830 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470849 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470856 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.470858 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470866 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470871 7fbe406af700  5 mds.0.log _submit_thread 5419717154~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.470873 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470878 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470884 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470890 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470896 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470903 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.470912 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.510052 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408175 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.510073 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408175 cr=0x8f0d280)
2015-03-31 11:02:29.510077 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408175 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.510081 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408175 cr=0x8f0d280) #1000006b2ef
2015-03-31 11:02:29.510083 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ef snap head
2015-03-31 11:02:29.510084 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.510085 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.510102 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408175 cr=0x8f0d280)
2015-03-31 11:02:29.510105 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.510123 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.510135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.510147 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.510157 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.510172 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.510187 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.510197 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.510208 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.510219 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.510240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.510249 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_pin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788] now 1+0
2015-03-31 11:02:29.510259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.510283 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.510309 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.510318 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.510328 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.510337 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.510347 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.510356 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.510371 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408175 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.510375 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408175 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.510385 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.510388 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.510393 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.510395 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.510408 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408175 cr=0x8f0d280)
2015-03-31 11:02:29.510427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.510443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.510457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.510467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.510477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.510487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.510508 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.510518 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.510528 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.510543 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.510554 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.510565 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_unpin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788] now 0+0
2015-03-31 11:02:29.511856 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6f follows 0 op update
2015-03-31 11:02:29.511859 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511871 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.511872 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.511890 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.511891 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511897 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511905 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.511907 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511912 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511920 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511926 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.511927 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511933 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511938 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511943 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511948 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.511949 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.511950 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e6f [2,head] /test_small/small1/blarg10082 auth v136982 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9a0780]
2015-03-31 11:02:29.511957 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.551056 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408176 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.551078 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408176 cr=0x8f08500)
2015-03-31 11:02:29.551082 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408176 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.551086 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408176 cr=0x8f08500) #1000006b2ef
2015-03-31 11:02:29.551088 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ef snap head
2015-03-31 11:02:29.551089 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.551090 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.551107 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408176 cr=0x8f08500)
2015-03-31 11:02:29.551110 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551128 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551140 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.551152 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.551163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551178 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.551193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551202 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.551214 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.551224 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.551245 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.551255 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_pin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788] now 1+0
2015-03-31 11:02:29.551265 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.551343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.551353 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.551362 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.551377 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408176 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.551381 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408176 getattr Xs #1000006b2ef 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.551391 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.551394 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.551398 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.551401 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.551413 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408176 cr=0x8f08500)
2015-03-31 11:02:29.551432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551471 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.551492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.551512 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.551523 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3fb788]
2015-03-31 11:02:29.551532 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.551547 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.551557 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.551567 7fbe462be700 10 mds.0.cache.ino(1000006b2ef) auth_unpin by 0x28768000 on [inode 1000006b2ef [2,head] {#1000006b2ef /test_small/small5/blarg10082} auth v178778 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3fb788] now 0+0
2015-03-31 11:02:29.551858 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408177 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.551875 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408177 cr=0xb261e00)
2015-03-31 11:02:29.551878 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408177 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.551881 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408177 cr=0xb261e00) #10000004e72
2015-03-31 11:02:29.551883 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e72 snap head
2015-03-31 11:02:29.551884 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.551886 7fbe462be700 10 mds.0.server ref is [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.551895 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408177 cr=0xb261e00)
2015-03-31 11:02:29.551897 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551913 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551923 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.551932 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.551937 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.551950 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.551964 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.551973 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.551984 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.551993 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.552002 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.552007 7fbe462be700 10 mds.0.cache.ino(10000004e72) auth_pin by 0x28768000 on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48] now 1+0
2015-03-31 11:02:29.552014 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.552028 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.552042 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.552052 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.552061 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.552070 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.552079 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552086 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552092 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552099 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552122 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408177 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.552126 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408177 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.552147 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.552150 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.552153 7fbe462be700 10 mds.0.cache.ino(10000004e72) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.552155 7fbe462be700 10 mds.0.cache.ino(10000004e72) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.552167 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408177 cr=0xb261e00)
2015-03-31 11:02:29.552185 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.552200 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.552214 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.552224 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.552234 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.552243 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.552264 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552271 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552276 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552282 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.552288 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.552302 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.552313 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.552322 7fbe462be700 10 mds.0.cache.ino(10000004e72) auth_unpin by 0x28768000 on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99fe48] now 0+0
2015-03-31 11:02:29.552621 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408178 lookup #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.552638 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408178 cr=0xb267800)
2015-03-31 11:02:29.552640 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408178 lookup #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.552642 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408178 cr=0xb267800) #1000006026a/blarg10083
2015-03-31 11:02:29.552644 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.552647 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10083 [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock) v=177762 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea320]
2015-03-31 11:02:29.552655 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.552657 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408178 lookup #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.552666 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.552676 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408178 cr=0xb267800)
2015-03-31 11:02:29.553137 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408179 lookup #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.553155 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408179 cr=0xb263200)
2015-03-31 11:02:29.553158 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408179 lookup #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.553161 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408179 cr=0xb263200) #1000006026a/blarg10083
2015-03-31 11:02:29.553162 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.553165 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10083 [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock) v=177762 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea320]
2015-03-31 11:02:29.553172 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.553173 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408179 lookup #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.553183 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.553195 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408179 cr=0xb263200)
2015-03-31 11:02:29.553670 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408180 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.553690 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408180 cr=0xb261180)
2015-03-31 11:02:29.553692 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408180 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.553696 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408180 cr=0xb261180) #10000004e72
2015-03-31 11:02:29.553697 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e72 snap head
2015-03-31 11:02:29.553699 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.553700 7fbe462be700 10 mds.0.server ref is [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.553712 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408180 cr=0xb261180)
2015-03-31 11:02:29.553715 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.553732 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.553743 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.553753 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.553760 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.553774 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.553795 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.553805 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.553816 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.553824 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.553834 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.553840 7fbe462be700 10 mds.0.cache.ino(10000004e72) auth_pin by 0x28768000 on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48] now 1+0
2015-03-31 11:02:29.553848 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.553863 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.553877 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.553897 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.553907 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.553926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.553935 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.553942 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.553948 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.553954 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.553968 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408180 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.553971 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408180 getattr Xs #10000004e72 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.553982 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.553985 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.553989 7fbe462be700 10 mds.0.cache.ino(10000004e72) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.553991 7fbe462be700 10 mds.0.cache.ino(10000004e72) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.554005 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408180 cr=0xb261180)
2015-03-31 11:02:29.554023 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554039 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554053 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554063 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554073 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.554082 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.554102 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.554109 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.554115 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.554121 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99fe48]
2015-03-31 11:02:29.554127 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.554141 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.554152 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.554161 7fbe462be700 10 mds.0.cache.ino(10000004e72) auth_unpin by 0x28768000 on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99fe48] now 0+0
2015-03-31 11:02:29.554538 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408181 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.554559 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408181 cr=0x43d1180)
2015-03-31 11:02:29.554561 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408181 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.554564 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408181 cr=0x43d1180) #1000006026a
2015-03-31 11:02:29.554566 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.554568 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.554569 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554586 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408181 cr=0x43d1180)
2015-03-31 11:02:29.554589 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554605 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554616 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554626 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554640 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.554654 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554664 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.554674 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554684 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.554695 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554709 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554723 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554734 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554744 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554764 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554791 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554801 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31532} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554816 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408181 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.554820 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408181 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.554830 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.554833 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.554838 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31533
2015-03-31 11:02:29.554839 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31533 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.554852 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408181 cr=0x43d1180)
2015-03-31 11:02:29.554871 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554887 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.554901 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554911 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.554921 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554931 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554953 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554962 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.554972 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.554986 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.554996 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.555379 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408182 create #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.555399 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408182 cr=0x43d4880)
2015-03-31 11:02:29.555403 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408182 create #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.555406 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10083
2015-03-31 11:02:29.555407 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408182 cr=0x43d4880) #1000006026a/blarg10083
2015-03-31 11:02:29.555409 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10083
2015-03-31 11:02:29.555410 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.555412 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.555413 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178779 v=178771 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.555422 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178779 v=178771 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.555430 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10083 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178779 v=178771 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.555440 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408182 cr=0x43d4880)
2015-03-31 11:02:29.555445 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.555465 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555476 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock) v=177762 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555483 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555495 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.555509 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.555523 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.555544 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock) v=177762 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555549 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10083) auth_pin by 0x28768000 on [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock) v=177762 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320] now 1+0
2015-03-31 11:02:29.555555 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555566 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.555577 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock) v=177762 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555582 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177762 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555587 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177762 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555602 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177762 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555607 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177762 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555612 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10083) auth_pin by 0x3cea478 on [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177762 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320] now 2+0
2015-03-31 11:02:29.555628 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28768000) [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dn xlock x=1 by 0x28768000) (dversion lock w=1 last_client=708310) v=177762 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555633 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.555648 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.555662 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.555675 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.555688 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555698 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555707 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555717 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555726 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555736 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555746 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555756 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555766 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555775 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555789 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555799 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555809 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555819 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555838 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f0 ([1000006b2f1~332], 818 left)
2015-03-31 11:02:29.555841 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.555842 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f0 [2,head] #1000006b2f0 auth v1 s=0 n() (iversion lock) 0x3f34ce40]
2015-03-31 11:02:29.555846 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178780
2015-03-31 11:02:29.555847 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10083)  pre_dirty [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dn xlock x=1 by 0x28768000) (dversion lock w=1 last_client=708310) pv=178780 v=177762 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.555855 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f34ce40]
2015-03-31 11:02:29.555861 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28768000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178780 v=178771 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:29.555870 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc696b0
2015-03-31 11:02:29.555871 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178781
2015-03-31 11:02:29.555873 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178781 v=178771 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.555879 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178781 v=178771 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.555886 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f34ce40]
2015-03-31 11:02:29.555892 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.555894 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295351 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555907 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295353
2015-03-31 11:02:29.555908 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295353 v=3295343 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.555912 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295353 (current v 3295343)
2015-03-31 11:02:29.555913 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178781 v=178771 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.555919 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.555921 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28768000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295353 v=3295344 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:29.555928 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9249ce0
2015-03-31 11:02:29.555929 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295354
2015-03-31 11:02:29.555930 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555942 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555952 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.555963 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.555964 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.513951 < 1, stopping
2015-03-31 11:02:29.555968 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.555978 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.555982 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295353 v=3295343 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.555986 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31533} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556000 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f34ce40]
2015-03-31 11:02:29.556006 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.556009 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556017 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.556018 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556026 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556033 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556039 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556046 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556052 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556059 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556066 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556072 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556078 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556085 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556092 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556098 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556105 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556112 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f34ce40]
2015-03-31 11:02:29.556122 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.556123 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.556125 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f34ce40 tracedn 0x3cea320
2015-03-31 11:02:29.556127 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28768000) [dentry #1/test_small/small5/blarg10083 [2,head] auth NULL (dn xlock x=1 by 0x28768000) (dversion lock w=1 last_client=708310) pv=178780 v=177762 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea320]
2015-03-31 11:02:29.556133 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408182 create #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.556140 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.556143 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31534
2015-03-31 11:02:29.556145 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31534 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.556151 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.556154 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.556157 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) including xattrs version 0
2015-03-31 11:02:29.556193 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556237 7fbe406af700  5 mds.0.log _submit_thread 5419718013~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.556236 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556249 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556263 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556285 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556296 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556306 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556316 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556328 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556339 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556349 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556360 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556369 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556707 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408183 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.556728 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408183 cr=0x43d3c00)
2015-03-31 11:02:29.556731 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408183 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.556734 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408183 cr=0x43d3c00) #1000006b2f0
2015-03-31 11:02:29.556736 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f0 snap head
2015-03-31 11:02:29.556737 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.556738 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f34ce40]
2015-03-31 11:02:29.556754 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408183 cr=0x43d3c00)
2015-03-31 11:02:29.556757 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556774 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556791 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556803 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f34ce40]
2015-03-31 11:02:29.556814 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556828 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.556842 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556852 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.556863 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556873 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.556884 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f34ce40]
2015-03-31 11:02:29.556893 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_pin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f34ce40] now 1+0
2015-03-31 11:02:29.556903 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556919 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.556943 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556966 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.556975 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556985 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.556994 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557018 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408183 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.557022 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408183 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.557032 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.557036 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.557040 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.557042 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.557055 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408183 cr=0x43d3c00)
2015-03-31 11:02:29.557073 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557089 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557103 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557113 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557123 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557133 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557154 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557165 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557174 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.557189 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.557199 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.557209 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_unpin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40] now 0+0
2015-03-31 11:02:29.557505 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408184 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.557523 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408184 cr=0x26459e00)
2015-03-31 11:02:29.557525 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408184 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.557528 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408184 cr=0x26459e00) #1000006b2f0
2015-03-31 11:02:29.557530 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f0 snap head
2015-03-31 11:02:29.557531 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.557532 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.557545 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408184 cr=0x26459e00)
2015-03-31 11:02:29.557547 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557562 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557572 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557582 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.557592 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557605 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.557620 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557629 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.557639 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557649 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.557660 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.557669 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_pin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40] now 1+0
2015-03-31 11:02:29.557678 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557693 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557706 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557717 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557727 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557737 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557748 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557767 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557797 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408184 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.557801 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408184 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.557811 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.557813 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.557817 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.557820 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.557832 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408184 cr=0x26459e00)
2015-03-31 11:02:29.557850 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557866 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.557880 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557890 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.557910 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557921 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.557931 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557942 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.557951 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.557965 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.557975 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.557985 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_unpin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40] now 0+0
2015-03-31 11:02:29.562764 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e72 follows 0 op update
2015-03-31 11:02:29.562768 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562777 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.562779 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.562797 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.562798 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562804 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562811 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.562813 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562823 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562843 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562849 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.562850 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562857 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562863 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562863 7fbe406af700  5 mds.0.log _submit_thread 5419719653~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.562869 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562875 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562880 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562886 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562892 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.562902 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.602041 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408185 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.602062 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408185 cr=0x2645a580)
2015-03-31 11:02:29.602066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408185 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.602070 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408185 cr=0x2645a580) #1000006b2f0
2015-03-31 11:02:29.602072 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f0 snap head
2015-03-31 11:02:29.602074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.602075 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.602091 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408185 cr=0x2645a580)
2015-03-31 11:02:29.602094 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.602112 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.602124 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.602136 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.602146 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.602161 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.602176 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.602187 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.602198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.602208 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.602229 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.602239 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_pin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40] now 1+0
2015-03-31 11:02:29.602249 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.602275 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.602299 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.602309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.602318 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.602328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.602337 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.602346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.602361 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408185 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.602365 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408185 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.602375 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.602378 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.602382 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.602385 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.602397 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408185 cr=0x2645a580)
2015-03-31 11:02:29.602416 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.602432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.602447 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.602457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.602467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.602478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.602499 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.602510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.602519 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.602534 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.602544 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.602555 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_unpin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40] now 0+0
2015-03-31 11:02:29.603806 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e72 follows 0 op update
2015-03-31 11:02:29.603809 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603821 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.603822 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.603840 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.603841 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603848 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603856 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.603858 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603863 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603870 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603877 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.603878 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603885 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603891 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603896 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603902 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.603903 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.603904 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e72 [2,head] /test_small/small1/blarg10083 auth v136984 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99fe48]
2015-03-31 11:02:29.603911 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.643030 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408186 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.643049 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408186 cr=0x2645af80)
2015-03-31 11:02:29.643053 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408186 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.643056 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408186 cr=0x2645af80) #1000006b2f0
2015-03-31 11:02:29.643059 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f0 snap head
2015-03-31 11:02:29.643060 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.643061 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.643078 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408186 cr=0x2645af80)
2015-03-31 11:02:29.643081 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643099 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643111 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.643123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.643134 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643149 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.643164 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643174 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.643184 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.643195 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.643216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.643225 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_pin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40] now 1+0
2015-03-31 11:02:29.643236 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643261 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643287 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643296 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643306 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.643315 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.643325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.643334 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.643348 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408186 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.643352 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408186 getattr Xs #1000006b2f0 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.643362 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.643365 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.643370 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.643372 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.643385 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408186 cr=0x2645af80)
2015-03-31 11:02:29.643404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643420 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643434 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643453 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.643464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.643485 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.643495 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f34ce40]
2015-03-31 11:02:29.643505 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.643520 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.643530 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.643541 7fbe462be700 10 mds.0.cache.ino(1000006b2f0) auth_unpin by 0x25c25a00 on [inode 1000006b2f0 [2,head] {#1000006b2f0 /test_small/small5/blarg10083} auth v178780 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f34ce40] now 0+0
2015-03-31 11:02:29.643830 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408187 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.643848 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408187 cr=0x682fd00)
2015-03-31 11:02:29.643849 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408187 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.643852 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408187 cr=0x682fd00) #10000004e70
2015-03-31 11:02:29.643854 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e70 snap head
2015-03-31 11:02:29.643856 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.643857 7fbe462be700 10 mds.0.server ref is [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.643866 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408187 cr=0x682fd00)
2015-03-31 11:02:29.643869 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643894 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.643903 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.643911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.643924 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.643938 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.643947 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.643957 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.643966 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.643975 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.643980 7fbe462be700 10 mds.0.cache.ino(10000004e70) auth_pin by 0x25c25a00 on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99f510] now 1+0
2015-03-31 11:02:29.643987 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.644001 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.644015 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.644025 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.644035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.644045 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.644054 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644060 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644067 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644072 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644096 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408187 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.644100 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408187 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.644120 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.644123 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.644128 7fbe462be700 10 mds.0.cache.ino(10000004e70) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.644130 7fbe462be700 10 mds.0.cache.ino(10000004e70) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.644142 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408187 cr=0x682fd00)
2015-03-31 11:02:29.644160 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.644175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.644189 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.644199 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.644209 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.644218 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.644238 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644244 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644251 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644257 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.644263 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.644277 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.644287 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.644296 7fbe462be700 10 mds.0.cache.ino(10000004e70) auth_unpin by 0x25c25a00 on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99f510] now 0+0
2015-03-31 11:02:29.644659 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408188 lookup #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.644679 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408188 cr=0x682eb80)
2015-03-31 11:02:29.644681 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408188 lookup #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.644684 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408188 cr=0x682eb80) #1000006026a/blarg10084
2015-03-31 11:02:29.644686 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.644689 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10084 [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock) v=177764 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea500]
2015-03-31 11:02:29.644697 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.644698 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408188 lookup #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.644708 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.644720 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408188 cr=0x682eb80)
2015-03-31 11:02:29.645186 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408189 lookup #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.645205 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408189 cr=0x9d48280)
2015-03-31 11:02:29.645207 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408189 lookup #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.645210 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408189 cr=0x9d48280) #1000006026a/blarg10084
2015-03-31 11:02:29.645211 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.645214 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10084 [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock) v=177764 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea500]
2015-03-31 11:02:29.645222 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.645224 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408189 lookup #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.645234 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.645246 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408189 cr=0x9d48280)
2015-03-31 11:02:29.645699 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408190 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.645720 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408190 cr=0x26900000)
2015-03-31 11:02:29.645722 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408190 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.645725 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408190 cr=0x26900000) #10000004e70
2015-03-31 11:02:29.645727 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e70 snap head
2015-03-31 11:02:29.645728 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.645729 7fbe462be700 10 mds.0.server ref is [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.645740 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408190 cr=0x26900000)
2015-03-31 11:02:29.645743 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.645760 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.645772 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.645781 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.645795 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.645809 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.645823 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.645833 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.645844 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.645853 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.645862 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.645868 7fbe462be700 10 mds.0.cache.ino(10000004e70) auth_pin by 0x25c25a00 on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99f510] now 1+0
2015-03-31 11:02:29.645875 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.645891 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.645905 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.645926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.645948 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.645956 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.645964 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.645970 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.645975 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.645980 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.645990 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408190 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.645994 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408190 getattr Xs #10000004e70 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.646004 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.646007 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.646011 7fbe462be700 10 mds.0.cache.ino(10000004e70) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.646013 7fbe462be700 10 mds.0.cache.ino(10000004e70) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.646026 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408190 cr=0x26900000)
2015-03-31 11:02:29.646045 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646061 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646074 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646085 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646095 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.646103 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.646123 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.646130 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.646136 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.646143 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99f510]
2015-03-31 11:02:29.646148 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.646162 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.646172 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.646182 7fbe462be700 10 mds.0.cache.ino(10000004e70) auth_unpin by 0x25c25a00 on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99f510] now 0+0
2015-03-31 11:02:29.646549 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408191 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.646569 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408191 cr=0x26903480)
2015-03-31 11:02:29.646572 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408191 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.646575 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408191 cr=0x26903480) #1000006026a
2015-03-31 11:02:29.646577 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.646578 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.646579 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646597 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408191 cr=0x26903480)
2015-03-31 11:02:29.646600 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646616 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646627 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646638 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646651 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.646665 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646675 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.646686 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646696 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.646707 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646721 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646735 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646745 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646755 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646775 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646800 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646809 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31534} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646825 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408191 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.646829 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408191 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.646839 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.646842 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.646847 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31535
2015-03-31 11:02:29.646849 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31535 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.646862 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408191 cr=0x26903480)
2015-03-31 11:02:29.646881 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646896 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.646910 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646921 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.646931 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646942 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646963 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646973 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.646983 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.646997 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.647007 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.647377 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408192 create #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.647396 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408192 cr=0x5e8e180)
2015-03-31 11:02:29.647398 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408192 create #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.647401 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10084
2015-03-31 11:02:29.647402 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408192 cr=0x5e8e180) #1000006026a/blarg10084
2015-03-31 11:02:29.647404 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10084
2015-03-31 11:02:29.647406 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.647407 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.647409 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178781 v=178771 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.647418 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178781 v=178771 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.647425 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10084 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178781 v=178771 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.647436 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408192 cr=0x5e8e180)
2015-03-31 11:02:29.647441 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.647460 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647471 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock) v=177764 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647478 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647490 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.647504 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.647519 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647528 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.647539 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock) v=177764 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647544 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10084) auth_pin by 0x25c25a00 on [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock) v=177764 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500] now 1+0
2015-03-31 11:02:29.647550 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647561 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.647572 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock) v=177764 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647578 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177764 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647584 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177764 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647598 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177764 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647604 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177764 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647609 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10084) auth_pin by 0x3cea658 on [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177764 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500] now 2+0
2015-03-31 11:02:29.647625 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x25c25a00) [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dn xlock x=1 by 0x25c25a00) (dversion lock w=1 last_client=708310) v=177764 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647630 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.647644 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.647658 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.647670 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.647683 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647693 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647703 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647712 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647722 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647732 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647742 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647751 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647761 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647770 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647779 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647793 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647802 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647811 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647829 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f1 ([1000006b2f2~331], 817 left)
2015-03-31 11:02:29.647832 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.647834 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f1 [2,head] #1000006b2f1 auth v1 s=0 n() (iversion lock) 0x3f437f80]
2015-03-31 11:02:29.647838 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178782
2015-03-31 11:02:29.647839 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10084)  pre_dirty [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dn xlock x=1 by 0x25c25a00) (dversion lock w=1 last_client=708310) pv=178782 v=177764 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.647846 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f437f80]
2015-03-31 11:02:29.647853 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x25c25a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178782 v=178771 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:29.647862 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9a340a0
2015-03-31 11:02:29.647864 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178783
2015-03-31 11:02:29.647865 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178771 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.647871 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178771 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.647878 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f437f80]
2015-03-31 11:02:29.647883 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.647885 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295353 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647899 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295355
2015-03-31 11:02:29.647900 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295343 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.647904 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295355 (current v 3295343)
2015-03-31 11:02:29.647905 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178771 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=93+1511,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.647913 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.647914 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x25c25a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295355 v=3295344 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:29.647922 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924b860
2015-03-31 11:02:29.647924 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295356
2015-03-31 11:02:29.647925 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647937 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647947 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647958 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.647959 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.605943 < 1, stopping
2015-03-31 11:02:29.647963 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.647973 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.647977 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295343 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.647981 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31535} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.647994 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f437f80]
2015-03-31 11:02:29.648000 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.648003 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f437f80]
2015-03-31 11:02:29.648011 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.648013 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648021 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648027 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648035 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648041 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648048 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648055 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648061 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648067 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648073 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648080 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648087 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648093 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648100 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648107 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437f80]
2015-03-31 11:02:29.648117 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.648118 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.648120 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f437f80 tracedn 0x3cea500
2015-03-31 11:02:29.648122 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x25c25a00) [dentry #1/test_small/small5/blarg10084 [2,head] auth NULL (dn xlock x=1 by 0x25c25a00) (dversion lock w=1 last_client=708310) pv=178782 v=177764 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea500]
2015-03-31 11:02:29.648129 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408192 create #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.648136 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.648140 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31536
2015-03-31 11:02:29.648142 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31536 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.648147 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.648150 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.648152 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) including xattrs version 0
2015-03-31 11:02:29.648188 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648233 7fbe406af700  5 mds.0.log _submit_thread 5419720512~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.648232 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648245 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648258 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648280 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648291 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648301 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648312 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648324 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648335 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648345 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648355 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648365 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648656 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408193 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.648676 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408193 cr=0x5e8f080)
2015-03-31 11:02:29.648678 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408193 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.648681 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408193 cr=0x5e8f080) #1000006b2f1
2015-03-31 11:02:29.648683 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f1 snap head
2015-03-31 11:02:29.648684 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.648685 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f437f80]
2015-03-31 11:02:29.648697 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408193 cr=0x5e8f080)
2015-03-31 11:02:29.648699 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648715 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648725 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648736 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f437f80]
2015-03-31 11:02:29.648745 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648759 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.648773 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648788 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.648798 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648808 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.648819 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f437f80]
2015-03-31 11:02:29.648829 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_pin by 0x2876a300 on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f437f80] now 1+0
2015-03-31 11:02:29.648838 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.648867 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648878 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.648888 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648898 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.648924 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.648944 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.648960 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408193 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.648963 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408193 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.648973 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.648976 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.648980 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.648983 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.648995 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408193 cr=0x5e8f080)
2015-03-31 11:02:29.649013 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649029 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649043 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649053 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649063 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649073 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649094 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.649104 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.649114 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.649128 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.649139 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.649149 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_unpin by 0x2876a300 on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437f80] now 0+0
2015-03-31 11:02:29.649437 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408194 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.649455 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408194 cr=0x5e88f00)
2015-03-31 11:02:29.649457 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408194 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.649460 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408194 cr=0x5e88f00) #1000006b2f1
2015-03-31 11:02:29.649462 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f1 snap head
2015-03-31 11:02:29.649463 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.649464 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.649477 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408194 cr=0x5e88f00)
2015-03-31 11:02:29.649479 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649494 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649504 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649514 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.649524 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649538 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.649552 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649561 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.649572 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649582 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.649592 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.649602 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_pin by 0x2876a300 on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80] now 1+0
2015-03-31 11:02:29.649612 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649626 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649640 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649650 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649661 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649671 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649682 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.649701 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.649729 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408194 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.649733 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408194 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.649742 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.649744 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.649747 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.649750 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.649761 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408194 cr=0x5e88f00)
2015-03-31 11:02:29.649779 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649799 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.649813 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649823 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.649833 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649854 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.649864 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.649874 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.649884 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.649898 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.649909 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.649919 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_unpin by 0x2876a300 on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437f80] now 0+0
2015-03-31 11:02:29.653428 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e70 follows 0 op update
2015-03-31 11:02:29.653430 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653438 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.653440 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.653456 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.653457 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653463 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653470 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.653472 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653482 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653502 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653508 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.653509 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653517 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653524 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653531 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653537 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653543 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653547 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653550 7fbe406af700  5 mds.0.log _submit_thread 5419722152~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.653554 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.653562 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.693054 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408195 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693075 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408195 cr=0x37d0780)
2015-03-31 11:02:29.693080 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408195 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693083 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408195 cr=0x37d0780) #1000006b2f1
2015-03-31 11:02:29.693085 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f1 snap head
2015-03-31 11:02:29.693087 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.693088 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.693104 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408195 cr=0x37d0780)
2015-03-31 11:02:29.693107 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693125 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693137 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693149 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.693160 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693175 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.693190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693200 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.693211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693222 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.693243 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.693252 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_pin by 0x2876a300 on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80] now 1+0
2015-03-31 11:02:29.693262 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693334 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693343 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693353 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.693361 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.693376 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408195 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693380 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408195 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693389 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.693393 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.693397 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.693400 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.693413 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408195 cr=0x37d0780)
2015-03-31 11:02:29.693431 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693461 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693492 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693514 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.693524 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.693534 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.693549 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.693559 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.693570 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_unpin by 0x2876a300 on [inode 1000006b2f1 [2,head] {#1000006b2f1 /test_small/small5/blarg10084} auth v178782 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437f80] now 0+0
2015-03-31 11:02:29.693606 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408196 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693623 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408196 cr=0x37d4100)
2015-03-31 11:02:29.693625 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408196 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693639 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408196 cr=0x37d4100) #1000006026a
2015-03-31 11:02:29.693640 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.693642 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.693643 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693657 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408196 cr=0x37d4100)
2015-03-31 11:02:29.693659 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693674 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693685 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693695 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693709 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.693723 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693733 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.693754 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693764 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.693775 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693804 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693818 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693828 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693837 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693847 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693858 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693868 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31536} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.693883 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408196 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693887 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408196 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.693897 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.693901 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.693904 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31537
2015-03-31 11:02:29.693906 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31537 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.693928 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408196 cr=0x37d4100)
2015-03-31 11:02:29.693935 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693961 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.693975 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693985 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.693994 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694005 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694026 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694036 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694045 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.694059 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.694069 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.694440 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408197 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.694463 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408197 cr=0x37d3200)
2015-03-31 11:02:29.694465 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408197 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.694471 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408197 cr=0x37d3200) #1000006026a
2015-03-31 11:02:29.694473 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.694474 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.694475 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694493 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408197 cr=0x37d3200)
2015-03-31 11:02:29.694496 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.694513 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.694523 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694534 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.694548 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:29.694563 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.694573 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:29.694584 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694594 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.694605 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.694619 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.694634 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.694644 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.694664 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694675 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694696 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694705 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694715 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:29.694725 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.694735 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x284694a0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:29.694737 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.716994 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.717000 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.717010 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.717015 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) mark_dirty [inode 1000006b2ec [2,head] /test_small/small5/blarg1008 auth v178771 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.717031 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1008)  mark_dirty [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178772 v=177754 ap=2+0 inode=0x3f4a0418 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0]
2015-03-31 11:02:29.717040 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178772 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 93=93+0) hs=94+1510,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178772
2015-03-31 11:02:29.717050 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) mark_dirty_parent
2015-03-31 11:02:29.717052 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295343 pv3295355 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 93=93+0) n(v1 rc2015-03-31 11:03:06.000000 94=93+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717068 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295343 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.717072 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295345 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295345
2015-03-31 11:02:29.717081 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178773 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 94=94+0) hs=94+1510,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178773
2015-03-31 11:02:29.717090 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295346 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382390+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295346
2015-03-31 11:02:29.717099 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ec [2,head] /test_small/small5/blarg1008 auth v178772 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4a0418]
2015-03-31 11:02:29.717110 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.717113 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27570 client_caps(grant ino 1000006b2ec 1851553 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.717136 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178772 ap=2+0 inode=0x3f4a0418 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0]
2015-03-31 11:02:29.717146 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408142 create #1000006026a/blarg1008 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.717159 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ec
2015-03-31 11:02:29.717162 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178772 ap=2+0 inode=0x3f4a0418 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0]
2015-03-31 11:02:29.717171 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178772 ap=2+0 inode=0x3f4a0418 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0]
2015-03-31 11:02:29.717177 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178772 ap=2+0 inode=0x3f4a0418 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0]
2015-03-31 11:02:29.717182 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1008) auth_unpin by 0x3ce9cf8 on [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178772 ap=1+0 inode=0x3f4a0418 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0] now 1+0
2015-03-31 11:02:29.717190 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178772 ap=1+0 inode=0x3f4a0418 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0]
2015-03-31 11:02:29.717196 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.717212 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178772 ap=1+0 inode=0x3f4a0418 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9ba0]
2015-03-31 11:02:29.717220 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295345 pv3295355 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 95=94+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717233 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295345 pv3295355 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 95=94+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717256 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295345 pv3295355 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 95=94+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717276 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408142 cr=0x60a8000)
2015-03-31 11:02:29.717284 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x24afad00 on [inode 1 [...2,head] / auth v53475 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:29.717300 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afad00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:29.717311 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1008) auth_unpin by 0x24afad00 on [dentry #1/test_small/small5/blarg1008 [2,head] auth (dn sync l=1) (dversion lock) v=178772 inode=0x3f4a0418 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce9ba0] now 0+0
2015-03-31 11:02:29.717329 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x24afad00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295346 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382390+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:29.717339 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x24afad00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178773 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 94=94+0) hs=94+1510,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:29.717348 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afad00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295345 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 95=94+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:29.717375 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.717377 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.717382 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.717383 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) mark_dirty [inode 1000006b2ed [2,head] /test_small/small5/blarg10080 auth v178773 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.717394 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10080)  mark_dirty [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178774 v=177756 ap=2+0 inode=0x3f4dde80 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80]
2015-03-31 11:02:29.717402 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178774 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 94=94+0) hs=95+1509,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178774
2015-03-31 11:02:29.717410 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) mark_dirty_parent
2015-03-31 11:02:29.717412 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295345 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 94=94+0) n(v1 rc2015-03-31 11:03:06.000000 95=94+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717424 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295345 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.717428 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295347 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382390+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295347
2015-03-31 11:02:29.717438 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178775 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 95=95+0) hs=95+1509,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178775
2015-03-31 11:02:29.717445 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295348 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382398=382391+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295348
2015-03-31 11:02:29.717454 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ed [2,head] /test_small/small5/blarg10080 auth v178774 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4dde80]
2015-03-31 11:02:29.717464 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.717467 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27571 client_caps(grant ino 1000006b2ed 1851554 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.717485 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178774 ap=2+0 inode=0x3f4dde80 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80]
2015-03-31 11:02:29.717493 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408152 create #1000006026a/blarg10080 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.717504 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ed
2015-03-31 11:02:29.717507 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178774 ap=2+0 inode=0x3f4dde80 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80]
2015-03-31 11:02:29.717515 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178774 ap=2+0 inode=0x3f4dde80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80]
2015-03-31 11:02:29.717521 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178774 ap=2+0 inode=0x3f4dde80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80]
2015-03-31 11:02:29.717525 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10080) auth_unpin by 0x3ce9ed8 on [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178774 ap=1+0 inode=0x3f4dde80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80] now 1+0
2015-03-31 11:02:29.717532 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178774 ap=1+0 inode=0x3f4dde80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80]
2015-03-31 11:02:29.717537 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.717551 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178774 ap=1+0 inode=0x3f4dde80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9d80]
2015-03-31 11:02:29.717558 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295347 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 96=95+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717571 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295347 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 96=95+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717582 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295347 pv3295355 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 96=95+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717602 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408152 cr=0x2bd65280)
2015-03-31 11:02:29.717609 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0xde87800 on [inode 1 [...2,head] / auth v53475 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:29.717626 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0xde87800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:29.717637 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10080) auth_unpin by 0xde87800 on [dentry #1/test_small/small5/blarg10080 [2,head] auth (dn sync l=1) (dversion lock) v=178774 inode=0x3f4dde80 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce9d80] now 0+0
2015-03-31 11:02:29.717643 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0xde87800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295348 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382398=382391+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:29.717654 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0xde87800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178775 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 95=95+0) hs=95+1509,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:29.717662 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0xde87800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295347 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 96=95+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:29.717689 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.717690 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.717695 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.717696 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) mark_dirty [inode 1000006b2ee [2,head] /test_small/small5/blarg10081 auth v178775 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.717707 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10081)  mark_dirty [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178776 v=177758 ap=2+0 inode=0x3f42c720 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60]
2015-03-31 11:02:29.717715 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178776 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 95=95+0) hs=96+1508,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178776
2015-03-31 11:02:29.717723 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) mark_dirty_parent
2015-03-31 11:02:29.717725 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295347 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 95=95+0) n(v1 rc2015-03-31 11:03:06.000000 96=95+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717738 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295347 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.717742 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295349 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382398=382391+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295349
2015-03-31 11:02:29.717752 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178777 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 96=96+0) hs=96+1508,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178777
2015-03-31 11:02:29.717759 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295350 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382399=382392+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295350
2015-03-31 11:02:29.717767 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ee [2,head] /test_small/small5/blarg10081 auth v178776 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f42c720]
2015-03-31 11:02:29.717778 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.717780 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27572 client_caps(grant ino 1000006b2ee 1851555 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.717818 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178776 ap=2+0 inode=0x3f42c720 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60]
2015-03-31 11:02:29.717826 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408162 create #1000006026a/blarg10081 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.717837 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ee
2015-03-31 11:02:29.717840 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178776 ap=2+0 inode=0x3f42c720 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60]
2015-03-31 11:02:29.717848 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178776 ap=2+0 inode=0x3f42c720 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60]
2015-03-31 11:02:29.717854 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178776 ap=2+0 inode=0x3f42c720 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60]
2015-03-31 11:02:29.717859 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10081) auth_unpin by 0x3cea0b8 on [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178776 ap=1+0 inode=0x3f42c720 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60] now 1+0
2015-03-31 11:02:29.717866 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178776 ap=1+0 inode=0x3f42c720 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60]
2015-03-31 11:02:29.717872 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.717886 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178776 ap=1+0 inode=0x3f42c720 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ce9f60]
2015-03-31 11:02:29.717893 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295349 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 97=96+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717906 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295349 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 97=96+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717918 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295349 pv3295355 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 97=96+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.717938 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408162 cr=0x6885780)
2015-03-31 11:02:29.717945 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28768f00 on [inode 1 [...2,head] / auth v53475 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:29.717962 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768f00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:29.717973 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10081) auth_unpin by 0x28768f00 on [dentry #1/test_small/small5/blarg10081 [2,head] auth (dn sync l=1) (dversion lock) v=178776 inode=0x3f42c720 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ce9f60] now 0+0
2015-03-31 11:02:29.717979 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28768f00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295350 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382399=382392+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:29.717990 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28768f00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178777 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 96=96+0) hs=96+1508,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:29.717998 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768f00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295349 pv3295355 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 97=96+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:29.718024 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.718026 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.718031 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.718032 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) mark_dirty [inode 1000006b2ef [2,head] /test_small/small5/blarg10082 auth v178777 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.718043 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10082)  mark_dirty [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178778 v=177760 ap=2+0 inode=0x3f3fb788 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140]
2015-03-31 11:02:29.718050 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178778 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 96=96+0) hs=97+1507,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178778
2015-03-31 11:02:29.718057 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) mark_dirty_parent
2015-03-31 11:02:29.718059 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295349 pv3295355 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 96=96+0) n(v1 rc2015-03-31 11:03:06.000000 97=96+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718071 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295349 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.718075 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295351 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382399=382392+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295351
2015-03-31 11:02:29.718084 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178779 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 97=97+0) hs=97+1507,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178779
2015-03-31 11:02:29.718092 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295352 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382400=382393+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295352
2015-03-31 11:02:29.718101 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ef [2,head] /test_small/small5/blarg10082 auth v178778 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3fb788]
2015-03-31 11:02:29.718111 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.718113 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27573 client_caps(grant ino 1000006b2ef 1851556 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.718132 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178778 ap=2+0 inode=0x3f3fb788 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140]
2015-03-31 11:02:29.718140 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408172 create #1000006026a/blarg10082 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.718150 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ef
2015-03-31 11:02:29.718152 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178778 ap=2+0 inode=0x3f3fb788 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140]
2015-03-31 11:02:29.718160 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178778 ap=2+0 inode=0x3f3fb788 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140]
2015-03-31 11:02:29.718166 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178778 ap=2+0 inode=0x3f3fb788 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140]
2015-03-31 11:02:29.718171 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10082) auth_unpin by 0x3cea298 on [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178778 ap=1+0 inode=0x3f3fb788 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140] now 1+0
2015-03-31 11:02:29.718177 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178778 ap=1+0 inode=0x3f3fb788 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140]
2015-03-31 11:02:29.718182 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.718196 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178778 ap=1+0 inode=0x3f3fb788 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea140]
2015-03-31 11:02:29.718202 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295351 pv3295355 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 98=97+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718215 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295351 pv3295355 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 98=97+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718227 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295351 pv3295355 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 98=97+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718246 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408172 cr=0x3b99900)
2015-03-31 11:02:29.718253 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28768500 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.718269 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768500 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.718280 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10082) auth_unpin by 0x28768500 on [dentry #1/test_small/small5/blarg10082 [2,head] auth (dn sync l=1) (dversion lock) v=178778 inode=0x3f3fb788 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3cea140] now 0+0
2015-03-31 11:02:29.718286 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28768500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295352 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382400=382393+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:29.718297 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28768500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178779 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 97=97+0) hs=97+1507,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:29.718304 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295351 pv3295355 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 98=97+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:29.718330 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.718332 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.718336 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.718337 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) mark_dirty [inode 1000006b2f0 [2,head] /test_small/small5/blarg10083 auth v178779 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.718348 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10083)  mark_dirty [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178780 v=177762 ap=2+0 inode=0x3f34ce40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320]
2015-03-31 11:02:29.718355 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178780 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 97=97+0) hs=98+1506,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178780
2015-03-31 11:02:29.718364 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) mark_dirty_parent
2015-03-31 11:02:29.718365 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295351 pv3295355 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 97=97+0) n(v1 rc2015-03-31 11:03:06.000000 98=97+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718377 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295351 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.718381 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295353 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382400=382393+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295353
2015-03-31 11:02:29.718391 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178781 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 98=98+0) hs=98+1506,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178781
2015-03-31 11:02:29.718398 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295354 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382401=382394+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295354
2015-03-31 11:02:29.718407 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f0 [2,head] /test_small/small5/blarg10083 auth v178780 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f34ce40]
2015-03-31 11:02:29.718417 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.718419 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27574 client_caps(grant ino 1000006b2f0 1851557 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.718438 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178780 ap=2+0 inode=0x3f34ce40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320]
2015-03-31 11:02:29.718446 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408182 create #1000006026a/blarg10083 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.718456 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f0
2015-03-31 11:02:29.718459 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178780 ap=2+0 inode=0x3f34ce40 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320]
2015-03-31 11:02:29.718467 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178780 ap=2+0 inode=0x3f34ce40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320]
2015-03-31 11:02:29.718473 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178780 ap=2+0 inode=0x3f34ce40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320]
2015-03-31 11:02:29.718478 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10083) auth_unpin by 0x3cea478 on [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178780 ap=1+0 inode=0x3f34ce40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320] now 1+0
2015-03-31 11:02:29.718483 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178780 ap=1+0 inode=0x3f34ce40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320]
2015-03-31 11:02:29.718489 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.718503 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178780 ap=1+0 inode=0x3f34ce40 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea320]
2015-03-31 11:02:29.718509 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295353 pv3295355 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 99=98+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718521 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295353 pv3295355 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 99=98+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718533 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295353 pv3295355 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 99=98+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718552 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408182 cr=0x43d4880)
2015-03-31 11:02:29.718559 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28768000 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.718575 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768000 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.718586 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10083) auth_unpin by 0x28768000 on [dentry #1/test_small/small5/blarg10083 [2,head] auth (dn sync l=1) (dversion lock) v=178780 inode=0x3f34ce40 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3cea320] now 0+0
2015-03-31 11:02:29.718592 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28768000 on [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295354 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382401=382394+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:29.718603 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28768000 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178781 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 98=98+0) hs=98+1506,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:29.718611 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295353 pv3295355 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 99=98+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.718637 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.718639 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.718643 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.718644 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) mark_dirty [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178781 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.718655 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10084)  mark_dirty [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178782 v=177764 ap=2+0 inode=0x3f437f80 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500]
2015-03-31 11:02:29.718662 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178782 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 98=98+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178782
2015-03-31 11:02:29.718671 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) mark_dirty_parent
2015-03-31 11:02:29.718672 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295353 pv3295355 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 98=98+0) n(v1 rc2015-03-31 11:03:06.000000 99=98+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718684 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295355 v=3295353 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.718688 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295355 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382401=382394+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295355
2015-03-31 11:02:29.718698 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178783 v=178783 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178783
2015-03-31 11:02:29.718706 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295356 v=3295356 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382402=382395+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295356
2015-03-31 11:02:29.718714 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.718724 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.718727 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27575 client_caps(grant ino 1000006b2f1 1851558 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.718745 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178782 ap=2+0 inode=0x3f437f80 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500]
2015-03-31 11:02:29.718753 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408192 create #1000006026a/blarg10084 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.718764 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f1
2015-03-31 11:02:29.718765 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178782 ap=2+0 inode=0x3f437f80 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500]
2015-03-31 11:02:29.718773 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178782 ap=2+0 inode=0x3f437f80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500]
2015-03-31 11:02:29.718779 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178782 ap=2+0 inode=0x3f437f80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500]
2015-03-31 11:02:29.718788 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10084) auth_unpin by 0x3cea658 on [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178782 ap=1+0 inode=0x3f437f80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500] now 1+0
2015-03-31 11:02:29.718794 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178782 ap=1+0 inode=0x3f437f80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500]
2015-03-31 11:02:29.718800 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.718815 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.718826 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178782 ap=1+0 inode=0x3f437f80 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea500]
2015-03-31 11:02:29.718832 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718845 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718856 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718868 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:29.718871 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.718882 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.718893 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:29.718894 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408197 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.718898 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408197 cr=0x37d3200) #1000006026a
2015-03-31 11:02:29.718900 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.718902 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.718903 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.718914 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408197 cr=0x37d3200)
2015-03-31 11:02:29.718917 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.718932 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.718943 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.718953 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.718967 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.718977 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.718987 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.719002 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.719013 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719034 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719054 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719064 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719073 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719083 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719093 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719103 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719113 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31537} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719130 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40408197 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.719135 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408197 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.719146 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.719149 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.719153 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31538
2015-03-31 11:02:29.719155 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31538 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.719180 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408197 cr=0x37d3200)
2015-03-31 11:02:29.719199 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.719214 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.719228 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.719238 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.719259 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719271 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719282 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719292 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719302 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719312 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719324 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719333 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719343 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719351 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719361 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a300 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.719387 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a300 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.719397 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.719424 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719436 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719446 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719457 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.719477 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408192 cr=0x5e8e180)
2015-03-31 11:02:29.719494 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25a00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.719521 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.719542 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10084) auth_unpin by 0x25c25a00 on [dentry #1/test_small/small5/blarg10084 [2,head] auth (dn sync l=1) (dversion lock) v=178782 inode=0x3f437f80 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3cea500] now 0+0
2015-03-31 11:02:29.719549 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x25c25a00 on [dir 10000000000 /test_small/ [2,head] auth v=3295356 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382402=382395+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:29.719560 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x25c25a00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178783 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:29.719568 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.719625 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e70 follows 0 op update
2015-03-31 11:02:29.719634 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719648 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.719650 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.719670 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.719671 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719678 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719686 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.719688 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719694 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719702 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719708 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.719709 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719716 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719723 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719729 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719735 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.719736 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.719737 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e70 [2,head] /test_small/small1/blarg10084 auth v136986 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99f510]
2015-03-31 11:02:29.719745 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.719762 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408198 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.719791 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408198 cr=0x37d1680)
2015-03-31 11:02:29.719793 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408198 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.719798 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408198 cr=0x37d1680) #1000006b2f1
2015-03-31 11:02:29.719800 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f1 snap head
2015-03-31 11:02:29.719801 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.719802 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.719816 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408198 cr=0x37d1680)
2015-03-31 11:02:29.719819 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.719835 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.719846 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.719857 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.719867 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.719891 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.719906 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.719916 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.719926 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.719936 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.719946 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f437f80]
2015-03-31 11:02:29.719965 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_pin by 0x2876c600 on [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f437f80] now 1+0
2015-03-31 11:02:29.719987 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720000 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720014 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720032 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720041 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720050 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.720057 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.720073 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408198 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720076 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408198 getattr Xs #1000006b2f1 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720087 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.720090 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.720094 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:29.720097 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.720110 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408198 cr=0x37d1680)
2015-03-31 11:02:29.720129 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720145 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720168 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720179 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720188 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.720230 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f437f80]
2015-03-31 11:02:29.720239 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.720254 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.720265 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:29.720275 7fbe462be700 10 mds.0.cache.ino(1000006b2f1) auth_unpin by 0x2876c600 on [inode 1000006b2f1 [2,head] /test_small/small5/blarg10084 auth v178782 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f437f80] now 0+0
2015-03-31 11:02:29.720313 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408199 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720331 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408199 cr=0x5412a80)
2015-03-31 11:02:29.720333 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408199 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720336 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408199 cr=0x5412a80) #1000006026a
2015-03-31 11:02:29.720338 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.720339 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.720340 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.720351 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408199 cr=0x5412a80)
2015-03-31 11:02:29.720354 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.720369 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.720378 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.720388 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.720403 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.720418 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.720428 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.720449 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.720458 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.720468 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720492 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720517 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720526 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720535 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720544 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720553 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720562 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31538} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720576 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408199 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720579 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408199 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720588 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.720590 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.720593 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31539
2015-03-31 11:02:29.720594 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31539 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.720606 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408199 cr=0x5412a80)
2015-03-31 11:02:29.720624 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720638 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720652 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720662 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.720672 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720681 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720701 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720722 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.720732 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.720746 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.720756 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.720795 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408200 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720812 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408200 cr=0x5416b80)
2015-03-31 11:02:29.720815 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408200 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.720819 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408200 cr=0x5416b80) #10000004e7c
2015-03-31 11:02:29.720820 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7c snap head
2015-03-31 11:02:29.720822 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.720823 7fbe462be700 10 mds.0.server ref is [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.720832 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408200 cr=0x5416b80)
2015-03-31 11:02:29.720835 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.720850 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.720861 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.720870 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.720876 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.720890 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.720904 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.720914 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.720925 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.720933 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.720943 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.720948 7fbe462be700 10 mds.0.cache.ino(10000004e7c) auth_pin by 0x2876c600 on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8] now 1+0
2015-03-31 11:02:29.720955 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.720993 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721013 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.721022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.721041 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721065 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721070 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721081 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408200 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721084 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408200 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721093 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.721095 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.721098 7fbe462be700 10 mds.0.cache.ino(10000004e7c) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.721100 7fbe462be700 10 mds.0.cache.ino(10000004e7c) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.721111 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408200 cr=0x5416b80)
2015-03-31 11:02:29.721129 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.721144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.721157 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721167 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721177 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.721185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.721194 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721211 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721218 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721224 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.721230 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.721244 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.721255 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.721264 7fbe462be700 10 mds.0.cache.ino(10000004e7c) auth_unpin by 0x2876c600 on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99ebd8] now 0+0
2015-03-31 11:02:29.721385 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408201 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721403 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408201 cr=0x45a4380)
2015-03-31 11:02:29.721405 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408201 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721408 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408201 cr=0x45a4380) #1000006026a
2015-03-31 11:02:29.721409 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.721411 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.721411 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.721424 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408201 cr=0x45a4380)
2015-03-31 11:02:29.721427 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.721442 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.721452 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.721462 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.721476 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.721500 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.721509 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.721520 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.721529 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.721539 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.721552 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.721566 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721576 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721586 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721595 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721605 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721615 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31539} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721630 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408201 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721644 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408201 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721665 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.721668 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.721672 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31540
2015-03-31 11:02:29.721674 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31540 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.721685 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408201 cr=0x45a4380)
2015-03-31 11:02:29.721703 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.721718 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.721731 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721741 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.721750 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721760 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721780 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721793 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.721802 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.721816 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.721826 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.721967 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408202 lookup #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721983 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408202 cr=0x45a2f80)
2015-03-31 11:02:29.721986 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408202 lookup #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.721988 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408202 cr=0x45a2f80) #1000006026a/blarg10085
2015-03-31 11:02:29.721990 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.721993 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10085 [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock) v=177766 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.722001 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.722002 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408202 lookup #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.722012 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.722022 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408202 cr=0x45a2f80)
2015-03-31 11:02:29.762060 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408203 lookup #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762081 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408203 cr=0x26d39680)
2015-03-31 11:02:29.762083 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408203 lookup #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762086 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408203 cr=0x26d39680) #1000006026a/blarg10085
2015-03-31 11:02:29.762088 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.762090 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10085 [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock) v=177766 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.762099 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.762101 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408203 lookup #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762111 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.762123 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408203 cr=0x26d39680)
2015-03-31 11:02:29.762155 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408204 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762173 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408204 cr=0x26d3bc00)
2015-03-31 11:02:29.762176 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408204 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762179 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408204 cr=0x26d3bc00) #1000006026a
2015-03-31 11:02:29.762180 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.762182 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.762183 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.762199 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408204 cr=0x26d3bc00)
2015-03-31 11:02:29.762202 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.762219 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.762229 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.762240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.762254 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.762269 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.762279 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.762290 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.762299 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.762310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.762324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.762349 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.762359 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.762369 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762379 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762389 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762398 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31540} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762414 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408204 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762429 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408204 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762449 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.762452 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.762456 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31541
2015-03-31 11:02:29.762459 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31541 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.762481 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408204 cr=0x26d3bc00)
2015-03-31 11:02:29.762500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.762516 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.762530 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.762541 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.762551 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762561 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762581 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762591 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762601 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.762615 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.762625 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.762659 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408205 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762678 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408205 cr=0xaeeeb80)
2015-03-31 11:02:29.762680 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408205 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762683 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408205 cr=0xaeeeb80) #1000006026a
2015-03-31 11:02:29.762685 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.762686 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.762687 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.762699 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408205 cr=0xaeeeb80)
2015-03-31 11:02:29.762701 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.762715 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.762725 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.762734 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.762749 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.762763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.762773 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.762790 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.762800 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.762836 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.762850 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.762874 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.762884 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.762893 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762902 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762911 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762920 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31541} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.762935 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408205 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762939 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408205 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.762948 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.762950 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.762953 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31542
2015-03-31 11:02:29.762955 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31542 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.762966 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408205 cr=0xaeeeb80)
2015-03-31 11:02:29.762984 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.763000 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.763014 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.763024 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.763034 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.763043 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.763064 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.763073 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.763094 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.763108 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.763119 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.763152 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408206 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.763170 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408206 cr=0xaee9180)
2015-03-31 11:02:29.763172 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408206 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.763175 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408206 cr=0xaee9180) #10000004e7c
2015-03-31 11:02:29.763177 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7c snap head
2015-03-31 11:02:29.763178 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.763180 7fbe462be700 10 mds.0.server ref is [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.763188 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408206 cr=0xaee9180)
2015-03-31 11:02:29.763191 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.763205 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.763215 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.763224 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.763231 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.763245 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.763260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.763269 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.763280 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.763289 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.763310 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.763316 7fbe462be700 10 mds.0.cache.ino(10000004e7c) auth_pin by 0x2876c600 on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8] now 1+0
2015-03-31 11:02:29.763323 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.763347 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.763360 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.763381 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.763390 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.763399 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.763407 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763413 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763419 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763425 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763436 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408206 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.763439 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408206 getattr Xs #10000004e7c 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.763447 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.763449 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.763452 7fbe462be700 10 mds.0.cache.ino(10000004e7c) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.763454 7fbe462be700 10 mds.0.cache.ino(10000004e7c) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.763465 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408206 cr=0xaee9180)
2015-03-31 11:02:29.763483 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.763498 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.763512 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.763522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.763531 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.763551 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.763560 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763566 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763573 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763579 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99ebd8]
2015-03-31 11:02:29.763585 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.763598 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.763609 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876c600 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.763617 7fbe462be700 10 mds.0.cache.ino(10000004e7c) auth_unpin by 0x2876c600 on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99ebd8] now 0+0
2015-03-31 11:02:29.763897 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408207 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.763913 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408207 cr=0xaee8f00)
2015-03-31 11:02:29.763916 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408207 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.763919 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408207 cr=0xaee8f00) #1000006026a
2015-03-31 11:02:29.763920 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.763922 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.763923 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.763936 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408207 cr=0xaee8f00)
2015-03-31 11:02:29.763938 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.763952 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.763961 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.763970 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.763983 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.763997 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.764007 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.764017 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764026 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.764036 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764050 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764064 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764074 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764084 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764093 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764103 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764112 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31542} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764127 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408207 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.764131 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408207 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.764142 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.764145 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.764159 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31543
2015-03-31 11:02:29.764161 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31543 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.764184 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408207 cr=0xaee8f00)
2015-03-31 11:02:29.764202 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764230 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764240 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764249 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31543} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764259 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31543} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764279 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31543} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764288 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31543} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764298 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.764311 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.764321 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31543} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.764562 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408208 create #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.764578 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408208 cr=0x49d2800)
2015-03-31 11:02:29.764581 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764593 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:29.764595 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764605 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.764606 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764616 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764626 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764635 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764644 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.764645 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408208 create #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.764648 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10085
2015-03-31 11:02:29.764649 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408208 cr=0x49d2800) #1000006026a/blarg10085
2015-03-31 11:02:29.764651 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10085
2015-03-31 11:02:29.764652 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.764653 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.764655 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178783 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.764662 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178783 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.764668 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10085 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178783 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.764678 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408208 cr=0x49d2800)
2015-03-31 11:02:29.764682 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.764697 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.764706 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock) v=177766 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764713 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764722 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.764736 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.764750 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.764758 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.764768 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock) v=177766 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764773 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10085) auth_pin by 0x2876c600 on [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock) v=177766 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0] now 1+0
2015-03-31 11:02:29.764779 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.764793 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.764803 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock) v=177766 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764809 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177766 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764824 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177766 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764829 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177766 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764834 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177766 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764849 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10085) auth_pin by 0x3cea838 on [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177766 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0] now 2+0
2015-03-31 11:02:29.764854 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2876c600) [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dn xlock x=1 by 0x2876c600) (dversion lock w=1 last_client=708310) v=177766 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.764860 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764874 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764888 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764901 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.764913 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764923 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764932 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764942 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.764951 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764960 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764969 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764978 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764988 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.764997 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765007 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765016 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765025 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765034 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765043 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765061 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f2 ([1000006b2f3~330], 816 left)
2015-03-31 11:02:29.765064 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.765066 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f2 [2,head] #1000006b2f2 auth v1 s=0 n() (iversion lock) 0x3f466a38]
2015-03-31 11:02:29.765070 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178784
2015-03-31 11:02:29.765071 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10085)  pre_dirty [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dn xlock x=1 by 0x2876c600) (dversion lock w=1 last_client=708310) pv=178784 v=177766 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.765078 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f466a38]
2015-03-31 11:02:29.765085 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2876c600 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178783 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:29.765094 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9a35e30
2015-03-31 11:02:29.765096 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178785
2015-03-31 11:02:29.765097 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178785 v=178783 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.765103 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178785 v=178783 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.765110 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f466a38]
2015-03-31 11:02:29.765115 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.765117 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765130 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295357
2015-03-31 11:02:29.765131 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295357 v=3295355 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.765136 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295357 (current v 3295355)
2015-03-31 11:02:29.765137 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178785 v=178783 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=99+1505,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.765143 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.765145 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2876c600 on [dir 10000000000 /test_small/ [2,head] auth v=3295356 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382402=382395+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:29.765154 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d7850
2015-03-31 11:02:29.765155 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295358
2015-03-31 11:02:29.765156 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765167 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765177 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765188 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.765189 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.723175 < 1, stopping
2015-03-31 11:02:29.765194 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765204 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.765207 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295357 v=3295355 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.765211 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31543} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765225 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f466a38]
2015-03-31 11:02:29.765232 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.765234 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f466a38]
2015-03-31 11:02:29.765242 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.765244 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765252 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765259 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765266 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765273 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765279 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765286 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765292 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765298 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765304 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765311 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765317 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765324 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765330 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765337 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f466a38]
2015-03-31 11:02:29.765347 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.765348 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.765350 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f466a38 tracedn 0x3cea6e0
2015-03-31 11:02:29.765352 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2876c600) [dentry #1/test_small/small5/blarg10085 [2,head] auth NULL (dn xlock x=1 by 0x2876c600) (dversion lock w=1 last_client=708310) pv=178784 v=177766 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea6e0]
2015-03-31 11:02:29.765359 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408208 create #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.765366 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.765369 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31544
2015-03-31 11:02:29.765371 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31544 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.765377 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.765379 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.765381 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) including xattrs version 0
2015-03-31 11:02:29.765416 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765444 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765457 7fbe406af700  5 mds.0.log _submit_thread 5419723011~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.765459 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765472 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765519 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765529 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765539 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765550 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765562 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765571 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765582 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765592 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765676 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408209 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.765696 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408209 cr=0x49d7300)
2015-03-31 11:02:29.765698 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408209 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.765702 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408209 cr=0x49d7300) #1000006026a
2015-03-31 11:02:29.765704 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.765705 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.765706 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765719 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408209 cr=0x49d7300)
2015-03-31 11:02:29.765722 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765737 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765747 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765758 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765772 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.765800 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765809 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.765820 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765830 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.765841 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765855 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.765868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765878 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.765888 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765899 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765909 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765919 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31544} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.765957 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408209 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.765960 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408209 getattr Xs #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.765970 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.765972 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.765977 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31545
2015-03-31 11:02:29.765978 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31545 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.765990 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408209 cr=0x49d7300)
2015-03-31 11:02:29.766008 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766023 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766047 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766057 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766067 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766088 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766098 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766108 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.766122 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.766131 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.766255 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408210 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.766273 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408210 cr=0x25e39e00)
2015-03-31 11:02:29.766276 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408210 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.766279 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408210 cr=0x25e39e00) #1000006b2f2
2015-03-31 11:02:29.766280 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f2 snap head
2015-03-31 11:02:29.766282 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.766283 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f466a38]
2015-03-31 11:02:29.766296 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408210 cr=0x25e39e00)
2015-03-31 11:02:29.766299 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766315 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766325 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766335 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f466a38]
2015-03-31 11:02:29.766345 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766369 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.766383 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766392 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.766403 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766412 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.766422 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f466a38]
2015-03-31 11:02:29.766431 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_pin by 0x28769900 on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f466a38] now 1+0
2015-03-31 11:02:29.766441 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766456 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766470 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766481 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766491 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766501 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766521 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.766542 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.766555 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408210 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.766559 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408210 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.766568 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.766570 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.766573 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.766576 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.766587 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408210 cr=0x25e39e00)
2015-03-31 11:02:29.766605 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766620 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.766634 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766644 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.766654 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766664 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.766684 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.766695 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.766705 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.766720 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.766730 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.766740 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_unpin by 0x28769900 on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f466a38] now 0+0
2015-03-31 11:02:29.806049 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408211 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.806070 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408211 cr=0x25e3d000)
2015-03-31 11:02:29.806073 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408211 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.806076 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408211 cr=0x25e3d000) #1000006b2f2
2015-03-31 11:02:29.806078 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f2 snap head
2015-03-31 11:02:29.806079 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.806080 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.806097 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408211 cr=0x25e3d000)
2015-03-31 11:02:29.806100 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806118 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806130 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806142 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.806152 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806167 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.806182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806191 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.806203 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806213 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.806224 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.806234 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_pin by 0x28769900 on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f466a38] now 1+0
2015-03-31 11:02:29.806245 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806260 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806276 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806297 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806339 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806349 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.806357 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.806372 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408211 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.806376 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408211 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.806386 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.806389 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.806394 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.806396 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.806409 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408211 cr=0x25e3d000)
2015-03-31 11:02:29.806427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806510 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.806520 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.806530 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.806545 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.806555 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.806566 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_unpin by 0x28769900 on [inode 1000006b2f2 [2,head] {#1000006b2f2 /test_small/small5/blarg10085} auth v178784 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f466a38] now 0+0
2015-03-31 11:02:29.806601 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408212 readdir #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.806616 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408212 cr=0x25e39680)
2015-03-31 11:02:29.806618 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408212 readdir #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.806621 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408212 cr=0x25e39680) #1000006026a
2015-03-31 11:02:29.806623 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.806624 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.806625 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806638 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408212 cr=0x25e39680)
2015-03-31 11:02:29.806641 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806656 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806666 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806676 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806689 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.806703 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806712 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.806723 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806733 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.806753 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806766 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.806797 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806806 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.806815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806824 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806834 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806843 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806853 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.806862 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.806872 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x23c086c0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:29.806874 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.809813 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7c follows 0 op update
2015-03-31 11:02:29.809816 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809826 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.809828 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.809847 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.809848 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809854 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809861 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.809863 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809875 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809894 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809901 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.809902 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809911 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809912 7fbe406af700  5 mds.0.log _submit_thread 5419724651~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.809918 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809923 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809928 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809934 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809939 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809946 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.809955 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.821170 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:29.821176 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:29.821186 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:29.821191 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) mark_dirty [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178783 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.821208 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10085)  mark_dirty [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178784 v=177766 ap=2+0 inode=0x3f466a38 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0]
2015-03-31 11:02:29.821216 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178785 v=178784 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 99=99+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178784
2015-03-31 11:02:29.821227 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) mark_dirty_parent
2015-03-31 11:02:29.821229 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295355 pv3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 99=99+0) n(v1 rc2015-03-31 11:03:06.000000 100=99+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.821244 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295357 v=3295355 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.821249 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295358 v=3295357 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382402=382395+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295357
2015-03-31 11:02:29.821260 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178785 v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178785
2015-03-31 11:02:29.821268 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295358 v=3295358 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295358
2015-03-31 11:02:29.821277 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.821288 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:29.821291 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27576 client_caps(grant ino 1000006b2f2 1851559 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:06.000000) v4
2015-03-31 11:02:29.821312 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178784 ap=2+0 inode=0x3f466a38 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0]
2015-03-31 11:02:29.821322 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408208 create #1000006026a/blarg10085 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.821334 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f2
2015-03-31 11:02:29.821338 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178784 ap=2+0 inode=0x3f466a38 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0]
2015-03-31 11:02:29.821346 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178784 ap=2+0 inode=0x3f466a38 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0]
2015-03-31 11:02:29.821353 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178784 ap=2+0 inode=0x3f466a38 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0]
2015-03-31 11:02:29.821358 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10085) auth_unpin by 0x3cea838 on [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178784 ap=1+0 inode=0x3f466a38 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0] now 1+0
2015-03-31 11:02:29.821365 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178784 ap=1+0 inode=0x3f466a38 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0]
2015-03-31 11:02:29.821372 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.821387 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.821399 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178784 ap=1+0 inode=0x3f466a38 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea6e0]
2015-03-31 11:02:29.821407 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.821420 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.821442 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.821453 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:29.821456 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:29.821467 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.821477 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:29.821479 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408212 readdir #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.821493 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408212 cr=0x25e39680) #1000006026a
2015-03-31 11:02:29.821495 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.821497 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.821498 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821508 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408212 cr=0x25e39680)
2015-03-31 11:02:29.821511 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.821527 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.821537 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821547 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.821561 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.821571 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821581 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.821601 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.821612 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821621 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821632 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821643 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821653 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31545} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.821669 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:29.821672 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178785 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.821681 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:29.821686 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:29.821691 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821695 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:29.821698 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821701 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:29.821703 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821707 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:29.821709 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821712 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:29.821714 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821717 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:29.821719 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821722 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.821723 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821726 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.821728 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821731 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.821733 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821736 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.821738 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821741 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.821742 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821745 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.821747 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821750 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:29.821752 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821755 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.821757 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821760 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.821762 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821765 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.821767 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821770 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.821771 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821774 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.821776 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821779 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.821781 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821799 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:29.821801 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821805 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.821806 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821809 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.821811 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821814 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.821816 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821819 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.821821 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821834 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.821836 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821838 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:29.821840 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821853 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.821855 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821858 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.821860 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821862 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.821864 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821867 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.821880 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821883 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.821884 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821887 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.821888 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821891 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:29.821892 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821895 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.821896 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821900 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.821902 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821904 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.821905 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821908 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.821909 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821912 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.821913 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821916 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:29.821917 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821920 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.821921 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821924 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.821925 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821928 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.821930 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821932 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.821934 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821936 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.821938 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821940 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.821942 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821945 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:29.821946 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821949 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.821950 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821953 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.821954 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821957 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.821958 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821961 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.821962 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821965 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:29.821966 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821969 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.821970 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821973 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.821974 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821977 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.821978 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821981 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.821982 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821985 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.821986 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821990 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:29.821991 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821994 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.821995 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.821998 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.821999 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822002 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.822004 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822006 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.822008 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822010 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.822012 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822014 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.822016 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822018 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:29.822020 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822022 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.822024 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822026 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.822028 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822030 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.822032 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822034 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.822036 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822038 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.822040 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822042 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.822044 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822046 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:29.822048 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822050 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.822052 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822055 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.822056 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822059 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.822061 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822063 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.822064 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822067 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:29.822068 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822071 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.822073 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822075 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.822076 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822079 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.822080 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822083 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:29.822084 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822087 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.822089 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822091 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.822093 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822095 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.822097 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822099 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.822101 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822103 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.822105 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822108 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.822109 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822112 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:29.822113 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822116 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.822117 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822120 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.822121 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822124 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.822125 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822128 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.822130 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822132 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.822134 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822136 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:29.822138 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822141 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.822142 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822145 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.822146 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822149 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.822150 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822153 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.822155 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822157 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.822159 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822161 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.822163 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822166 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.822167 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822211 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408212 readdir #1000006026a 2015-03-31 11:03:06.000000) v2 readdir num=100 bytes=27297 end=1 complete=1
2015-03-31 11:02:29.822216 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408212 readdir #1000006026a 2015-03-31 11:03:06.000000) v2 readdir num=100 end=1 complete=1
2015-03-31 11:02:29.822219 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408212 readdir #1000006026a 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.822228 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.822230 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.822233 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31546
2015-03-31 11:02:29.822235 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31546 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822247 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408212 cr=0x25e39680)
2015-03-31 11:02:29.822264 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.822280 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.822293 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.822303 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.822312 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822321 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822331 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822339 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822360 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822368 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822376 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28769900 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.822390 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.822401 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.822424 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822436 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822446 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822468 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822489 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408208 cr=0x49d2800)
2015-03-31 11:02:29.822497 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2876c600 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.822512 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876c600 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.822523 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10085) auth_unpin by 0x2876c600 on [dentry #1/test_small/small5/blarg10085 [2,head] auth (dn sync l=1) (dversion lock) v=178784 inode=0x3f466a38 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3cea6e0] now 0+0
2015-03-31 11:02:29.822531 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2876c600 on [dir 10000000000 /test_small/ [2,head] auth v=3295358 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:29.822542 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2876c600 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178785 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:29.822550 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876c600 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.822600 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408213 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.822630 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408213 cr=0x25e38500)
2015-03-31 11:02:29.822634 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408213 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.822638 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408213 cr=0x25e38500) #1000006b2f2
2015-03-31 11:02:29.822640 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f2 snap head
2015-03-31 11:02:29.822641 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.822643 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.822659 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408213 cr=0x25e38500)
2015-03-31 11:02:29.822662 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.822680 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.822691 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.822702 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.822712 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.822727 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.822742 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.822752 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.822763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.822773 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.822800 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.822819 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_pin by 0x28769e00 on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38] now 1+0
2015-03-31 11:02:29.822829 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.822855 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.822868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.822877 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.822886 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822895 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.822904 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.822913 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.822928 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408213 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.822932 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408213 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.822942 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.822944 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.822948 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:29.822950 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.822965 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408213 cr=0x25e38500)
2015-03-31 11:02:29.822984 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.823000 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.823014 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.823024 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.823035 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.823044 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.823065 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.823075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.823084 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.823099 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.823109 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:29.823119 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_unpin by 0x28769e00 on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38] now 0+0
2015-03-31 11:02:29.824326 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7c follows 0 op update
2015-03-31 11:02:29.824329 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824338 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.824340 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.824355 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.824356 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824363 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824371 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.824372 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824378 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824385 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824392 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.824393 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824399 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824405 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824410 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824416 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.824417 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.824418 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e7c [2,head] /test_small/small1/blarg10085 auth v136988 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ebd8]
2015-03-31 11:02:29.824425 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.864055 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408214 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.864077 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408214 cr=0x25e3b200)
2015-03-31 11:02:29.864081 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408214 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.864086 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408214 cr=0x25e3b200) #1000006b2f2
2015-03-31 11:02:29.864087 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f2 snap head
2015-03-31 11:02:29.864089 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.864090 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.864106 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408214 cr=0x25e3b200)
2015-03-31 11:02:29.864109 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.864127 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.864138 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.864149 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.864159 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.864173 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.864188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.864198 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.864210 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.864220 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.864240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38]
2015-03-31 11:02:29.864250 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_pin by 0x28769e00 on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38] now 1+0
2015-03-31 11:02:29.864259 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.864285 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.864310 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.864319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.864328 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.864337 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.864347 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.864355 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.864370 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408214 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.864374 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408214 getattr Xs #1000006b2f2 2015-03-31 11:03:06.000000) v2
2015-03-31 11:02:29.864384 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.864388 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.864393 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:29.864395 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.864408 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408214 cr=0x25e3b200)
2015-03-31 11:02:29.864427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.864443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.864457 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.864467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.864477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.864486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.864507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.864517 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f466a38]
2015-03-31 11:02:29.864526 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.864541 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.864551 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:29.864560 7fbe462be700 10 mds.0.cache.ino(1000006b2f2) auth_unpin by 0x28769e00 on [inode 1000006b2f2 [2,head] /test_small/small5/blarg10085 auth v178784 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f466a38] now 0+0
2015-03-31 11:02:29.864849 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408215 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.864867 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408215 cr=0x25e38280)
2015-03-31 11:02:29.864868 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408215 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.864871 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408215 cr=0x25e38280) #10000004e7d
2015-03-31 11:02:29.864873 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7d snap head
2015-03-31 11:02:29.864875 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.864876 7fbe462be700 10 mds.0.server ref is [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.864886 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408215 cr=0x25e38280)
2015-03-31 11:02:29.864888 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.864903 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.864913 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.864922 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.864927 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.864940 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.864954 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.864963 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.864974 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.864982 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28769e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.864991 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.864996 7fbe462be700 10 mds.0.cache.ino(10000004e7d) auth_pin by 0x28769e00 on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0] now 1+0
2015-03-31 11:02:29.865003 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.865017 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.865031 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.865041 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.865051 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.865059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.865068 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865075 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865082 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865088 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865114 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408215 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.865130 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408215 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.865140 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.865142 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.865145 7fbe462be700 10 mds.0.cache.ino(10000004e7d) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.865148 7fbe462be700 10 mds.0.cache.ino(10000004e7d) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.865159 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408215 cr=0x25e38280)
2015-03-31 11:02:29.865178 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.865192 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.865206 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.865216 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.865226 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.865234 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.865254 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865261 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865268 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865274 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.865279 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.865293 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.865304 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28769e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.865313 7fbe462be700 10 mds.0.cache.ino(10000004e7d) auth_unpin by 0x28769e00 on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99e2a0] now 0+0
2015-03-31 11:02:29.865675 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408216 lookup #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.865695 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408216 cr=0x51d9b80)
2015-03-31 11:02:29.865698 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408216 lookup #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.865701 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408216 cr=0x51d9b80) #1000006026a/blarg10086
2015-03-31 11:02:29.865703 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.865705 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10086 [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock) v=177768 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.865714 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.865715 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408216 lookup #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.865725 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.865738 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408216 cr=0x51d9b80)
2015-03-31 11:02:29.866215 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408217 lookup #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.866234 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408217 cr=0x51dd280)
2015-03-31 11:02:29.866236 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408217 lookup #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.866238 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408217 cr=0x51dd280) #1000006026a/blarg10086
2015-03-31 11:02:29.866240 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.866243 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10086 [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock) v=177768 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.866250 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.866251 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408217 lookup #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.866261 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.866273 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408217 cr=0x51dd280)
2015-03-31 11:02:29.866752 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408218 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.866773 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408218 cr=0x9ae4b00)
2015-03-31 11:02:29.866775 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408218 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.866779 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408218 cr=0x9ae4b00) #10000004e7d
2015-03-31 11:02:29.866780 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7d snap head
2015-03-31 11:02:29.866787 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.866788 7fbe462be700 10 mds.0.server ref is [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.866798 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408218 cr=0x9ae4b00)
2015-03-31 11:02:29.866801 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.866818 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.866830 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.866839 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.866845 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.866859 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.866874 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.866883 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.866894 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.866903 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28769e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.866912 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.866917 7fbe462be700 10 mds.0.cache.ino(10000004e7d) auth_pin by 0x28769e00 on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0] now 1+0
2015-03-31 11:02:29.866925 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.866939 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.866954 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.866975 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.866985 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.867005 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.867014 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867020 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867025 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867030 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867043 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408218 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.867047 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408218 getattr Xs #10000004e7d 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.867057 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.867060 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.867064 7fbe462be700 10 mds.0.cache.ino(10000004e7d) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.867067 7fbe462be700 10 mds.0.cache.ino(10000004e7d) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.867079 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408218 cr=0x9ae4b00)
2015-03-31 11:02:29.867098 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.867114 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.867128 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.867138 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.867148 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.867157 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.867177 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867184 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867190 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867196 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99e2a0]
2015-03-31 11:02:29.867202 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.867216 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.867227 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28769e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.867236 7fbe462be700 10 mds.0.cache.ino(10000004e7d) auth_unpin by 0x28769e00 on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99e2a0] now 0+0
2015-03-31 11:02:29.867537 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408219 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.867554 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408219 cr=0x9ae4380)
2015-03-31 11:02:29.867556 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408219 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.867559 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408219 cr=0x9ae4380) #1000006026a
2015-03-31 11:02:29.867561 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.867562 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.867563 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.867575 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408219 cr=0x9ae4380)
2015-03-31 11:02:29.867577 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.867592 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.867601 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.867611 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.867624 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.867638 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.867647 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.867658 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.867667 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:29.867677 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.867691 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.867705 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.867715 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.867725 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867735 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867745 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867755 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31546} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867771 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408219 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.867774 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408219 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.867800 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.867802 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.867806 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31547
2015-03-31 11:02:29.867820 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31547 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.867832 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408219 cr=0x9ae4380)
2015-03-31 11:02:29.867850 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.867865 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.867879 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.867889 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.867898 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31547} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867908 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31547} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867928 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31547} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867937 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+0 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31547} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.867947 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:29.867960 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:29.867971 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31547} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:29.868356 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408220 create #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.868374 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408220 cr=0xa253700)
2015-03-31 11:02:29.868377 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868394 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:29.868395 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868406 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.868407 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868418 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868428 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868438 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868447 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.868448 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408220 create #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.868451 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10086
2015-03-31 11:02:29.868452 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408220 cr=0xa253700) #1000006026a/blarg10086
2015-03-31 11:02:29.868454 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10086
2015-03-31 11:02:29.868455 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.868456 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.868457 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178785 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.868465 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178785 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.868471 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10086 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178785 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:29.868479 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408220 cr=0xa253700)
2015-03-31 11:02:29.868484 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.868500 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.868510 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock) v=177768 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868515 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868524 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:29.868538 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.868552 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:29.868562 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:29.868582 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock) v=177768 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868587 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10086) auth_pin by 0x28769e00 on [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock) v=177768 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0] now 1+0
2015-03-31 11:02:29.868605 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=0+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:29.868614 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.868624 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock) v=177768 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868628 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177768 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868633 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177768 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868636 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177768 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868642 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177768 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868647 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10086) auth_pin by 0x3ceaa18 on [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177768 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0] now 2+0
2015-03-31 11:02:29.868652 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28769e00) [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dn xlock x=1 by 0x28769e00) (dversion lock w=1 last_client=708310) v=177768 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868658 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.868672 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.868685 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.868697 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.868710 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.868719 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.868729 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.868737 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.868746 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868755 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868764 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868773 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868786 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868796 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868805 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868815 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868824 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868833 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868842 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868860 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f3 ([1000006b2f4~32f], 815 left)
2015-03-31 11:02:29.868863 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.868864 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f3 [2,head] #1000006b2f3 auth v1 s=0 n() (iversion lock) 0x3f4d8b88]
2015-03-31 11:02:29.868868 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178786
2015-03-31 11:02:29.868870 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10086)  pre_dirty [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dn xlock x=1 by 0x28769e00) (dversion lock w=1 last_client=708310) pv=178786 v=177768 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.868877 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4d8b88]
2015-03-31 11:02:29.868883 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28769e00 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:29.868892 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2694c4c0
2015-03-31 11:02:29.868894 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178787
2015-03-31 11:02:29.868895 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178787 v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.868901 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178787 v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.868908 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4d8b88]
2015-03-31 11:02:29.868914 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.868916 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868929 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295359
2015-03-31 11:02:29.868930 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295359 v=3295357 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.868934 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295359 (current v 3295357)
2015-03-31 11:02:29.868935 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178787 v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.868942 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.868944 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28769e00 on [dir 10000000000 /test_small/ [2,head] auth v=3295358 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:29.868953 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9324150
2015-03-31 11:02:29.868954 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295360
2015-03-31 11:02:29.868955 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.868966 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.868976 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.868986 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.868987 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.826973 < 1, stopping
2015-03-31 11:02:29.868991 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869001 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.869004 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295359 v=3295357 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.869008 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31547} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869022 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4d8b88]
2015-03-31 11:02:29.869028 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.869031 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869038 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.869040 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869047 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869053 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869060 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869066 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869073 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869079 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869085 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869091 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869097 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869104 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869110 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869117 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869123 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869129 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869139 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.869140 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.869142 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4d8b88 tracedn 0x3cea8c0
2015-03-31 11:02:29.869144 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28769e00) [dentry #1/test_small/small5/blarg10086 [2,head] auth NULL (dn xlock x=1 by 0x28769e00) (dversion lock w=1 last_client=708310) pv=178786 v=177768 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3cea8c0]
2015-03-31 11:02:29.869150 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408220 create #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.869158 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.869161 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31548
2015-03-31 11:02:29.869163 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31548 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.869168 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.869171 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.869173 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) including xattrs version 0
2015-03-31 11:02:29.869209 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869237 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869250 7fbe406af700  5 mds.0.log _submit_thread 5419725510~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.869252 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869265 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869279 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869301 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869312 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869322 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869332 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869344 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869356 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869366 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869377 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869386 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869647 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408221 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.869665 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408221 cr=0xa251180)
2015-03-31 11:02:29.869667 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408221 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.869670 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408221 cr=0xa251180) #1000006b2f3
2015-03-31 11:02:29.869672 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f3 snap head
2015-03-31 11:02:29.869674 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.869675 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869688 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408221 cr=0xa251180)
2015-03-31 11:02:29.869690 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869706 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869716 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869726 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869735 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869749 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.869763 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869772 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.869787 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869798 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.869808 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4d8b88]
2015-03-31 11:02:29.869818 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_pin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4d8b88] now 1+0
2015-03-31 11:02:29.869828 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869843 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.869857 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869868 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.869878 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869888 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.869914 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.869935 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.869950 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408221 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.869954 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408221 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.869963 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.869966 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.869970 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.869973 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.869984 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408221 cr=0xa251180)
2015-03-31 11:02:29.870003 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870018 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870032 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870041 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870051 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870061 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870082 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.870092 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.870102 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.870117 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.870127 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.870138 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_unpin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88] now 0+0
2015-03-31 11:02:29.870487 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408222 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.870508 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408222 cr=0xa256900)
2015-03-31 11:02:29.870510 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408222 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.870513 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408222 cr=0xa256900) #1000006b2f3
2015-03-31 11:02:29.870515 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f3 snap head
2015-03-31 11:02:29.870517 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.870518 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.870534 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408222 cr=0xa256900)
2015-03-31 11:02:29.870537 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870554 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870566 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870577 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.870588 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870602 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.870617 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870626 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.870638 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870648 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.870659 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.870669 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_pin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88] now 1+0
2015-03-31 11:02:29.870679 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870694 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870719 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870741 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870751 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870760 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870770 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.870779 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.870798 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408222 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.870802 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408222 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.870812 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.870815 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.870818 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.870820 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.870833 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408222 cr=0xa256900)
2015-03-31 11:02:29.870852 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870867 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.870881 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870892 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.870912 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870924 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.870934 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.870944 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.870954 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.870969 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.870980 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.870991 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_unpin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88] now 0+0
2015-03-31 11:02:29.874414 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7d follows 0 op update
2015-03-31 11:02:29.874417 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874425 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.874427 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.874442 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.874443 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874449 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874456 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.874458 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874469 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874488 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874494 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.874495 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874502 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874506 7fbe406af700  5 mds.0.log _submit_thread 5419727150~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.874509 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874514 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874519 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874526 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874532 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874539 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.874548 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.914053 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408223 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.914075 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408223 cr=0x3b08f00)
2015-03-31 11:02:29.914077 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408223 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.914081 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408223 cr=0x3b08f00) #1000006b2f3
2015-03-31 11:02:29.914083 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f3 snap head
2015-03-31 11:02:29.914084 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.914085 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.914102 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408223 cr=0x3b08f00)
2015-03-31 11:02:29.914105 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.914123 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.914135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.914147 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.914158 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.914173 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.914188 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.914198 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.914209 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.914221 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.914242 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.914251 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_pin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88] now 1+0
2015-03-31 11:02:29.914261 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.914276 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.914301 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.914312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.914321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.914332 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.914342 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.914351 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.914367 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408223 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.914371 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408223 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.914382 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.914385 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.914390 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:29.914393 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.914405 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408223 cr=0x3b08f00)
2015-03-31 11:02:29.914424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.914441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.914456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.914467 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.914477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.914489 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.914511 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.914522 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.914532 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.914547 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.914558 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.914570 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_unpin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88] now 0+0
2015-03-31 11:02:29.915816 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7d follows 0 op update
2015-03-31 11:02:29.915819 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915830 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.915832 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.915849 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.915850 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915858 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915866 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:29.915868 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915873 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915881 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915886 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:29.915887 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915895 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915901 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915908 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915914 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:29.915915 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:29.915916 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e7d [2,head] /test_small/small1/blarg10086 auth v136990 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99e2a0]
2015-03-31 11:02:29.915923 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.954977 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408224 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.954998 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408224 cr=0x3b0e180)
2015-03-31 11:02:29.955002 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408224 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.955006 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408224 cr=0x3b0e180) #1000006b2f3
2015-03-31 11:02:29.955007 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f3 snap head
2015-03-31 11:02:29.955009 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.955010 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.955026 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408224 cr=0x3b0e180)
2015-03-31 11:02:29.955029 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955048 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955060 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.955071 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.955082 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955097 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.955112 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955122 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.955134 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.955144 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.955166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:29.955176 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_pin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88] now 1+0
2015-03-31 11:02:29.955186 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955211 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955235 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955245 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955255 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.955264 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.955274 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.955283 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.955298 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408224 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.955302 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408224 getattr Xs #1000006b2f3 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.955312 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.955315 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.955319 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:29.955322 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.955335 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408224 cr=0x3b0e180)
2015-03-31 11:02:29.955353 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955369 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955383 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955393 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955404 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.955414 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.955435 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.955457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4d8b88]
2015-03-31 11:02:29.955467 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.955482 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.955492 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.955503 7fbe462be700 10 mds.0.cache.ino(1000006b2f3) auth_unpin by 0x28768a00 on [inode 1000006b2f3 [2,head] {#1000006b2f3 /test_small/small5/blarg10086} auth v178786 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4d8b88] now 0+0
2015-03-31 11:02:29.955671 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408225 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.955689 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408225 cr=0x237c1400)
2015-03-31 11:02:29.955691 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408225 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.955694 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408225 cr=0x237c1400) #10000004e6e
2015-03-31 11:02:29.955696 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6e snap head
2015-03-31 11:02:29.955698 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.955699 7fbe462be700 10 mds.0.server ref is [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.955718 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408225 cr=0x237c1400)
2015-03-31 11:02:29.955720 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955736 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955746 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.955755 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.955760 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955774 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.955794 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955802 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.955813 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.955822 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.955830 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.955835 7fbe462be700 10 mds.0.cache.ino(10000004e6e) auth_pin by 0x28768a00 on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99d968] now 1+0
2015-03-31 11:02:29.955843 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955857 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.955871 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955881 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.955891 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.955900 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.955910 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.955917 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.955933 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.955939 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.955963 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408225 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.955966 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408225 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.955976 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.955980 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.955984 7fbe462be700 10 mds.0.cache.ino(10000004e6e) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:29.955986 7fbe462be700 10 mds.0.cache.ino(10000004e6e) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.955998 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408225 cr=0x237c1400)
2015-03-31 11:02:29.956016 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.956031 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.956045 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.956055 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.956064 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.956073 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.956092 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.956099 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.956106 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.956112 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.956118 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.956133 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.956143 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.956152 7fbe462be700 10 mds.0.cache.ino(10000004e6e) auth_unpin by 0x28768a00 on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99d968] now 0+0
2015-03-31 11:02:29.956518 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408226 lookup #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.956537 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408226 cr=0x237c5780)
2015-03-31 11:02:29.956540 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408226 lookup #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.956543 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408226 cr=0x237c5780) #1000006026a/blarg10087
2015-03-31 11:02:29.956544 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.956547 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10087 [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock) v=177770 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.956555 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.956557 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408226 lookup #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.956567 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.956579 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408226 cr=0x237c5780)
2015-03-31 11:02:29.957041 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408227 lookup #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.957059 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408227 cr=0x237c5500)
2015-03-31 11:02:29.957061 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408227 lookup #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.957064 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408227 cr=0x237c5500) #1000006026a/blarg10087
2015-03-31 11:02:29.957066 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.957068 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10087 [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock) v=177770 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.957076 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:29.957078 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408227 lookup #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.957088 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.957100 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408227 cr=0x237c5500)
2015-03-31 11:02:29.957551 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408228 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.957571 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408228 cr=0x237c2300)
2015-03-31 11:02:29.957573 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408228 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.957576 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408228 cr=0x237c2300) #10000004e6e
2015-03-31 11:02:29.957578 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e6e snap head
2015-03-31 11:02:29.957579 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.957580 7fbe462be700 10 mds.0.server ref is [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.957592 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408228 cr=0x237c2300)
2015-03-31 11:02:29.957595 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.957612 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.957624 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.957633 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.957640 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.957653 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.957668 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.957677 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.957688 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:29.957697 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28768a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:29.957706 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.957712 7fbe462be700 10 mds.0.cache.ino(10000004e6e) auth_pin by 0x28768a00 on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d968] now 1+0
2015-03-31 11:02:29.957719 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.957734 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.957748 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.957759 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.957779 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.957804 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.957811 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.957818 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.957824 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.957829 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.957841 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408228 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.957845 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408228 getattr Xs #10000004e6e 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.957855 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.957858 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.957862 7fbe462be700 10 mds.0.cache.ino(10000004e6e) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:29.957865 7fbe462be700 10 mds.0.cache.ino(10000004e6e) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.957877 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408228 cr=0x237c2300)
2015-03-31 11:02:29.957896 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.957912 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.957926 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.957937 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.957947 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.957955 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:29.957975 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.957983 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.957989 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.957996 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99d968]
2015-03-31 11:02:29.958001 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.958015 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.958026 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28768a00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:29.958035 7fbe462be700 10 mds.0.cache.ino(10000004e6e) auth_unpin by 0x28768a00 on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99d968] now 0+0
2015-03-31 11:02:29.958412 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408229 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.958432 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408229 cr=0x237c6400)
2015-03-31 11:02:29.958434 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408229 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.958437 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408229 cr=0x237c6400) #1000006026a
2015-03-31 11:02:29.958439 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.958440 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.958442 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958459 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408229 cr=0x237c6400)
2015-03-31 11:02:29.958462 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.958479 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.958490 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958501 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.958515 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.958529 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.958539 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.958550 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958560 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.958571 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.958586 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.958600 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.958610 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.958620 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958641 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958662 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958672 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31548} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958687 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408229 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.958690 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408229 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.958700 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.958703 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.958708 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31549
2015-03-31 11:02:29.958710 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31549 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.958722 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408229 cr=0x237c6400)
2015-03-31 11:02:29.958741 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.958756 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.958770 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.958781 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.958795 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958806 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958827 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958837 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.958847 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:29.958861 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:29.958871 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:29.959261 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408230 create #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.959281 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408230 cr=0x4a0c100)
2015-03-31 11:02:29.959283 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408230 create #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.959285 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10087
2015-03-31 11:02:29.959286 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408230 cr=0x4a0c100) #1000006026a/blarg10087
2015-03-31 11:02:29.959289 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10087
2015-03-31 11:02:29.959290 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:29.959291 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.959293 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178787 v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.959302 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178787 v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.959309 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10087 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178787 v=178785 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.959319 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408230 cr=0x4a0c100)
2015-03-31 11:02:29.959324 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.959343 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959354 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock) v=177770 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959361 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959373 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.959387 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.959402 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959411 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.959422 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock) v=177770 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959427 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10087) auth_pin by 0x28768a00 on [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock) v=177770 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0] now 1+0
2015-03-31 11:02:29.959433 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=1+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959444 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.959455 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock) v=177770 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959461 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177770 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959467 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177770 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959471 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177770 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959487 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177770 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959491 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10087) auth_pin by 0x3ceabf8 on [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177770 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0] now 2+0
2015-03-31 11:02:29.959497 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28768a00) [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dn xlock x=1 by 0x28768a00) (dversion lock w=1 last_client=708310) v=177770 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959514 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.959528 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.959542 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.959554 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.959567 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959577 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959586 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959594 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959603 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959613 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959623 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959633 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959642 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959651 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959660 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959670 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959679 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959688 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959707 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f4 ([1000006b2f5~32e], 814 left)
2015-03-31 11:02:29.959709 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:29.959711 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f4 [2,head] #1000006b2f4 auth v1 s=0 n() (iversion lock) 0x3f448ad8]
2015-03-31 11:02:29.959715 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178788
2015-03-31 11:02:29.959716 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10087)  pre_dirty [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dn xlock x=1 by 0x28768a00) (dversion lock w=1 last_client=708310) pv=178788 v=177770 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.959723 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f448ad8]
2015-03-31 11:02:29.959729 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28768a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178788 v=178785 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:29.959738 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2694c360
2015-03-31 11:02:29.959740 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178789
2015-03-31 11:02:29.959742 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178789 v=178785 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.959748 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178789 v=178785 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.959754 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f448ad8]
2015-03-31 11:02:29.959759 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.959761 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295359 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959774 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295361
2015-03-31 11:02:29.959775 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295361 v=3295357 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.959779 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295361 (current v 3295357)
2015-03-31 11:02:29.959780 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178789 v=178785 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:29.959791 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:29.959793 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28768a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295361 v=3295358 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:29.959802 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x28ed21b0
2015-03-31 11:02:29.959803 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295362
2015-03-31 11:02:29.959804 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959815 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959825 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959835 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:29.959837 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.91782 < 1, stopping
2015-03-31 11:02:29.959841 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.959851 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:29.959854 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295361 v=3295357 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:29.959860 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31549} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.959872 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f448ad8]
2015-03-31 11:02:29.959879 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:29.959882 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959889 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.959891 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959898 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959905 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959911 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959918 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959925 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959930 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959937 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959943 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959949 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959955 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959962 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959968 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959974 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959981 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f448ad8]
2015-03-31 11:02:29.959991 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:29.959992 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:29.959994 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f448ad8 tracedn 0x3ceaaa0
2015-03-31 11:02:29.959996 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28768a00) [dentry #1/test_small/small5/blarg10087 [2,head] auth NULL (dn xlock x=1 by 0x28768a00) (dversion lock w=1 last_client=708310) pv=178788 v=177770 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceaaa0]
2015-03-31 11:02:29.960002 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408230 create #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.960008 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.960012 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31550
2015-03-31 11:02:29.960014 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31550 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.960019 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:29.960023 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:29.960025 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) including xattrs version 0
2015-03-31 11:02:29.960060 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960088 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960100 7fbe406af700  5 mds.0.log _submit_thread 5419728009~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:29.960104 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960117 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960131 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960153 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960164 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960174 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960185 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960196 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960218 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960229 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960239 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960526 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408231 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.960544 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408231 cr=0x968b480)
2015-03-31 11:02:29.960546 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408231 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.960549 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408231 cr=0x968b480) #1000006b2f4
2015-03-31 11:02:29.960551 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f4 snap head
2015-03-31 11:02:29.960552 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.960553 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f448ad8]
2015-03-31 11:02:29.960566 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408231 cr=0x968b480)
2015-03-31 11:02:29.960569 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960584 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960594 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960604 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f448ad8]
2015-03-31 11:02:29.960614 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960627 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.960642 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960651 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.960662 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960672 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.960682 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f448ad8]
2015-03-31 11:02:29.960691 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_pin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f448ad8] now 1+0
2015-03-31 11:02:29.960701 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960717 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960731 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960741 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960751 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960761 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960772 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.960811 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.960826 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408231 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.960830 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408231 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.960839 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.960842 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.960845 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:29.960849 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.960861 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408231 cr=0x968b480)
2015-03-31 11:02:29.960879 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960895 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.960909 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960919 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.960928 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960938 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.960959 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.960969 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.960979 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.960993 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.961004 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.961014 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_unpin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8] now 0+0
2015-03-31 11:02:29.961312 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408232 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.961329 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408232 cr=0x6883200)
2015-03-31 11:02:29.961332 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408232 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.961335 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408232 cr=0x6883200) #1000006b2f4
2015-03-31 11:02:29.961336 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f4 snap head
2015-03-31 11:02:29.961338 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:29.961339 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:29.961351 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408232 cr=0x6883200)
2015-03-31 11:02:29.961354 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.961369 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.961379 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.961390 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:29.961399 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.961413 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:29.961427 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.961435 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:29.961446 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.961456 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:29.961466 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:29.961475 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_pin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8] now 1+0
2015-03-31 11:02:29.961485 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.961500 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.961514 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.961524 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.961535 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.961545 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.961556 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.961576 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.961602 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408232 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.961606 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408232 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:29.961615 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:29.961617 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:29.961620 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:29.961624 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:29.961636 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408232 cr=0x6883200)
2015-03-31 11:02:29.961654 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.961669 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.961683 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.961693 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:29.961715 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.961725 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:29.961735 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.961746 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:29.961755 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:29.961770 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:29.961780 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:29.961794 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_unpin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8] now 0+0
2015-03-31 11:02:29.965723 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6e follows 0 op update
2015-03-31 11:02:29.965726 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965736 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:29.965738 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:29.965755 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:29.965756 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965763 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965771 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:29.965773 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965788 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965808 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965815 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:29.965816 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965825 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965825 7fbe406af700  5 mds.0.log _submit_thread 5419729649~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:29.965838 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965843 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965848 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965855 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965861 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965868 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:29.965878 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.005049 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408233 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.005071 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408233 cr=0x6883980)
2015-03-31 11:02:30.005075 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408233 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.005078 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408233 cr=0x6883980) #1000006b2f4
2015-03-31 11:02:30.005081 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f4 snap head
2015-03-31 11:02:30.005082 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.005083 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.005100 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408233 cr=0x6883980)
2015-03-31 11:02:30.005102 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.005120 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.005132 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.005145 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.005155 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.005170 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.005185 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.005195 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.005206 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.005217 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.005238 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.005246 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_pin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8] now 1+0
2015-03-31 11:02:30.005256 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.005281 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.005306 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.005316 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.005325 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.005335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.005344 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.005354 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.005368 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408233 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.005372 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408233 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.005383 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.005387 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.005390 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.005394 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.005406 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408233 cr=0x6883980)
2015-03-31 11:02:30.005425 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.005441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.005455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.005465 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.005476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.005486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.005507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.005518 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.005526 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.005541 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.005551 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.005562 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_unpin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8] now 0+0
2015-03-31 11:02:30.006829 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e6e follows 0 op update
2015-03-31 11:02:30.006832 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006844 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.006845 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.006864 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.006865 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006872 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006880 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.006882 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006887 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006894 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006900 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.006901 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006909 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006916 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006921 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006926 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.006928 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.006929 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e6e [2,head] /test_small/small1/blarg10087 auth v136992 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d968]
2015-03-31 11:02:30.006936 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.046025 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408234 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.046046 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408234 cr=0x6884880)
2015-03-31 11:02:30.046050 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408234 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.046054 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408234 cr=0x6884880) #1000006b2f4
2015-03-31 11:02:30.046055 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f4 snap head
2015-03-31 11:02:30.046057 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.046058 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.046074 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408234 cr=0x6884880)
2015-03-31 11:02:30.046077 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046094 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046106 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.046117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.046128 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046142 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.046156 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046166 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.046177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.046187 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.046198 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.046208 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_pin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8] now 1+0
2015-03-31 11:02:30.046218 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046233 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046248 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046258 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046280 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.046302 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.046311 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.046321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.046336 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408234 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.046339 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408234 getattr Xs #1000006b2f4 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.046349 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.046353 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.046357 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.046360 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.046373 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408234 cr=0x6884880)
2015-03-31 11:02:30.046392 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046407 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.046452 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.046474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.046485 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f448ad8]
2015-03-31 11:02:30.046494 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.046509 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.046519 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.046529 7fbe462be700 10 mds.0.cache.ino(1000006b2f4) auth_unpin by 0x2367f800 on [inode 1000006b2f4 [2,head] {#1000006b2f4 /test_small/small5/blarg10087} auth v178788 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f448ad8] now 0+0
2015-03-31 11:02:30.046817 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408235 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.046834 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408235 cr=0x2a508c80)
2015-03-31 11:02:30.046836 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408235 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.046839 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408235 cr=0x2a508c80) #10000004e71
2015-03-31 11:02:30.046841 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e71 snap head
2015-03-31 11:02:30.046843 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.046844 7fbe462be700 10 mds.0.server ref is [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.046853 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408235 cr=0x2a508c80)
2015-03-31 11:02:30.046856 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046871 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046881 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.046891 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.046897 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046911 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.046925 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.046934 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.046945 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.046954 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367f800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.046963 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.046969 7fbe462be700 10 mds.0.cache.ino(10000004e71) auth_pin by 0x2367f800 on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99d030] now 1+0
2015-03-31 11:02:30.046976 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.046991 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.047004 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.047015 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.047025 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.047034 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.047043 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047049 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047055 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047061 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047085 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408235 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.047088 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408235 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.047110 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.047113 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.047116 7fbe462be700 10 mds.0.cache.ino(10000004e71) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.047119 7fbe462be700 10 mds.0.cache.ino(10000004e71) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.047131 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408235 cr=0x2a508c80)
2015-03-31 11:02:30.047149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.047165 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.047179 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.047190 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.047200 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.047209 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.047229 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047236 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047243 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047249 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.047256 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.047270 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.047280 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367f800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.047289 7fbe462be700 10 mds.0.cache.ino(10000004e71) auth_unpin by 0x2367f800 on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99d030] now 0+0
2015-03-31 11:02:30.047598 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408236 lookup #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.047614 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408236 cr=0x9ae4d80)
2015-03-31 11:02:30.047617 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408236 lookup #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.047620 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408236 cr=0x9ae4d80) #1000006026a/blarg10088
2015-03-31 11:02:30.047621 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.047624 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10088 [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock) v=177772 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.047632 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.047634 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408236 lookup #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.047643 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.047653 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408236 cr=0x9ae4d80)
2015-03-31 11:02:30.048125 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408237 lookup #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.048144 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408237 cr=0x9ae3200)
2015-03-31 11:02:30.048146 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408237 lookup #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.048148 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408237 cr=0x9ae3200) #1000006026a/blarg10088
2015-03-31 11:02:30.048150 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.048153 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10088 [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock) v=177772 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.048161 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.048162 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408237 lookup #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.048172 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.048185 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408237 cr=0x9ae3200)
2015-03-31 11:02:30.048662 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408238 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.048683 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408238 cr=0x9ae7300)
2015-03-31 11:02:30.048685 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408238 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.048688 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408238 cr=0x9ae7300) #10000004e71
2015-03-31 11:02:30.048690 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e71 snap head
2015-03-31 11:02:30.048691 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.048692 7fbe462be700 10 mds.0.server ref is [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.048704 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408238 cr=0x9ae7300)
2015-03-31 11:02:30.048707 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.048724 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.048736 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.048745 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.048752 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.048766 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.048780 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.048801 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.048812 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.048821 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367f800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.048830 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.048835 7fbe462be700 10 mds.0.cache.ino(10000004e71) auth_pin by 0x2367f800 on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d030] now 1+0
2015-03-31 11:02:30.048841 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.048856 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.048869 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.048890 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.048911 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.048920 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.048928 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.048935 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.048939 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.048944 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.048957 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408238 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.048961 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408238 getattr Xs #10000004e71 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.048971 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.048973 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.048978 7fbe462be700 10 mds.0.cache.ino(10000004e71) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.048980 7fbe462be700 10 mds.0.cache.ino(10000004e71) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.048993 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408238 cr=0x9ae7300)
2015-03-31 11:02:30.049011 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049027 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049042 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049052 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049062 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.049071 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.049091 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.049097 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.049104 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.049110 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99d030]
2015-03-31 11:02:30.049117 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.049131 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.049142 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367f800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.049151 7fbe462be700 10 mds.0.cache.ino(10000004e71) auth_unpin by 0x2367f800 on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99d030] now 0+0
2015-03-31 11:02:30.049525 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408239 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.049546 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408239 cr=0x9ae3e80)
2015-03-31 11:02:30.049549 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408239 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.049552 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408239 cr=0x9ae3e80) #1000006026a
2015-03-31 11:02:30.049554 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.049555 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.049556 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049575 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408239 cr=0x9ae3e80)
2015-03-31 11:02:30.049578 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049594 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049605 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049616 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049630 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.049645 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049655 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.049666 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049676 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.049687 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049701 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049715 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049726 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049736 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049756 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049778 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049792 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31550} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049807 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408239 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.049810 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408239 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.049820 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.049825 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.049828 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31551
2015-03-31 11:02:30.049830 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31551 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.049843 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408239 cr=0x9ae3e80)
2015-03-31 11:02:30.049862 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049878 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.049892 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049902 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.049912 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049922 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049944 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049954 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.049964 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.049978 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.049987 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.050381 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408240 create #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.050401 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408240 cr=0x9f7c380)
2015-03-31 11:02:30.050403 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408240 create #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.050406 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10088
2015-03-31 11:02:30.050407 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408240 cr=0x9f7c380) #1000006026a/blarg10088
2015-03-31 11:02:30.050409 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10088
2015-03-31 11:02:30.050411 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.050412 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.050414 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178789 v=178785 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.050423 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178789 v=178785 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.050430 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10088 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178789 v=178785 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.050440 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408240 cr=0x9f7c380)
2015-03-31 11:02:30.050445 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.050464 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050475 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock) v=177772 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050482 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050494 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.050508 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367f800 on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.050523 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.050543 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock) v=177772 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050548 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10088) auth_pin by 0x2367f800 on [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock) v=177772 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80] now 1+0
2015-03-31 11:02:30.050554 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=2+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050564 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.050576 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock) v=177772 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050583 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177772 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050589 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177772 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050605 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177772 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050609 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177772 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050614 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10088) auth_pin by 0x3ceadd8 on [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177772 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80] now 2+0
2015-03-31 11:02:30.050632 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367f800) [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dn xlock x=1 by 0x2367f800) (dversion lock w=1 last_client=708310) v=177772 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050637 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.050652 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.050665 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.050678 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.050691 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050700 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050709 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050718 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050728 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050737 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050747 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050757 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050766 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050775 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050789 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050799 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050808 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050818 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050837 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f5 ([1000006b2f6~32d], 813 left)
2015-03-31 11:02:30.050839 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.050841 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f5 [2,head] #1000006b2f5 auth v1 s=0 n() (iversion lock) 0x3f3b8a28]
2015-03-31 11:02:30.050845 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178790
2015-03-31 11:02:30.050846 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10088)  pre_dirty [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dn xlock x=1 by 0x2367f800) (dversion lock w=1 last_client=708310) pv=178790 v=177772 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.050853 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3b8a28]
2015-03-31 11:02:30.050860 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367f800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178790 v=178785 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:30.050869 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9326bf0
2015-03-31 11:02:30.050871 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178791
2015-03-31 11:02:30.050872 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178791 v=178785 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.050879 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178791 v=178785 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.050886 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3b8a28]
2015-03-31 11:02:30.050892 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.050894 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295361 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050907 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295363
2015-03-31 11:02:30.050908 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295363 v=3295357 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.050912 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295363 (current v 3295357)
2015-03-31 11:02:30.050913 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178791 v=178785 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.050919 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.050921 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367f800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295363 v=3295358 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:30.050930 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2cc6fc70
2015-03-31 11:02:30.050931 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295364
2015-03-31 11:02:30.050932 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050943 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050953 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.050963 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.050965 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.00895 ago, continuing
2015-03-31 11:02:30.050968 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120426 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.050979 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120428
2015-03-31 11:02:30.050980 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120428 v=120426 ap=0+4 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:30.050983 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120428 (current v 120426)
2015-03-31 11:02:30.050985 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295364 v=3295358 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:30.050992 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.050993 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x2367f800 on [dir 1 / [2,head] auth v=120427 cv=119911/119911 dir_auth=0 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:06.000000 b422190196760 382413=382404+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 4
2015-03-31 11:02:30.051002 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x2cc6cf10
2015-03-31 11:02:30.051003 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120429
2015-03-31 11:02:30.051004 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051018 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051030 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051040 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.051041 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.91384 ago, continuing
2015-03-31 11:02:30.051043 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53475 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051061 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120428 v=120426 ap=0+4 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:30.051066 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051077 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295363 v=3295357 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.051080 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31551} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051093 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3b8a28]
2015-03-31 11:02:30.051099 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.051102 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051109 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.051111 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051119 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051125 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051132 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051139 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051145 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051152 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051157 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051163 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051169 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051175 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051182 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051188 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051195 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051201 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051211 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.051212 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.051213 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3b8a28 tracedn 0x3ceac80
2015-03-31 11:02:30.051215 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367f800) [dentry #1/test_small/small5/blarg10088 [2,head] auth NULL (dn xlock x=1 by 0x2367f800) (dversion lock w=1 last_client=708310) pv=178790 v=177772 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceac80]
2015-03-31 11:02:30.051222 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408240 create #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.051229 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.051232 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31552
2015-03-31 11:02:30.051234 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31552 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.051240 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.051242 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.051245 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) including xattrs version 0
2015-03-31 11:02:30.051280 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051309 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051328 7fbe406af700  5 mds.0.log _submit_thread 5419730508~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:30.051324 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051337 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051351 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051374 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051385 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051395 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051404 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051416 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051427 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051437 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051448 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051458 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051747 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408241 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.051767 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408241 cr=0x9f7d780)
2015-03-31 11:02:30.051769 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408241 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.051773 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408241 cr=0x9f7d780) #1000006b2f5
2015-03-31 11:02:30.051775 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f5 snap head
2015-03-31 11:02:30.051776 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.051777 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051792 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408241 cr=0x9f7d780)
2015-03-31 11:02:30.051795 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051811 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051821 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051831 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051841 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051855 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.051869 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051879 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.051890 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051900 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.051911 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3b8a28]
2015-03-31 11:02:30.051920 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_pin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3b8a28] now 1+0
2015-03-31 11:02:30.051930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051945 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.051959 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051970 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.051981 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.051991 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052018 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052039 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052053 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408241 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.052057 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408241 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.052066 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.052070 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.052074 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.052076 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.052088 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408241 cr=0x9f7d780)
2015-03-31 11:02:30.052107 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052123 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052137 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052148 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052158 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052168 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052190 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052200 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052210 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.052225 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.052236 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.052246 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_unpin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28] now 0+0
2015-03-31 11:02:30.052539 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408242 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.052557 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408242 cr=0x9f7a300)
2015-03-31 11:02:30.052559 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408242 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.052561 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408242 cr=0x9f7a300) #1000006b2f5
2015-03-31 11:02:30.052563 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f5 snap head
2015-03-31 11:02:30.052564 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.052565 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.052578 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408242 cr=0x9f7a300)
2015-03-31 11:02:30.052580 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052596 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052606 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052617 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.052626 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052640 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.052654 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052664 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.052674 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052684 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.052695 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.052704 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_pin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28] now 1+0
2015-03-31 11:02:30.052713 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052728 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052743 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052763 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052774 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052788 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052821 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052834 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408242 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.052838 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408242 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.052847 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.052850 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.052855 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.052857 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.052869 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408242 cr=0x9f7a300)
2015-03-31 11:02:30.052887 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052903 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.052917 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052928 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.052950 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052960 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.052970 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052981 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.052990 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.053005 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.053016 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.053026 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_unpin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28] now 0+0
2015-03-31 11:02:30.056636 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e71 follows 0 op update
2015-03-31 11:02:30.056639 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056647 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.056649 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.056666 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.056667 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056673 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056680 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.056682 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056691 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056711 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056717 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.056718 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056725 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056730 7fbe406af700  5 mds.0.log _submit_thread 5419733298~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.056732 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056738 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056743 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056750 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056756 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056762 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.056771 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.096027 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408243 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.096055 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408243 cr=0x9f79b80)
2015-03-31 11:02:30.096056 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408243 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.096059 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408243 cr=0x9f79b80) #1000006b2f5
2015-03-31 11:02:30.096061 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f5 snap head
2015-03-31 11:02:30.096063 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.096064 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.096079 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408243 cr=0x9f79b80)
2015-03-31 11:02:30.096082 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.096101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.096114 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.096126 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.096137 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.096152 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.096168 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.096179 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.096190 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.096200 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.096211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.096221 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_pin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28] now 1+0
2015-03-31 11:02:30.096231 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.096248 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.096263 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.096285 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.096306 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.096316 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.096326 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.096335 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.096352 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408243 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.096356 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408243 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.096367 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.096370 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.096375 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.096377 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.096390 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408243 cr=0x9f79b80)
2015-03-31 11:02:30.096409 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.096426 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.096441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.096452 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.096463 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.096473 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.096496 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.096507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.096517 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.096533 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.096543 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.096554 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_unpin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28] now 0+0
2015-03-31 11:02:30.097816 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e71 follows 0 op update
2015-03-31 11:02:30.097819 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097831 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.097833 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.097852 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.097853 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097860 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097869 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.097871 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097876 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097884 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097891 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.097892 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097899 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097906 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097911 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097916 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.097918 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.097919 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e71 [2,head] /test_small/small1/blarg10088 auth v136994 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99d030]
2015-03-31 11:02:30.097926 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.137031 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408244 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.137052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408244 cr=0x9f78f00)
2015-03-31 11:02:30.137057 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408244 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.137060 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408244 cr=0x9f78f00) #1000006b2f5
2015-03-31 11:02:30.137062 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f5 snap head
2015-03-31 11:02:30.137063 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.137064 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.137080 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408244 cr=0x9f78f00)
2015-03-31 11:02:30.137083 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137114 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.137125 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.137135 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137150 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.137165 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137175 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.137186 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.137196 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.137207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.137217 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_pin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28] now 1+0
2015-03-31 11:02:30.137227 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137242 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137257 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137268 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137290 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.137311 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.137321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.137330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.137345 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408244 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.137349 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408244 getattr Xs #1000006b2f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.137359 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.137362 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.137367 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.137369 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.137382 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408244 cr=0x9f78f00)
2015-03-31 11:02:30.137401 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137418 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137454 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.137464 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.137486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.137496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3b8a28]
2015-03-31 11:02:30.137506 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.137521 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.137532 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.137543 7fbe462be700 10 mds.0.cache.ino(1000006b2f5) auth_unpin by 0x23dd1900 on [inode 1000006b2f5 [2,head] {#1000006b2f5 /test_small/small5/blarg10088} auth v178790 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3b8a28] now 0+0
2015-03-31 11:02:30.137823 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408245 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.137840 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408245 cr=0x929cb00)
2015-03-31 11:02:30.137843 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408245 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.137846 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408245 cr=0x929cb00) #10000004e7b
2015-03-31 11:02:30.137848 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7b snap head
2015-03-31 11:02:30.137849 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.137850 7fbe462be700 10 mds.0.server ref is [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.137860 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408245 cr=0x929cb00)
2015-03-31 11:02:30.137862 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137878 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137889 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.137898 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.137903 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137917 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.137931 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.137941 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.137952 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.137960 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.137970 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.137975 7fbe462be700 10 mds.0.cache.ino(10000004e7b) auth_pin by 0x23dd1900 on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8] now 1+0
2015-03-31 11:02:30.137983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.137997 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.138012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.138022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.138033 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.138043 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.138052 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138065 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138082 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138108 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408245 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.138112 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408245 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.138121 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.138124 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.138127 7fbe462be700 10 mds.0.cache.ino(10000004e7b) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.138129 7fbe462be700 10 mds.0.cache.ino(10000004e7b) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.138141 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408245 cr=0x929cb00)
2015-03-31 11:02:30.138159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.138175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.138189 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.138199 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.138210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.138218 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.138239 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138246 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138253 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138258 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.138265 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.138279 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.138290 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.138299 7fbe462be700 10 mds.0.cache.ino(10000004e7b) auth_unpin by 0x23dd1900 on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99c6f8] now 0+0
2015-03-31 11:02:30.138664 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408246 lookup #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.138684 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408246 cr=0x9299900)
2015-03-31 11:02:30.138687 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408246 lookup #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.138689 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408246 cr=0x9299900) #1000006026a/blarg10089
2015-03-31 11:02:30.138691 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.138694 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10089 [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock) v=177774 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.138703 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.138704 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408246 lookup #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.138713 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.138725 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408246 cr=0x9299900)
2015-03-31 11:02:30.139200 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408247 lookup #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.139218 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408247 cr=0x929da00)
2015-03-31 11:02:30.139220 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408247 lookup #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.139223 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408247 cr=0x929da00) #1000006026a/blarg10089
2015-03-31 11:02:30.139225 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.139227 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10089 [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock) v=177774 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.139234 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.139235 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408247 lookup #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.139245 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.139256 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408247 cr=0x929da00)
2015-03-31 11:02:30.139730 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408248 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.139750 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408248 cr=0x9298a00)
2015-03-31 11:02:30.139752 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408248 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.139755 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408248 cr=0x9298a00) #10000004e7b
2015-03-31 11:02:30.139757 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7b snap head
2015-03-31 11:02:30.139759 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.139760 7fbe462be700 10 mds.0.server ref is [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.139771 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408248 cr=0x9298a00)
2015-03-31 11:02:30.139774 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.139799 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.139811 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.139821 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.139828 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.139842 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.139857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.139867 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.139878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.139887 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.139896 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.139902 7fbe462be700 10 mds.0.cache.ino(10000004e7b) auth_pin by 0x23dd1900 on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8] now 1+0
2015-03-31 11:02:30.139909 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.139924 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.139939 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.139960 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.139982 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.139991 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.139999 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140005 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140011 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140017 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140029 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408248 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.140033 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408248 getattr Xs #10000004e7b 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.140043 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.140046 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.140050 7fbe462be700 10 mds.0.cache.ino(10000004e7b) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.140052 7fbe462be700 10 mds.0.cache.ino(10000004e7b) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.140066 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408248 cr=0x9298a00)
2015-03-31 11:02:30.140084 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140100 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140115 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140126 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140136 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.140145 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.140165 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140172 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140179 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99c6f8]
2015-03-31 11:02:30.140191 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.140206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.140216 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd1900 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.140226 7fbe462be700 10 mds.0.cache.ino(10000004e7b) auth_unpin by 0x23dd1900 on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99c6f8] now 0+0
2015-03-31 11:02:30.140522 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408249 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.140539 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408249 cr=0x929e680)
2015-03-31 11:02:30.140543 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408249 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.140546 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408249 cr=0x929e680) #1000006026a
2015-03-31 11:02:30.140547 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.140549 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.140550 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140564 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408249 cr=0x929e680)
2015-03-31 11:02:30.140567 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140582 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140592 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140602 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140615 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.140629 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140638 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.140649 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140658 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.140669 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140683 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140697 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140708 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140718 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140728 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140739 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140749 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31552} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140765 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408249 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.140769 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408249 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.140808 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.140811 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.140814 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31553
2015-03-31 11:02:30.140816 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31553 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.140827 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408249 cr=0x929e680)
2015-03-31 11:02:30.140845 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140861 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.140875 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140885 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.140895 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140905 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140927 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140936 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.140946 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.140960 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.140970 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.141348 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408250 create #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.141367 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408250 cr=0x9299400)
2015-03-31 11:02:30.141369 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408250 create #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.141372 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10089
2015-03-31 11:02:30.141373 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408250 cr=0x9299400) #1000006026a/blarg10089
2015-03-31 11:02:30.141375 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10089
2015-03-31 11:02:30.141377 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.141378 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.141380 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178791 v=178785 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.141390 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178791 v=178785 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.141397 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10089 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178791 v=178785 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.141408 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408250 cr=0x9299400)
2015-03-31 11:02:30.141413 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.141433 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141445 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock) v=177774 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141452 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141463 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.141478 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd1900 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.141493 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141503 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.141514 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock) v=177774 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141519 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10089) auth_pin by 0x23dd1900 on [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock) v=177774 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60] now 1+0
2015-03-31 11:02:30.141525 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=3+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141535 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.141546 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock) v=177774 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141551 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177774 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141557 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177774 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141573 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177774 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141579 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177774 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141584 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10089) auth_pin by 0x3ceafb8 on [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177774 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60] now 2+0
2015-03-31 11:02:30.141601 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd1900) [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) v=177774 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141606 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.141621 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.141635 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.141648 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.141661 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141671 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141680 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141690 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141700 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141709 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141719 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141728 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141738 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141747 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141756 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141766 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141775 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141789 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141808 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f6 ([1000006b2f7~32c], 812 left)
2015-03-31 11:02:30.141811 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.141813 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f6 [2,head] #1000006b2f6 auth v1 s=0 n() (iversion lock) 0x3f4f61b0]
2015-03-31 11:02:30.141817 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178792
2015-03-31 11:02:30.141818 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10089)  pre_dirty [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) pv=178792 v=177774 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.141827 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4f61b0]
2015-03-31 11:02:30.141833 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd1900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178792 v=178785 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:30.141842 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9326670
2015-03-31 11:02:30.141844 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178793
2015-03-31 11:02:30.141845 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178793 v=178785 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.141851 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178793 v=178785 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.141858 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4f61b0]
2015-03-31 11:02:30.141864 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.141866 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295363 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141879 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295365
2015-03-31 11:02:30.141880 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295365 v=3295357 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.141884 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295365 (current v 3295357)
2015-03-31 11:02:30.141885 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178793 v=178785 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.141891 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.141893 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd1900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295365 v=3295358 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:30.141902 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9324830
2015-03-31 11:02:30.141903 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295366
2015-03-31 11:02:30.141904 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141916 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141926 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141937 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.141938 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.090973 < 1, stopping
2015-03-31 11:02:30.141942 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.141952 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.141956 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295365 v=3295357 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.141960 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31553} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.141972 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4f61b0]
2015-03-31 11:02:30.141979 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.141981 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.141988 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.141990 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.141998 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142005 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142011 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142018 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142025 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142031 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142038 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142044 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142049 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142055 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142062 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142069 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142075 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142081 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142091 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.142092 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.142094 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4f61b0 tracedn 0x3ceae60
2015-03-31 11:02:30.142096 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd1900) [dentry #1/test_small/small5/blarg10089 [2,head] auth NULL (dn xlock x=1 by 0x23dd1900) (dversion lock w=1 last_client=708310) pv=178792 v=177774 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceae60]
2015-03-31 11:02:30.142102 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408250 create #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.142110 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.142113 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31554
2015-03-31 11:02:30.142116 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31554 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.142121 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.142124 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.142127 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) including xattrs version 0
2015-03-31 11:02:30.142162 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142192 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142202 7fbe406af700  5 mds.0.log _submit_thread 5419734157~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.142208 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142221 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142247 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142259 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142270 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142280 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142290 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142301 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142313 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142323 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142334 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142344 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142626 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408251 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.142646 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408251 cr=0x929a300)
2015-03-31 11:02:30.142648 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408251 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.142651 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408251 cr=0x929a300) #1000006b2f6
2015-03-31 11:02:30.142653 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f6 snap head
2015-03-31 11:02:30.142655 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.142656 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142669 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408251 cr=0x929a300)
2015-03-31 11:02:30.142671 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142686 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142697 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142707 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142716 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142730 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.142745 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142755 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.142766 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142776 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.142790 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4f61b0]
2015-03-31 11:02:30.142800 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_pin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4f61b0] now 1+0
2015-03-31 11:02:30.142810 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142825 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142839 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142850 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.142861 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142871 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.142893 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.142913 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.142927 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408251 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.142931 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408251 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.142941 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.142943 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.142948 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.142950 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.142962 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408251 cr=0x929a300)
2015-03-31 11:02:30.142980 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.142996 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.143010 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143021 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143031 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143040 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143061 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.143072 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.143081 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.143096 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.143106 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.143117 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_unpin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0] now 0+0
2015-03-31 11:02:30.143404 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408252 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.143421 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408252 cr=0x2a509900)
2015-03-31 11:02:30.143424 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408252 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.143427 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408252 cr=0x2a509900) #1000006b2f6
2015-03-31 11:02:30.143428 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f6 snap head
2015-03-31 11:02:30.143430 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.143431 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.143442 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408252 cr=0x2a509900)
2015-03-31 11:02:30.143445 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.143460 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143471 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143481 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.143490 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.143505 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.143519 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143528 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.143539 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143549 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.143560 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.143569 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_pin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0] now 1+0
2015-03-31 11:02:30.143579 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.143594 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.143608 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143619 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143629 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143640 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143650 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.143670 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.143696 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408252 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.143700 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408252 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.143709 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.143713 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.143716 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.143719 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.143730 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408252 cr=0x2a509900)
2015-03-31 11:02:30.143749 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.143765 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.143779 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143793 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.143814 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143825 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.143835 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.143845 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.143854 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.143869 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.143879 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.143890 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_unpin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0] now 0+0
2015-03-31 11:02:30.147561 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7b follows 0 op update
2015-03-31 11:02:30.147564 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147572 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.147573 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.147590 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.147591 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147596 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147604 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.147606 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147616 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147635 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147641 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.147642 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147650 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147653 7fbe406af700  5 mds.0.log _submit_thread 5419735797~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.147656 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147662 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147668 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147674 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147680 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147686 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.147696 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.187029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408253 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.187050 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408253 cr=0x43d2800)
2015-03-31 11:02:30.187053 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408253 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.187056 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408253 cr=0x43d2800) #1000006b2f6
2015-03-31 11:02:30.187058 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f6 snap head
2015-03-31 11:02:30.187059 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.187060 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.187077 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408253 cr=0x43d2800)
2015-03-31 11:02:30.187080 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.187099 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.187111 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.187122 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.187133 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.187148 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.187163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.187173 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.187184 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.187195 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.187205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.187215 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_pin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0] now 1+0
2015-03-31 11:02:30.187225 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.187241 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.187256 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.187277 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.187288 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.187309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.187319 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.187328 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.187342 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408253 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.187346 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408253 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.187356 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.187359 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.187364 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.187366 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.187379 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408253 cr=0x43d2800)
2015-03-31 11:02:30.187397 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.187414 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.187429 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.187440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.187450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.187460 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.187482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.187493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.187503 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.187517 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.187528 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.187538 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_unpin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0] now 0+0
2015-03-31 11:02:30.188725 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7b follows 0 op update
2015-03-31 11:02:30.188728 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188740 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.188741 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.188760 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.188760 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188767 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188776 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.188777 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188789 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188797 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188802 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.188803 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188810 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188816 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188822 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188828 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.188829 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.188830 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e7b [2,head] /test_small/small1/blarg10089 auth v136996 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99c6f8]
2015-03-31 11:02:30.188837 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.228011 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408254 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.228032 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408254 cr=0x60aa300)
2015-03-31 11:02:30.228034 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408254 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.228037 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408254 cr=0x60aa300) #1000006b2f6
2015-03-31 11:02:30.228039 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f6 snap head
2015-03-31 11:02:30.228041 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.228042 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.228058 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408254 cr=0x60aa300)
2015-03-31 11:02:30.228060 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228078 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228091 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.228102 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.228112 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228127 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.228142 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228153 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.228165 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.228175 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.228186 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.228195 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_pin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0] now 1+0
2015-03-31 11:02:30.228205 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228221 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228236 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228247 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228269 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.228291 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.228300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.228309 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.228324 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408254 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.228328 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408254 getattr Xs #1000006b2f6 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.228338 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.228341 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.228345 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.228347 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.228360 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408254 cr=0x60aa300)
2015-03-31 11:02:30.228379 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228396 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228431 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.228441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.228463 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.228473 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4f61b0]
2015-03-31 11:02:30.228483 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.228499 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.228509 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.228520 7fbe462be700 10 mds.0.cache.ino(1000006b2f6) auth_unpin by 0x296a6e00 on [inode 1000006b2f6 [2,head] {#1000006b2f6 /test_small/small5/blarg10089} auth v178792 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4f61b0] now 0+0
2015-03-31 11:02:30.228817 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408255 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.228835 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408255 cr=0xb267080)
2015-03-31 11:02:30.228837 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408255 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.228839 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408255 cr=0xb267080) #100000003f5
2015-03-31 11:02:30.228841 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f5 snap head
2015-03-31 11:02:30.228843 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.228844 7fbe462be700 10 mds.0.server ref is [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.228854 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408255 cr=0xb267080)
2015-03-31 11:02:30.228857 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228872 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228883 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.228892 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.228898 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228912 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.228926 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.228936 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.228947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.228956 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.228965 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.228971 7fbe462be700 10 mds.0.cache.ino(100000003f5) auth_pin by 0x296a6e00 on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e995858] now 1+0
2015-03-31 11:02:30.228978 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.228992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.229007 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.229017 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.229028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.229037 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.229046 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229053 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229060 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229066 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229090 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408255 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.229106 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408255 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.229115 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.229118 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.229121 7fbe462be700 10 mds.0.cache.ino(100000003f5) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.229124 7fbe462be700 10 mds.0.cache.ino(100000003f5) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.229136 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408255 cr=0xb267080)
2015-03-31 11:02:30.229155 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.229170 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.229185 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.229196 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.229206 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.229215 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.229235 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229242 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229255 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.229260 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.229274 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.229285 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.229294 7fbe462be700 10 mds.0.cache.ino(100000003f5) auth_unpin by 0x296a6e00 on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e995858] now 0+0
2015-03-31 11:02:30.229590 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408256 lookup #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.229607 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408256 cr=0xb264880)
2015-03-31 11:02:30.229609 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408256 lookup #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.229611 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408256 cr=0xb264880) #1000006026a/blarg1009
2015-03-31 11:02:30.229613 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.229615 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1009 [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock) v=177776 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.229624 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.229625 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408256 lookup #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.229633 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.229643 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408256 cr=0xb264880)
2015-03-31 11:02:30.230115 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408257 lookup #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.230134 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408257 cr=0x25f4ee00)
2015-03-31 11:02:30.230136 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408257 lookup #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.230139 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408257 cr=0x25f4ee00) #1000006026a/blarg1009
2015-03-31 11:02:30.230140 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.230143 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg1009 [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock) v=177776 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.230151 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.230152 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408257 lookup #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.230162 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.230173 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408257 cr=0x25f4ee00)
2015-03-31 11:02:30.230653 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408258 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.230673 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408258 cr=0x26903700)
2015-03-31 11:02:30.230676 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408258 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.230679 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408258 cr=0x26903700) #100000003f5
2015-03-31 11:02:30.230681 7fbe462be700  7 mds.0.cache traverse: opening base ino 100000003f5 snap head
2015-03-31 11:02:30.230682 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.230683 7fbe462be700 10 mds.0.server ref is [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.230695 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408258 cr=0x26903700)
2015-03-31 11:02:30.230698 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.230715 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.230727 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.230737 7fbe462be700 10 mds.0.locker  must authpin [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.230743 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.230757 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.230772 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.230787 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.230799 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.230808 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.230817 7fbe462be700 10 mds.0.locker  auth_pinning [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.230824 7fbe462be700 10 mds.0.cache.ino(100000003f5) auth_pin by 0x296a6e00 on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e995858] now 1+0
2015-03-31 11:02:30.230831 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.230846 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.230860 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.230881 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.230903 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.230912 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.230920 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.230926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.230932 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.230937 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.230950 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408258 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.230954 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408258 getattr Xs #100000003f5 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.230964 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.230967 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.230971 7fbe462be700 10 mds.0.cache.ino(100000003f5) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.230974 7fbe462be700 10 mds.0.cache.ino(100000003f5) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.230986 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408258 cr=0x26903700)
2015-03-31 11:02:30.231005 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231021 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231036 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231047 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231057 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.231065 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.231086 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.231093 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.231100 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.231106 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e995858]
2015-03-31 11:02:30.231112 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.231126 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.231137 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x296a6e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.231146 7fbe462be700 10 mds.0.cache.ino(100000003f5) auth_unpin by 0x296a6e00 on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e995858] now 0+0
2015-03-31 11:02:30.231512 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408259 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.231532 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408259 cr=0x5410f00)
2015-03-31 11:02:30.231536 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408259 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.231539 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408259 cr=0x5410f00) #1000006026a
2015-03-31 11:02:30.231541 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.231542 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.231543 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231561 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408259 cr=0x5410f00)
2015-03-31 11:02:30.231564 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231581 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231592 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231603 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231617 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.231632 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231641 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.231652 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231662 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.231673 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231688 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231702 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231723 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231745 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231754 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231763 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231773 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31554} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231804 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408259 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.231808 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408259 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.231819 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.231822 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.231827 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31555
2015-03-31 11:02:30.231829 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31555 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.231842 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408259 cr=0x5410f00)
2015-03-31 11:02:30.231862 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231878 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.231894 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231904 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.231915 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231926 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231937 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231946 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.231956 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.231971 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.231981 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.232360 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408260 create #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.232380 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408260 cr=0x45a5c80)
2015-03-31 11:02:30.232383 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408260 create #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.232386 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg1009
2015-03-31 11:02:30.232387 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408260 cr=0x45a5c80) #1000006026a/blarg1009
2015-03-31 11:02:30.232389 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg1009
2015-03-31 11:02:30.232390 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.232392 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.232393 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178793 v=178785 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.232403 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178793 v=178785 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.232411 7fbe462be700 10 mds.0.server prepare_null_dentry blarg1009 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178793 v=178785 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.232422 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408260 cr=0x45a5c80)
2015-03-31 11:02:30.232427 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.232446 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232458 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock) v=177776 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232464 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232476 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.232490 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x296a6e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.232505 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232515 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.232526 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock) v=177776 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232531 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1009) auth_pin by 0x296a6e00 on [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock) v=177776 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040] now 1+0
2015-03-31 11:02:30.232537 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=4+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232548 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.232559 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock) v=177776 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232566 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177776 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232572 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177776 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232588 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177776 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232592 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177776 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232598 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1009) auth_pin by 0x3ceb198 on [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177776 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040] now 2+0
2015-03-31 11:02:30.232615 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x296a6e00) [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dn xlock x=1 by 0x296a6e00) (dversion lock w=1 last_client=708310) v=177776 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232620 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.232635 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.232649 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.232662 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.232674 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232684 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232694 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232703 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232712 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232722 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232732 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232740 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232749 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232759 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232768 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232777 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232790 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232799 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232816 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f7 ([1000006b2f8~32b], 811 left)
2015-03-31 11:02:30.232819 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.232821 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f7 [2,head] #1000006b2f7 auth v1 s=0 n() (iversion lock) 0x3f3dc5b8]
2015-03-31 11:02:30.232825 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178794
2015-03-31 11:02:30.232826 7fbe462be700 10 mds.0.cache.den(1000006026a blarg1009)  pre_dirty [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dn xlock x=1 by 0x296a6e00) (dversion lock w=1 last_client=708310) pv=178794 v=177776 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.232833 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3dc5b8]
2015-03-31 11:02:30.232840 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x296a6e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178794 v=178785 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:30.232849 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x29a8b5a0
2015-03-31 11:02:30.232851 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178795
2015-03-31 11:02:30.232852 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178795 v=178785 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.232858 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178795 v=178785 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.232865 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3dc5b8]
2015-03-31 11:02:30.232871 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.232873 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295365 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232886 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295367
2015-03-31 11:02:30.232887 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295367 v=3295357 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.232891 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295367 (current v 3295357)
2015-03-31 11:02:30.232892 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178795 v=178785 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.232898 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.232900 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x296a6e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295367 v=3295358 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:30.232909 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x28ed3d30
2015-03-31 11:02:30.232910 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295368
2015-03-31 11:02:30.232911 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232923 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232933 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232944 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.232945 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.181982 < 1, stopping
2015-03-31 11:02:30.232949 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.232959 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.232963 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295367 v=3295357 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.232967 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31555} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.232979 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3dc5b8]
2015-03-31 11:02:30.232984 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.232987 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.232995 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.232996 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233004 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233011 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233017 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233024 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233030 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233037 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233043 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233050 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233056 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233062 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233068 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233074 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233080 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233087 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233097 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.233098 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.233100 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3dc5b8 tracedn 0x3ceb040
2015-03-31 11:02:30.233102 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x296a6e00) [dentry #1/test_small/small5/blarg1009 [2,head] auth NULL (dn xlock x=1 by 0x296a6e00) (dversion lock w=1 last_client=708310) pv=178794 v=177776 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb040]
2015-03-31 11:02:30.233108 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408260 create #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.233116 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.233119 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31556
2015-03-31 11:02:30.233121 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31556 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.233126 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.233130 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.233132 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) including xattrs version 0
2015-03-31 11:02:30.233169 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233198 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233210 7fbe406af700  5 mds.0.log _submit_thread 5419736656~1619 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.233213 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233226 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233253 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233264 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233275 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233285 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233295 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233307 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233318 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233328 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233339 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233349 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233632 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408261 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.233651 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408261 cr=0x51da300)
2015-03-31 11:02:30.233653 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408261 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.233657 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408261 cr=0x51da300) #1000006b2f7
2015-03-31 11:02:30.233658 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f7 snap head
2015-03-31 11:02:30.233660 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.233661 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233674 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408261 cr=0x51da300)
2015-03-31 11:02:30.233676 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233692 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233703 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233713 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233722 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233736 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.233751 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233761 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.233771 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233781 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.233796 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3dc5b8]
2015-03-31 11:02:30.233805 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_pin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3dc5b8] now 1+0
2015-03-31 11:02:30.233815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233830 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.233845 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233856 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.233866 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233876 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.233903 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.233924 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.233938 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408261 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.233942 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408261 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.233952 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.233954 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.233959 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.233961 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.233973 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408261 cr=0x51da300)
2015-03-31 11:02:30.233992 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234008 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234022 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234032 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234043 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234052 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234074 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.234085 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.234094 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.234109 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.234120 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.234130 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_unpin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8] now 0+0
2015-03-31 11:02:30.234443 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408262 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.234460 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408262 cr=0xa250f00)
2015-03-31 11:02:30.234462 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408262 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.234465 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408262 cr=0xa250f00) #1000006b2f7
2015-03-31 11:02:30.234467 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f7 snap head
2015-03-31 11:02:30.234468 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.234469 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.234480 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408262 cr=0xa250f00)
2015-03-31 11:02:30.234483 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234498 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234509 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234520 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.234529 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234543 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.234557 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234567 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.234578 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234588 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.234598 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.234607 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_pin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8] now 1+0
2015-03-31 11:02:30.234617 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234632 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234647 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234658 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234668 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234678 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234699 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.234721 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.234735 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408262 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.234738 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408262 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.234748 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.234751 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.234755 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.234757 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.234769 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408262 cr=0xa250f00)
2015-03-31 11:02:30.234790 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234806 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.234821 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234831 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.234853 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234863 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.234873 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.234883 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.234893 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.234908 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.234918 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.234929 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_unpin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8] now 0+0
2015-03-31 11:02:30.238296 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f5 follows 0 op update
2015-03-31 11:02:30.238299 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238307 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.238309 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.238324 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.238325 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238331 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238339 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.238341 7fbe462be700 10 mds.0.locker  adding to open file list [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238350 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238370 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238377 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.238378 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238386 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238388 7fbe406af700  5 mds.0.log _submit_thread 5419738295~838 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.238393 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238399 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238404 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238410 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238415 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238421 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.238430 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.278112 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408263 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.278132 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408263 cr=0x9ae1b80)
2015-03-31 11:02:30.278137 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408263 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.278140 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408263 cr=0x9ae1b80) #1000006b2f7
2015-03-31 11:02:30.278142 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f7 snap head
2015-03-31 11:02:30.278144 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.278144 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.278161 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408263 cr=0x9ae1b80)
2015-03-31 11:02:30.278164 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.278181 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.278194 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.278205 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.278215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.278230 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.278245 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.278255 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.278266 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.278276 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.278287 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.278297 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_pin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8] now 1+0
2015-03-31 11:02:30.278307 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.278323 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.278338 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.278349 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.278382 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.278391 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.278401 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.278410 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.278425 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408263 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.278429 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408263 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.278439 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.278441 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.278446 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.278448 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.278461 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408263 cr=0x9ae1b80)
2015-03-31 11:02:30.278480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.278496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.278510 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.278521 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.278531 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.278541 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.278563 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.278573 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.278583 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.278598 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.278608 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.278619 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_unpin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8] now 0+0
2015-03-31 11:02:30.279842 7fbe462be700  7 mds.0.locker handle_client_caps on 100000003f5 follows 0 op update
2015-03-31 11:02:30.279846 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279857 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.279858 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.279877 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.279878 7fbe462be700 10 mds.0.locker   cap inode [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279885 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279892 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.279893 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279899 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279905 7fbe462be700 10 mds.0.locker eval 2496 [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279911 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.279912 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279919 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279926 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279932 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279938 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.279940 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.279941 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 100000003f5 [2,head] /test_small/small1/blarg1009 auth v59080 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e995858]
2015-03-31 11:02:30.279948 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.319024 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408264 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.319044 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408264 cr=0x9ae1400)
2015-03-31 11:02:30.319049 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408264 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.319052 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408264 cr=0x9ae1400) #1000006b2f7
2015-03-31 11:02:30.319054 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f7 snap head
2015-03-31 11:02:30.319056 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.319057 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.319074 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408264 cr=0x9ae1400)
2015-03-31 11:02:30.319077 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319094 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319106 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.319117 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.319128 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319142 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.319157 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319167 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.319178 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.319188 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.319199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.319208 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_pin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8] now 1+0
2015-03-31 11:02:30.319219 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319234 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319249 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319260 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319281 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.319303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.319312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.319321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.319335 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408264 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.319339 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408264 getattr Xs #1000006b2f7 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.319349 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.319353 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.319357 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.319359 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.319372 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408264 cr=0x9ae1400)
2015-03-31 11:02:30.319391 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319408 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319422 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319433 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319444 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.319454 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.319476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.319487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3dc5b8]
2015-03-31 11:02:30.319497 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.319512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.319523 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.319533 7fbe462be700 10 mds.0.cache.ino(1000006b2f7) auth_unpin by 0x2876a800 on [inode 1000006b2f7 [2,head] {#1000006b2f7 /test_small/small5/blarg1009} auth v178794 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3dc5b8] now 0+0
2015-03-31 11:02:30.319821 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408265 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.319839 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408265 cr=0x60a8500)
2015-03-31 11:02:30.319842 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408265 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.319844 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408265 cr=0x60a8500) #10000004e77
2015-03-31 11:02:30.319846 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e77 snap head
2015-03-31 11:02:30.319848 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.319849 7fbe462be700 10 mds.0.server ref is [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.319858 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408265 cr=0x60a8500)
2015-03-31 11:02:30.319861 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319876 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319887 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.319896 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.319902 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319916 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.319930 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.319940 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.319950 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.319959 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.319969 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.319974 7fbe462be700 10 mds.0.cache.ino(10000004e77) auth_pin by 0x2876a800 on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99b488] now 1+0
2015-03-31 11:02:30.319981 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.319995 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.320010 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.320021 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.320031 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.320040 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.320049 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320056 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320063 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320079 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320093 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408265 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.320109 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408265 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.320118 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.320121 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.320126 7fbe462be700 10 mds.0.cache.ino(10000004e77) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.320128 7fbe462be700 10 mds.0.cache.ino(10000004e77) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.320140 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408265 cr=0x60a8500)
2015-03-31 11:02:30.320158 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.320174 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.320188 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.320199 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.320209 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.320218 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.320239 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320246 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320253 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320259 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.320264 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.320279 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.320289 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.320298 7fbe462be700 10 mds.0.cache.ino(10000004e77) auth_unpin by 0x2876a800 on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99b488] now 0+0
2015-03-31 11:02:30.320664 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408266 lookup #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.320684 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408266 cr=0xaeeda00)
2015-03-31 11:02:30.320687 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408266 lookup #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.320690 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408266 cr=0xaeeda00) #1000006026a/blarg10090
2015-03-31 11:02:30.320693 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.320695 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10090 [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock) v=177778 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.320704 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.320705 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408266 lookup #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.320715 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.320727 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408266 cr=0xaeeda00)
2015-03-31 11:02:30.321206 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408267 lookup #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.321224 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408267 cr=0x9cc5c80)
2015-03-31 11:02:30.321226 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408267 lookup #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.321229 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408267 cr=0x9cc5c80) #1000006026a/blarg10090
2015-03-31 11:02:30.321231 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.321234 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10090 [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock) v=177778 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.321242 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.321243 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408267 lookup #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.321253 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.321265 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408267 cr=0x9cc5c80)
2015-03-31 11:02:30.321742 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408268 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.321763 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408268 cr=0xaee8a00)
2015-03-31 11:02:30.321765 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408268 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.321769 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408268 cr=0xaee8a00) #10000004e77
2015-03-31 11:02:30.321770 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e77 snap head
2015-03-31 11:02:30.321772 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.321773 7fbe462be700 10 mds.0.server ref is [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.321799 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408268 cr=0xaee8a00)
2015-03-31 11:02:30.321803 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.321821 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.321833 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.321842 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.321849 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.321864 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.321878 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.321889 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.321899 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.321908 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.321917 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.321923 7fbe462be700 10 mds.0.cache.ino(10000004e77) auth_pin by 0x2876a800 on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99b488] now 1+0
2015-03-31 11:02:30.321930 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.321946 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.321970 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.321993 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.322010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.322018 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322024 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322030 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322036 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322048 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408268 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.322052 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408268 getattr Xs #10000004e77 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.322062 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.322065 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.322068 7fbe462be700 10 mds.0.cache.ino(10000004e77) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.322070 7fbe462be700 10 mds.0.cache.ino(10000004e77) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.322083 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408268 cr=0xaee8a00)
2015-03-31 11:02:30.322102 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322118 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322133 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322154 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.322163 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.322183 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322190 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322197 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322203 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99b488]
2015-03-31 11:02:30.322208 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.322223 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.322234 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2876a800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.322243 7fbe462be700 10 mds.0.cache.ino(10000004e77) auth_unpin by 0x2876a800 on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99b488] now 0+0
2015-03-31 11:02:30.322539 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408269 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.322556 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408269 cr=0x5e8a080)
2015-03-31 11:02:30.322559 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408269 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.322562 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408269 cr=0x5e8a080) #1000006026a
2015-03-31 11:02:30.322563 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.322565 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.322566 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322580 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408269 cr=0x5e8a080)
2015-03-31 11:02:30.322583 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322597 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322608 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322618 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322632 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.322646 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322656 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.322667 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322676 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.322687 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322701 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322715 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322725 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322736 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322756 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322766 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31556} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322787 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408269 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.322806 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408269 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.322827 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.322830 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.322833 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31557
2015-03-31 11:02:30.322835 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31557 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.322847 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408269 cr=0x5e8a080)
2015-03-31 11:02:30.322865 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322881 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.322895 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322905 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.322915 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322925 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322946 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322955 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.322965 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.322980 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.322990 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.323381 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408270 create #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.323400 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408270 cr=0x26907080)
2015-03-31 11:02:30.323402 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408270 create #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.323405 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10090
2015-03-31 11:02:30.323407 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408270 cr=0x26907080) #1000006026a/blarg10090
2015-03-31 11:02:30.323409 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10090
2015-03-31 11:02:30.323410 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.323411 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.323413 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178795 v=178785 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.323423 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178795 v=178785 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.323431 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10090 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178795 v=178785 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.323442 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408270 cr=0x26907080)
2015-03-31 11:02:30.323447 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.323466 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323478 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock) v=177778 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323484 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323495 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.323510 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2876a800 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.323525 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323535 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.323546 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock) v=177778 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=0 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323551 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10090) auth_pin by 0x2876a800 on [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock) v=177778 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220] now 1+0
2015-03-31 11:02:30.323557 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=5+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323568 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.323580 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock) v=177778 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323585 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177778 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323590 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177778 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323605 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177778 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323610 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177778 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323614 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10090) auth_pin by 0x3ceb378 on [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177778 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220] now 2+0
2015-03-31 11:02:30.323632 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2876a800) [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) v=177778 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323638 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.323652 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.323666 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.323679 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.323692 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323702 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323711 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323721 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323731 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323740 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323750 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323760 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323769 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323778 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323792 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323802 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323811 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323820 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323839 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f8 ([1000006b2f9~32a], 810 left)
2015-03-31 11:02:30.323841 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.323843 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f8 [2,head] #1000006b2f8 auth v1 s=0 n() (iversion lock) 0x3f42d990]
2015-03-31 11:02:30.323847 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178796
2015-03-31 11:02:30.323848 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10090)  pre_dirty [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) pv=178796 v=177778 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.323855 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42d990]
2015-03-31 11:02:30.323861 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2876a800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178796 v=178785 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:30.323870 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc691e0
2015-03-31 11:02:30.323872 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178797
2015-03-31 11:02:30.323873 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178785 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.323879 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178785 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.323886 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42d990]
2015-03-31 11:02:30.323892 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.323894 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295367 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323907 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295369
2015-03-31 11:02:30.323908 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295357 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.323912 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295369 (current v 3295357)
2015-03-31 11:02:30.323913 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178785 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=100+1504,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.323920 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.323922 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2876a800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295369 v=3295358 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:30.323931 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x28ed5280
2015-03-31 11:02:30.323934 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295370
2015-03-31 11:02:30.323935 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323945 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323955 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.323965 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.323967 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.273002 < 1, stopping
2015-03-31 11:02:30.323971 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.323981 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.323984 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295357 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.323988 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31557} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324001 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f42d990]
2015-03-31 11:02:30.324007 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.324010 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f42d990]
2015-03-31 11:02:30.324016 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.324018 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324025 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324032 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324038 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324045 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324051 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324058 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324064 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324071 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324077 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324083 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324090 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324096 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324102 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324108 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42d990]
2015-03-31 11:02:30.324118 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.324119 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.324121 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f42d990 tracedn 0x3ceb220
2015-03-31 11:02:30.324123 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2876a800) [dentry #1/test_small/small5/blarg10090 [2,head] auth NULL (dn xlock x=1 by 0x2876a800) (dversion lock w=1 last_client=708310) pv=178796 v=177778 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 waiter=0 authpin=1 clientlease=0 0x3ceb220]
2015-03-31 11:02:30.324130 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408270 create #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.324137 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.324140 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31558
2015-03-31 11:02:30.324142 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31558 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.324148 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.324151 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.324154 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) including xattrs version 0
2015-03-31 11:02:30.324190 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324231 7fbe406af700  5 mds.0.log _submit_thread 5419739153~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.324235 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324249 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324287 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324298 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324309 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324319 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324331 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324342 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324353 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324363 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324373 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324634 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408271 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.324654 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408271 cr=0x236b9180)
2015-03-31 11:02:30.324656 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408271 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.324659 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408271 cr=0x236b9180) #1000006b2f8
2015-03-31 11:02:30.324661 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f8 snap head
2015-03-31 11:02:30.324662 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.324663 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f42d990]
2015-03-31 11:02:30.324676 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408271 cr=0x236b9180)
2015-03-31 11:02:30.324678 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324694 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324705 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324715 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42d990]
2015-03-31 11:02:30.324725 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324739 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.324754 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324763 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.324774 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324789 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.324800 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42d990]
2015-03-31 11:02:30.324809 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_pin by 0x23dd3700 on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42d990] now 1+0
2015-03-31 11:02:30.324819 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324835 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.324849 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324860 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.324870 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324881 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.324904 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.324925 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.324940 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408271 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.324944 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408271 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.324954 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.324957 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.324961 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.324964 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.324976 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408271 cr=0x236b9180)
2015-03-31 11:02:30.324994 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325010 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325024 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325034 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325054 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325076 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.325087 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.325096 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.325111 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.325122 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.325132 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_unpin by 0x23dd3700 on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42d990] now 0+0
2015-03-31 11:02:30.325445 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408272 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.325462 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408272 cr=0x968a580)
2015-03-31 11:02:30.325464 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408272 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.325467 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408272 cr=0x968a580) #1000006b2f8
2015-03-31 11:02:30.325469 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f8 snap head
2015-03-31 11:02:30.325470 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.325471 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.325484 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408272 cr=0x968a580)
2015-03-31 11:02:30.325486 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325501 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325512 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325522 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.325532 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325546 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.325561 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325571 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.325581 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325591 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.325602 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.325611 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_pin by 0x23dd3700 on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990] now 1+0
2015-03-31 11:02:30.325621 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325636 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325650 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325661 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325671 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325682 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325703 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.325724 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.325738 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408272 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.325741 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408272 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.325751 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.325753 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.325756 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.325759 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.325770 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408272 cr=0x968a580)
2015-03-31 11:02:30.325792 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325809 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.325823 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325833 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.325855 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325865 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.325875 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.325886 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.325895 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.325910 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.325921 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.325931 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_unpin by 0x23dd3700 on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42d990] now 0+0
2015-03-31 11:02:30.329760 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408273 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.329776 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408273 cr=0x25f49900)
2015-03-31 11:02:30.329779 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408273 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.329785 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408273 cr=0x25f49900) #1000006026a
2015-03-31 11:02:30.329787 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.329788 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.329789 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.329803 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408273 cr=0x25f49900)
2015-03-31 11:02:30.329805 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.329820 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.329830 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.329840 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.329853 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.329868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.329877 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.329888 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.329898 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.329908 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.329923 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.329937 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.329947 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.329957 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.329968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.329978 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.329988 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31558} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.330005 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408273 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.330009 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408273 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.330029 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.330045 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.330048 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31559
2015-03-31 11:02:30.330050 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31559 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.330061 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408273 cr=0x25f49900)
2015-03-31 11:02:30.330079 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.330095 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.330109 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.330119 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.330141 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.330151 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.330161 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.330171 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.330180 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.330206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.330216 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.330285 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e77 follows 0 op update
2015-03-31 11:02:30.330288 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330296 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.330298 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.330315 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.330316 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330322 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330330 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.330331 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330342 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330350 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330357 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.330358 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330367 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330374 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330375 7fbe406af700  5 mds.0.log _submit_thread 5419740793~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.330380 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330385 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330390 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330396 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330403 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.330412 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.370026 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408274 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.370046 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408274 cr=0x3b0e680)
2015-03-31 11:02:30.370051 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408274 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.370054 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408274 cr=0x3b0e680) #1000006b2f8
2015-03-31 11:02:30.370056 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f8 snap head
2015-03-31 11:02:30.370057 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.370058 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.370074 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408274 cr=0x3b0e680)
2015-03-31 11:02:30.370077 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370095 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370107 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370118 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.370128 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370143 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.370158 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370168 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.370179 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370189 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.370200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.370209 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_pin by 0x23dd3700 on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990] now 1+0
2015-03-31 11:02:30.370219 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370234 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370249 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370260 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370281 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370303 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.370312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.370326 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408274 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.370330 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408274 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.370340 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.370343 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.370347 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.370350 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.370363 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408274 cr=0x3b0e680)
2015-03-31 11:02:30.370381 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370397 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370412 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370422 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370465 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.370475 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.370484 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.370499 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.370510 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.370521 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_unpin by 0x23dd3700 on [inode 1000006b2f8 [2,head] {#1000006b2f8 /test_small/small5/blarg10090} auth v178796 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42d990] now 0+0
2015-03-31 11:02:30.370557 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408275 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.370590 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408275 cr=0x968af80)
2015-03-31 11:02:30.370592 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408275 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.370595 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408275 cr=0x968af80) #1000006026a
2015-03-31 11:02:30.370597 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.370599 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.370600 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370614 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408275 cr=0x968af80)
2015-03-31 11:02:30.370618 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370633 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370644 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370654 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370668 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd3700 on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.370683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370703 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.370714 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370724 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.370744 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370758 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.370771 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370781 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.370798 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370809 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370818 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370828 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370838 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:30.370861 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.370871 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x29408a50 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:30.370873 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.371734 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e77 follows 0 op update
2015-03-31 11:02:30.371737 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371746 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.371748 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53475 pv53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.371765 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.371766 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371773 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371785 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.371787 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371793 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371800 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371805 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.371806 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371813 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371820 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371825 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371831 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.371832 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.371833 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e77 [2,head] /test_small/small1/blarg10090 auth v136998 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99b488]
2015-03-31 11:02:30.371840 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.385201 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:30.385207 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:30.385217 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:30.385222 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f3) mark_dirty [inode 1000006b2f3 [2,head] /test_small/small5/blarg10086 auth v178785 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:30.385238 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10086)  mark_dirty [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178786 v=177768 ap=2+0 inode=0x3f4d8b88 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0]
2015-03-31 11:02:30.385247 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178786 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 100=100+0) hs=101+1503,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178786
2015-03-31 11:02:30.385258 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f3) mark_dirty_parent
2015-03-31 11:02:30.385260 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295357 pv3295369 ap=8+1 f(v0 m2015-03-31 11:03:06.000000 100=100+0) n(v1 rc2015-03-31 11:03:06.000000 101=100+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385275 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295357 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.385279 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295359 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382403=382396+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295359
2015-03-31 11:02:30.385290 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178787 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 101=101+0) hs=101+1503,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178787
2015-03-31 11:02:30.385298 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295360 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382404=382397+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295360
2015-03-31 11:02:30.385308 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f3 [2,head] /test_small/small5/blarg10086 auth v178786 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4d8b88]
2015-03-31 11:02:30.385318 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:30.385321 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27577 client_caps(grant ino 1000006b2f3 1851560 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:30.385343 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178786 ap=2+0 inode=0x3f4d8b88 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0]
2015-03-31 11:02:30.385352 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408220 create #1000006026a/blarg10086 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.385364 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f3
2015-03-31 11:02:30.385368 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178786 ap=2+0 inode=0x3f4d8b88 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0]
2015-03-31 11:02:30.385377 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178786 ap=2+0 inode=0x3f4d8b88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0]
2015-03-31 11:02:30.385383 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178786 ap=2+0 inode=0x3f4d8b88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0]
2015-03-31 11:02:30.385388 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10086) auth_unpin by 0x3ceaa18 on [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178786 ap=1+0 inode=0x3f4d8b88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0] now 1+0
2015-03-31 11:02:30.385394 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178786 ap=1+0 inode=0x3f4d8b88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0]
2015-03-31 11:02:30.385400 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.385416 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178786 ap=1+0 inode=0x3f4d8b88 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3cea8c0]
2015-03-31 11:02:30.385423 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295359 pv3295369 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 102=101+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385436 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295359 pv3295369 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 102=101+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385459 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295359 pv3295369 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 102=101+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385478 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408220 cr=0xa253700)
2015-03-31 11:02:30.385486 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28769e00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.385503 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28769e00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.385515 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10086) auth_unpin by 0x28769e00 on [dentry #1/test_small/small5/blarg10086 [2,head] auth (dn sync l=1) (dversion lock) v=178786 inode=0x3f4d8b88 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3cea8c0] now 0+0
2015-03-31 11:02:30.385522 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28769e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295360 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382404=382397+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:30.385544 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28769e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178787 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 101=101+0) hs=101+1503,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:30.385552 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28769e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295359 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 102=101+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.385581 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:30.385583 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:30.385588 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:30.385589 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f4) mark_dirty [inode 1000006b2f4 [2,head] /test_small/small5/blarg10087 auth v178787 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.385600 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10087)  mark_dirty [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178788 v=177770 ap=2+0 inode=0x3f448ad8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0]
2015-03-31 11:02:30.385608 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178788 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 101=101+0) hs=102+1502,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178788
2015-03-31 11:02:30.385617 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f4) mark_dirty_parent
2015-03-31 11:02:30.385618 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295359 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 101=101+0) n(v1 rc2015-03-31 11:03:07.000000 102=101+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385631 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295359 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.385636 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295361 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382404=382397+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295361
2015-03-31 11:02:30.385645 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178789 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 102=102+0) hs=102+1502,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178789
2015-03-31 11:02:30.385652 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295362 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382405=382398+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295362
2015-03-31 11:02:30.385661 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f4 [2,head] /test_small/small5/blarg10087 auth v178788 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f448ad8]
2015-03-31 11:02:30.385671 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:30.385673 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27578 client_caps(grant ino 1000006b2f4 1851561 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:30.385693 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178788 ap=2+0 inode=0x3f448ad8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0]
2015-03-31 11:02:30.385701 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408230 create #1000006026a/blarg10087 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.385712 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f4
2015-03-31 11:02:30.385715 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178788 ap=2+0 inode=0x3f448ad8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0]
2015-03-31 11:02:30.385723 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178788 ap=2+0 inode=0x3f448ad8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0]
2015-03-31 11:02:30.385730 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178788 ap=2+0 inode=0x3f448ad8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0]
2015-03-31 11:02:30.385734 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10087) auth_unpin by 0x3ceabf8 on [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178788 ap=1+0 inode=0x3f448ad8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0] now 1+0
2015-03-31 11:02:30.385741 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178788 ap=1+0 inode=0x3f448ad8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0]
2015-03-31 11:02:30.385746 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.385760 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178788 ap=1+0 inode=0x3f448ad8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceaaa0]
2015-03-31 11:02:30.385766 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295361 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 103=102+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385778 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295361 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 103=102+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385802 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295361 pv3295369 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 103=102+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385822 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408230 cr=0x4a0c100)
2015-03-31 11:02:30.385830 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28768a00 on [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.385847 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28768a00 on [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.385858 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10087) auth_unpin by 0x28768a00 on [dentry #1/test_small/small5/blarg10087 [2,head] auth (dn sync l=1) (dversion lock) v=178788 inode=0x3f448ad8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ceaaa0] now 0+0
2015-03-31 11:02:30.385864 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28768a00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295362 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382405=382398+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:30.385875 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28768a00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178789 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 102=102+0) hs=102+1502,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:30.385883 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28768a00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295361 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 103=102+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.385909 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:30.385911 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:30.385916 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:30.385917 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f5) mark_dirty [inode 1000006b2f5 [2,head] /test_small/small5/blarg10088 auth v178789 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.385928 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10088)  mark_dirty [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178790 v=177772 ap=2+0 inode=0x3f3b8a28 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80]
2015-03-31 11:02:30.385935 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178790 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 102=102+0) hs=103+1501,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178790
2015-03-31 11:02:30.385944 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f5) mark_dirty_parent
2015-03-31 11:02:30.385945 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295361 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 102=102+0) n(v1 rc2015-03-31 11:03:07.000000 103=102+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.385957 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295361 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.385962 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295363 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382405=382398+7)/n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382396=382389+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295363
2015-03-31 11:02:30.385971 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120426 pv120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:06.000000 b422190090565 382397=382389+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.385983 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120428 v=120426 ap=0+6 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:30.385986 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120429 v=120428 cv=119911/119911 dir_auth=0 ap=1+5+6 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:06.000000 b422190196760 382413=382404+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120428
2015-03-31 11:02:30.385996 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53475 pv53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.386012 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178791 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 103=103+0) hs=103+1501,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178791
2015-03-31 11:02:30.386020 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295364 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295364
2015-03-31 11:02:30.386028 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120429 v=120429 cv=119911/119911 dir_auth=0 ap=1+5+6 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:07.000000 b422190196760 382423=382414+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120429
2015-03-31 11:02:30.386037 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f5 [2,head] /test_small/small5/blarg10088 auth v178790 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3b8a28]
2015-03-31 11:02:30.386047 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:30.386049 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27579 client_caps(grant ino 1000006b2f5 1851562 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:30.386068 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178790 ap=2+0 inode=0x3f3b8a28 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80]
2015-03-31 11:02:30.386077 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408240 create #1000006026a/blarg10088 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.386088 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f5
2015-03-31 11:02:30.386091 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178790 ap=2+0 inode=0x3f3b8a28 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80]
2015-03-31 11:02:30.386099 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178790 ap=2+0 inode=0x3f3b8a28 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80]
2015-03-31 11:02:30.386106 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178790 ap=2+0 inode=0x3f3b8a28 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80]
2015-03-31 11:02:30.386111 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10088) auth_unpin by 0x3ceadd8 on [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178790 ap=1+0 inode=0x3f3b8a28 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80] now 1+0
2015-03-31 11:02:30.386117 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178790 ap=1+0 inode=0x3f3b8a28 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80]
2015-03-31 11:02:30.386122 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.386140 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.386156 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.386171 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.386183 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.386194 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178790 ap=1+0 inode=0x3f3b8a28 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceac80]
2015-03-31 11:02:30.386211 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295363 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 104=103+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386223 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295363 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 104=103+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386233 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295363 pv3295369 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 104=103+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386264 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408240 cr=0x9f7c380)
2015-03-31 11:02:30.386271 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367f800 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.386288 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367f800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.386299 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10088) auth_unpin by 0x2367f800 on [dentry #1/test_small/small5/blarg10088 [2,head] auth (dn sync l=1) (dversion lock) v=178790 inode=0x3f3b8a28 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ceac80] now 0+0
2015-03-31 11:02:30.386306 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x2367f800 on [dir 1 / [2,head] auth v=120429 cv=119911/119911 dir_auth=0 ap=0+4+5 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:07.000000 b422190196760 382423=382414+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 5
2015-03-31 11:02:30.386317 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367f800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295364 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:30.386325 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367f800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178791 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 103=103+0) hs=103+1501,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:30.386333 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367f800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295363 pv3295369 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 104=103+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.386360 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:30.386362 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:30.386368 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:30.386369 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f6) mark_dirty [inode 1000006b2f6 [2,head] /test_small/small5/blarg10089 auth v178791 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.386380 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10089)  mark_dirty [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178792 v=177774 ap=2+0 inode=0x3f4f61b0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60]
2015-03-31 11:02:30.386387 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178792 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 103=103+0) hs=104+1500,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178792
2015-03-31 11:02:30.386396 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f6) mark_dirty_parent
2015-03-31 11:02:30.386398 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295363 pv3295369 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 103=103+0) n(v1 rc2015-03-31 11:03:07.000000 104=103+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386410 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295363 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.386414 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295365 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295365
2015-03-31 11:02:30.386421 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178793 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 104=104+0) hs=104+1500,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178793
2015-03-31 11:02:30.386428 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295366 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382400+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295366
2015-03-31 11:02:30.386437 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f6 [2,head] /test_small/small5/blarg10089 auth v178792 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4f61b0]
2015-03-31 11:02:30.386447 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:30.386449 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27580 client_caps(grant ino 1000006b2f6 1851563 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:30.386468 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178792 ap=2+0 inode=0x3f4f61b0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60]
2015-03-31 11:02:30.386476 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408250 create #1000006026a/blarg10089 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.386486 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f6
2015-03-31 11:02:30.386488 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178792 ap=2+0 inode=0x3f4f61b0 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60]
2015-03-31 11:02:30.386496 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178792 ap=2+0 inode=0x3f4f61b0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60]
2015-03-31 11:02:30.386502 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178792 ap=2+0 inode=0x3f4f61b0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60]
2015-03-31 11:02:30.386507 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10089) auth_unpin by 0x3ceafb8 on [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178792 ap=1+0 inode=0x3f4f61b0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60] now 1+0
2015-03-31 11:02:30.386513 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178792 ap=1+0 inode=0x3f4f61b0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60]
2015-03-31 11:02:30.386518 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.386532 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178792 ap=1+0 inode=0x3f4f61b0 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceae60]
2015-03-31 11:02:30.386537 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295365 pv3295369 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 105=104+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386550 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295365 pv3295369 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 105=104+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386562 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295365 pv3295369 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 105=104+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386581 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408250 cr=0x9299400)
2015-03-31 11:02:30.386588 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd1900 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.386604 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd1900 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.386615 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10089) auth_unpin by 0x23dd1900 on [dentry #1/test_small/small5/blarg10089 [2,head] auth (dn sync l=1) (dversion lock) v=178792 inode=0x3f4f61b0 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ceae60] now 0+0
2015-03-31 11:02:30.386622 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd1900 on [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295366 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382400+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:30.386632 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd1900 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178793 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 104=104+0) hs=104+1500,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:30.386640 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd1900 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295365 pv3295369 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 105=104+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.386688 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:30.386690 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:30.386695 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:30.386696 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f7) mark_dirty [inode 1000006b2f7 [2,head] /test_small/small5/blarg1009 auth v178793 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.386707 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1009)  mark_dirty [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178794 v=177776 ap=2+0 inode=0x3f3dc5b8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040]
2015-03-31 11:02:30.386714 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178794 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 104=104+0) hs=105+1499,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178794
2015-03-31 11:02:30.386722 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f7) mark_dirty_parent
2015-03-31 11:02:30.386724 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295365 pv3295369 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 104=104+0) n(v1 rc2015-03-31 11:03:07.000000 105=104+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386736 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295365 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.386741 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295367 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382400+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295367
2015-03-31 11:02:30.386751 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178795 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 105=105+0) hs=105+1499,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178795
2015-03-31 11:02:30.386757 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295368 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382408=382401+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295368
2015-03-31 11:02:30.386766 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f7 [2,head] /test_small/small5/blarg1009 auth v178794 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3dc5b8]
2015-03-31 11:02:30.386776 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:30.386777 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27581 client_caps(grant ino 1000006b2f7 1851564 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:30.386799 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178794 ap=2+0 inode=0x3f3dc5b8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040]
2015-03-31 11:02:30.386807 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408260 create #1000006026a/blarg1009 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.386818 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f7
2015-03-31 11:02:30.386820 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178794 ap=2+0 inode=0x3f3dc5b8 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040]
2015-03-31 11:02:30.386827 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178794 ap=2+0 inode=0x3f3dc5b8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040]
2015-03-31 11:02:30.386833 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178794 ap=2+0 inode=0x3f3dc5b8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040]
2015-03-31 11:02:30.386838 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1009) auth_unpin by 0x3ceb198 on [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178794 ap=1+0 inode=0x3f3dc5b8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040] now 1+0
2015-03-31 11:02:30.386845 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178794 ap=1+0 inode=0x3f3dc5b8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040]
2015-03-31 11:02:30.386849 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.386863 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178794 ap=1+0 inode=0x3f3dc5b8 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb040]
2015-03-31 11:02:30.386869 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295367 pv3295369 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 106=105+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386881 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295367 pv3295369 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 106=105+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386893 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295367 pv3295369 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 106=105+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.386912 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408260 cr=0x45a5c80)
2015-03-31 11:02:30.386919 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x296a6e00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.386935 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x296a6e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.386946 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg1009) auth_unpin by 0x296a6e00 on [dentry #1/test_small/small5/blarg1009 [2,head] auth (dn sync l=1) (dversion lock) v=178794 inode=0x3f3dc5b8 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ceb040] now 0+0
2015-03-31 11:02:30.386953 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x296a6e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295368 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382408=382401+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:30.386963 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x296a6e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178795 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 105=105+0) hs=105+1499,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:30.386970 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x296a6e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295367 pv3295369 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 106=105+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.387017 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:30.387019 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:30.387023 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:30.387025 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f8) mark_dirty [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178795 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.387034 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10090)  mark_dirty [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178796 v=177778 ap=2+0 inode=0x3f42d990 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220]
2015-03-31 11:02:30.387040 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178796 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 105=105+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178796
2015-03-31 11:02:30.387049 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f8) mark_dirty_parent
2015-03-31 11:02:30.387050 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295367 pv3295369 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 105=105+0) n(v1 rc2015-03-31 11:03:07.000000 106=105+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.387063 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295369 v=3295367 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.387067 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295369 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382408=382401+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295369
2015-03-31 11:02:30.387077 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178797 v=178797 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178797
2015-03-31 11:02:30.387084 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295370 v=3295370 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382409=382402+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295370
2015-03-31 11:02:30.387118 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.387128 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:30.387130 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27582 client_caps(grant ino 1000006b2f8 1851565 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:30.387148 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178796 ap=2+0 inode=0x3f42d990 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220]
2015-03-31 11:02:30.387156 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408270 create #1000006026a/blarg10090 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.387167 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f8
2015-03-31 11:02:30.387168 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178796 ap=2+0 inode=0x3f42d990 | request=1 lock=2 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220]
2015-03-31 11:02:30.387176 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178796 ap=2+0 inode=0x3f42d990 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220]
2015-03-31 11:02:30.387182 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178796 ap=2+0 inode=0x3f42d990 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220]
2015-03-31 11:02:30.387187 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10090) auth_unpin by 0x3ceb378 on [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178796 ap=1+0 inode=0x3f42d990 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220] now 1+0
2015-03-31 11:02:30.387194 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178796 ap=1+0 inode=0x3f42d990 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220]
2015-03-31 11:02:30.387198 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.387212 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.387224 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178796 ap=1+0 inode=0x3f42d990 | request=1 lock=1 inodepin=1 dirty=1 waiter=0 authpin=1 clientlease=1 0x3ceb220]
2015-03-31 11:02:30.387230 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.387243 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.387254 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.387265 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:30.387268 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.387279 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.387290 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:30.387291 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408275 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.387295 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408275 cr=0x968af80) #1000006026a
2015-03-31 11:02:30.387297 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.387298 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.387299 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387320 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408275 cr=0x968af80)
2015-03-31 11:02:30.387323 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.387338 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.387348 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387358 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.387371 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.387381 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387390 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.387404 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.387414 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387424 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387444 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387464 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387474 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387482 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387492 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387501 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387510 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31559} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387525 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40408275 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.387529 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408275 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.387539 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.387542 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.387546 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31560
2015-03-31 11:02:30.387548 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31560 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.387560 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408275 cr=0x968af80)
2015-03-31 11:02:30.387579 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.387594 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.387608 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.387618 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.387628 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387638 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387660 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387670 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387681 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387690 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387702 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387711 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387721 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387730 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387740 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd3700 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.387754 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd3700 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.387763 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd3700 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.387806 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387818 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387828 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387838 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.387860 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408270 cr=0x26907080)
2015-03-31 11:02:30.387867 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2876a800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.387883 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2876a800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.387893 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10090) auth_unpin by 0x2876a800 on [dentry #1/test_small/small5/blarg10090 [2,head] auth (dn sync l=1) (dversion lock) v=178796 inode=0x3f42d990 | request=1 lock=0 inodepin=1 dirty=1 waiter=0 authpin=0 clientlease=1 0x3ceb220] now 0+0
2015-03-31 11:02:30.387900 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2876a800 on [dir 10000000000 /test_small/ [2,head] auth v=3295370 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382409=382402+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:30.387911 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2876a800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178797 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:30.387919 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2876a800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.387971 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408276 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388001 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408276 cr=0x968e900)
2015-03-31 11:02:30.388004 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408276 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388007 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408276 cr=0x968e900) #1000006b2f8
2015-03-31 11:02:30.388009 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f8 snap head
2015-03-31 11:02:30.388010 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.388012 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.388028 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408276 cr=0x968e900)
2015-03-31 11:02:30.388031 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.388049 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.388061 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.388072 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.388082 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.388097 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.388112 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.388123 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.388134 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.388144 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.388155 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f42d990]
2015-03-31 11:02:30.388164 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_pin by 0x242ca800 on [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f42d990] now 1+0
2015-03-31 11:02:30.388175 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388190 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388206 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388227 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388237 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388247 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388268 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.388290 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.388305 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408276 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388309 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408276 getattr Xs #1000006b2f8 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388319 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.388322 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.388325 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:30.388328 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.388342 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408276 cr=0x968e900)
2015-03-31 11:02:30.388361 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388377 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388391 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388401 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388421 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.388452 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f42d990]
2015-03-31 11:02:30.388462 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.388476 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.388487 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=0+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:30.388497 7fbe462be700 10 mds.0.cache.ino(1000006b2f8) auth_unpin by 0x242ca800 on [inode 1000006b2f8 [2,head] /test_small/small5/blarg10090 auth v178796 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f42d990] now 0+0
2015-03-31 11:02:30.388533 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408277 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388563 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408277 cr=0x26907580)
2015-03-31 11:02:30.388565 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408277 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388568 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408277 cr=0x26907580) #1000006026a
2015-03-31 11:02:30.388569 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.388571 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.388572 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.388585 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408277 cr=0x26907580)
2015-03-31 11:02:30.388588 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.388603 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.388613 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.388623 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.388637 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.388652 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.388662 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.388683 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.388692 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.388702 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388726 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388739 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388749 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388759 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388768 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388778 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388793 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31560} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388809 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408277 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388813 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408277 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.388823 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.388825 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.388828 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31561
2015-03-31 11:02:30.388830 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31561 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.388855 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408277 cr=0x26907580)
2015-03-31 11:02:30.388874 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388889 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.388902 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388912 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.388922 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388944 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388954 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388963 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.388973 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.388987 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.388997 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.389098 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408278 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389116 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408278 cr=0x26903980)
2015-03-31 11:02:30.389118 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408278 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389121 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408278 cr=0x26903980) #10000004e75
2015-03-31 11:02:30.389122 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e75 snap head
2015-03-31 11:02:30.389124 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.389127 7fbe462be700 10 mds.0.server ref is [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.389137 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408278 cr=0x26903980)
2015-03-31 11:02:30.389139 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.389155 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.389165 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.389174 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.389181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.389194 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.389219 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.389228 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.389239 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.389247 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.389256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.389262 7fbe462be700 10 mds.0.cache.ino(10000004e75) auth_pin by 0x242ca800 on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50] now 1+0
2015-03-31 11:02:30.389269 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.389283 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.389297 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.389307 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.389317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.389326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.389335 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389342 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389360 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389365 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389377 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408278 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389380 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408278 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389390 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.389393 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.389396 7fbe462be700 10 mds.0.cache.ino(10000004e75) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.389400 7fbe462be700 10 mds.0.cache.ino(10000004e75) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.389411 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408278 cr=0x26903980)
2015-03-31 11:02:30.389430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.389444 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.389458 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.389468 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.389477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.389486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.389506 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389513 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389526 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.389531 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.389545 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.389555 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.389565 7fbe462be700 10 mds.0.cache.ino(10000004e75) auth_unpin by 0x242ca800 on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99ab50] now 0+0
2015-03-31 11:02:30.389706 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408279 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389723 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408279 cr=0x25f4b980)
2015-03-31 11:02:30.389725 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408279 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389728 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408279 cr=0x25f4b980) #1000006026a
2015-03-31 11:02:30.389730 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.389731 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.389732 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.389745 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408279 cr=0x25f4b980)
2015-03-31 11:02:30.389747 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.389762 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.389772 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.389795 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.389808 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.389822 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.389832 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.389842 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.389851 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.389861 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.389875 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.389889 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.389899 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.389909 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.389918 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.389928 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.389938 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31561} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.389953 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408279 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389968 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408279 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.389989 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.389992 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.389995 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31562
2015-03-31 11:02:30.389997 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31562 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.390009 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408279 cr=0x25f4b980)
2015-03-31 11:02:30.390027 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.390042 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.390056 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.390066 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.390075 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.390085 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.390106 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.390115 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.390125 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.390139 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.390149 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.390295 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408280 lookup #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.390310 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408280 cr=0x43d0280)
2015-03-31 11:02:30.390312 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408280 lookup #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.390314 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408280 cr=0x43d0280) #1000006026a/blarg10091
2015-03-31 11:02:30.390316 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.390319 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10091 [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock) v=177780 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.390327 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.390328 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408280 lookup #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.390337 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.390347 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408280 cr=0x43d0280)
2015-03-31 11:02:30.430034 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408281 lookup #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430054 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408281 cr=0x2645aa80)
2015-03-31 11:02:30.430061 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408281 lookup #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430064 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408281 cr=0x2645aa80) #1000006026a/blarg10091
2015-03-31 11:02:30.430066 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.430068 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10091 [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock) v=177780 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.430076 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.430077 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408281 lookup #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430088 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.430101 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408281 cr=0x2645aa80)
2015-03-31 11:02:30.430132 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408282 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430148 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408282 cr=0xab85000)
2015-03-31 11:02:30.430162 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408282 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430164 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408282 cr=0xab85000) #1000006026a
2015-03-31 11:02:30.430166 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.430167 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.430168 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.430185 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408282 cr=0xab85000)
2015-03-31 11:02:30.430188 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.430205 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.430216 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.430227 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.430241 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.430256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.430266 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.430277 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.430287 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.430298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430338 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.430360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.430370 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430381 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430401 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430412 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31562} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430427 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408282 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430432 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408282 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430451 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.430464 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.430467 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31563
2015-03-31 11:02:30.430470 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31563 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.430483 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408282 cr=0xab85000)
2015-03-31 11:02:30.430491 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430521 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.430532 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.430542 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430564 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430574 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430583 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430594 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.430608 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.430619 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.430653 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408283 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430671 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408283 cr=0x26902f80)
2015-03-31 11:02:30.430673 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408283 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430676 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408283 cr=0x26902f80) #1000006026a
2015-03-31 11:02:30.430678 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.430679 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.430680 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.430692 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408283 cr=0x26902f80)
2015-03-31 11:02:30.430695 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.430720 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.430729 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.430739 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.430752 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.430766 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.430775 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.430802 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.430811 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.430821 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430845 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430858 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.430867 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.430876 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430885 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430894 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430903 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31563} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.430917 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408283 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430920 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408283 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.430929 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.430932 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.430935 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31564
2015-03-31 11:02:30.430937 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31564 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.430948 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408283 cr=0x26902f80)
2015-03-31 11:02:30.430966 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430981 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.430994 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.431004 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.431014 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.431023 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.431044 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.431053 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.431063 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.431077 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.431087 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.431132 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408284 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.431149 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408284 cr=0x9cc2f80)
2015-03-31 11:02:30.431152 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408284 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.431155 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408284 cr=0x9cc2f80) #10000004e75
2015-03-31 11:02:30.431157 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e75 snap head
2015-03-31 11:02:30.431158 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.431160 7fbe462be700 10 mds.0.server ref is [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.431168 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408284 cr=0x9cc2f80)
2015-03-31 11:02:30.431171 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.431186 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.431196 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.431204 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.431211 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.431225 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.431240 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.431249 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.431260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.431269 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.431289 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.431295 7fbe462be700 10 mds.0.cache.ino(10000004e75) auth_pin by 0x242ca800 on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50] now 1+0
2015-03-31 11:02:30.431302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.431326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.431339 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.431349 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.431358 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.431367 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.431376 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431383 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431389 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431396 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431419 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408284 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.431423 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408284 getattr Xs #10000004e75 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.431432 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.431434 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.431437 7fbe462be700 10 mds.0.cache.ino(10000004e75) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.431439 7fbe462be700 10 mds.0.cache.ino(10000004e75) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.431450 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408284 cr=0x9cc2f80)
2015-03-31 11:02:30.431468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.431484 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.431498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.431508 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.431517 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.431537 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.431547 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431554 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431561 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431567 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99ab50]
2015-03-31 11:02:30.431573 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.431587 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.431598 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242ca800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.431607 7fbe462be700 10 mds.0.cache.ino(10000004e75) auth_unpin by 0x242ca800 on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99ab50] now 0+0
2015-03-31 11:02:30.431887 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408285 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.431904 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408285 cr=0xaee9680)
2015-03-31 11:02:30.431906 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408285 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.431909 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408285 cr=0xaee9680) #1000006026a
2015-03-31 11:02:30.431910 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.431912 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.431912 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.431925 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408285 cr=0xaee9680)
2015-03-31 11:02:30.431928 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.431943 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.431953 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.431962 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.431975 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.431989 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.431998 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.432009 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432017 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.432028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.432042 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.432056 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.432066 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.432076 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432085 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432095 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432105 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31564} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432120 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408285 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.432124 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408285 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.432135 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.432137 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.432157 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31565
2015-03-31 11:02:30.432160 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31565 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.432183 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408285 cr=0xaee9680)
2015-03-31 11:02:30.432201 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.432216 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.432229 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.432239 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.432249 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31565} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432258 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31565} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432279 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31565} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432288 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31565} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.432298 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.432312 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.432322 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31565} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.432687 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408286 create #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.432707 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408286 cr=0xaeef580)
2015-03-31 11:02:30.432710 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432727 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:30.432728 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432739 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.432741 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432752 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432763 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432772 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432781 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.432788 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408286 create #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.432791 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10091
2015-03-31 11:02:30.432792 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408286 cr=0xaeef580) #1000006026a/blarg10091
2015-03-31 11:02:30.432794 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10091
2015-03-31 11:02:30.432795 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.432797 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.432798 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178797 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:30.432806 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178797 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:30.432812 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10091 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178797 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:30.432820 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408286 cr=0xaeef580)
2015-03-31 11:02:30.432826 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.432841 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.432851 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock) v=177780 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432858 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432868 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.432882 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.432896 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.432916 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.432937 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock) v=177780 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432942 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10091) auth_pin by 0x242ca800 on [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock) v=177780 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400] now 1+0
2015-03-31 11:02:30.432946 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=0+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.432955 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.432965 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock) v=177780 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432970 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177780 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432975 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177780 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432978 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177780 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432983 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177780 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432987 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10091) auth_pin by 0x3ceb558 on [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177780 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400] now 2+0
2015-03-31 11:02:30.432992 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242ca800) [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) v=177780 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.432998 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433011 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433024 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433037 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433050 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433069 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433078 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433087 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433096 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433105 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433114 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433124 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433134 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433143 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433152 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433162 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433171 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433180 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433196 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2f9 ([1000006b2fa~329], 809 left)
2015-03-31 11:02:30.433199 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.433200 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2f9 [2,head] #1000006b2f9 auth v1 s=0 n() (iversion lock) 0x3f449410]
2015-03-31 11:02:30.433204 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178798
2015-03-31 11:02:30.433205 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10091)  pre_dirty [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) pv=178798 v=177780 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.433212 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f449410]
2015-03-31 11:02:30.433219 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242ca800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178797 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:30.433228 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2cc6ae10
2015-03-31 11:02:30.433230 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178799
2015-03-31 11:02:30.433231 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178799 v=178797 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.433237 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178799 v=178797 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.433244 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f449410]
2015-03-31 11:02:30.433250 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.433252 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433265 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295371
2015-03-31 11:02:30.433266 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295371 v=3295369 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.433269 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295371 (current v 3295369)
2015-03-31 11:02:30.433271 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178799 v=178797 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=106+1498,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.433277 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.433278 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242ca800 on [dir 10000000000 /test_small/ [2,head] auth v=3295370 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382409=382402+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:30.433287 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3c33ff0
2015-03-31 11:02:30.433288 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295372
2015-03-31 11:02:30.433289 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433301 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433312 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433323 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.433324 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.382362 < 1, stopping
2015-03-31 11:02:30.433328 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433338 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.433342 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295371 v=3295369 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.433347 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31565} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433359 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f449410]
2015-03-31 11:02:30.433365 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.433367 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f449410]
2015-03-31 11:02:30.433374 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.433376 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433383 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433390 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433397 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433403 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433410 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433417 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433423 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433429 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433435 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433442 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433447 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433454 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433460 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433467 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f449410]
2015-03-31 11:02:30.433476 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.433477 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.433479 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f449410 tracedn 0x3ceb400
2015-03-31 11:02:30.433481 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242ca800) [dentry #1/test_small/small5/blarg10091 [2,head] auth NULL (dn xlock x=1 by 0x242ca800) (dversion lock w=1 last_client=708310) pv=178798 v=177780 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb400]
2015-03-31 11:02:30.433488 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408286 create #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.433496 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.433499 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31566
2015-03-31 11:02:30.433501 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31566 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.433506 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.433509 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.433512 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) including xattrs version 0
2015-03-31 11:02:30.433548 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433577 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433589 7fbe406af700  5 mds.0.log _submit_thread 5419741652~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.433592 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433605 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433619 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433642 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433653 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433663 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433673 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433685 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433697 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433707 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433717 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433727 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433797 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408287 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.433816 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408287 cr=0xab84380)
2015-03-31 11:02:30.433819 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408287 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.433822 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408287 cr=0xab84380) #1000006026a
2015-03-31 11:02:30.433824 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.433825 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.433826 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433841 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408287 cr=0xab84380)
2015-03-31 11:02:30.433844 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433859 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433869 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433879 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433893 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.433918 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433927 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.433938 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.433948 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.433959 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433973 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.433987 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.433997 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434008 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434018 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434029 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434039 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31566} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434066 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408287 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.434070 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408287 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.434092 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.434094 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.434097 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31567
2015-03-31 11:02:30.434099 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31567 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.434111 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408287 cr=0xab84380)
2015-03-31 11:02:30.434130 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434145 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434169 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434179 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434201 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434231 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.434245 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.434255 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.434375 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408288 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.434393 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408288 cr=0x237c4b00)
2015-03-31 11:02:30.434395 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408288 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.434398 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408288 cr=0x237c4b00) #1000006b2f9
2015-03-31 11:02:30.434399 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f9 snap head
2015-03-31 11:02:30.434401 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.434402 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f449410]
2015-03-31 11:02:30.434416 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408288 cr=0x237c4b00)
2015-03-31 11:02:30.434419 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434435 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434445 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434457 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f449410]
2015-03-31 11:02:30.434477 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434490 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.434505 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434514 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.434524 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434534 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.434544 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f449410]
2015-03-31 11:02:30.434553 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_pin by 0x2a623200 on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f449410] now 1+0
2015-03-31 11:02:30.434563 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434578 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434592 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434602 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434612 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434634 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434655 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.434664 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.434678 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408288 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.434681 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408288 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.434691 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.434693 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.434696 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.434700 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.434712 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408288 cr=0x237c4b00)
2015-03-31 11:02:30.434730 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434745 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.434759 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434769 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.434794 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434805 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.434815 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.434826 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.434836 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.434851 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.434861 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.434884 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_unpin by 0x2a623200 on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f449410] now 0+0
2015-03-31 11:02:30.475021 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408289 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.475042 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408289 cr=0x6fc8f00)
2015-03-31 11:02:30.475047 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408289 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.475050 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408289 cr=0x6fc8f00) #1000006b2f9
2015-03-31 11:02:30.475052 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f9 snap head
2015-03-31 11:02:30.475053 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.475054 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.475070 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408289 cr=0x6fc8f00)
2015-03-31 11:02:30.475073 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475091 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475103 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475114 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.475125 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475139 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.475154 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475163 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.475174 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475185 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.475196 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.475206 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_pin by 0x2a623200 on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f449410] now 1+0
2015-03-31 11:02:30.475216 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475232 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475246 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475257 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475267 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475278 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.475319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.475334 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408289 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.475338 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408289 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.475348 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.475352 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.475356 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.475359 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.475372 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408289 cr=0x6fc8f00)
2015-03-31 11:02:30.475391 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475407 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475452 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.475484 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.475494 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.475509 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.475519 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.475530 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_unpin by 0x2a623200 on [inode 1000006b2f9 [2,head] {#1000006b2f9 /test_small/small5/blarg10091} auth v178798 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f449410] now 0+0
2015-03-31 11:02:30.475567 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408290 readdir #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.475583 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408290 cr=0x25e3e180)
2015-03-31 11:02:30.475586 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408290 readdir #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.475589 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408290 cr=0x25e3e180) #1000006026a
2015-03-31 11:02:30.475591 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.475592 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.475593 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475607 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408290 cr=0x25e3e180)
2015-03-31 11:02:30.475610 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475624 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475634 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475645 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475658 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.475672 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475682 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.475692 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475712 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.475722 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475736 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.475760 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475769 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.475778 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475793 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475803 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475812 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475822 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.475831 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.475841 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x25f436c0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:30.475843 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.479462 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e75 follows 0 op update
2015-03-31 11:02:30.479465 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479475 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.479477 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.479495 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.479496 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479503 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479511 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.479512 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479523 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479543 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479550 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.479551 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479559 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479561 7fbe406af700  5 mds.0.log _submit_thread 5419743292~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.479566 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479572 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479577 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479582 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479587 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479593 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.479603 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.489529 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:30.489535 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:30.489544 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:30.489549 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f9) mark_dirty [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178797 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.489565 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10091)  mark_dirty [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178798 v=177780 ap=2+0 inode=0x3f449410 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400]
2015-03-31 11:02:30.489573 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178799 v=178798 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 106=106+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178798
2015-03-31 11:02:30.489585 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f9) mark_dirty_parent
2015-03-31 11:02:30.489588 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295369 pv3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 106=106+0) n(v1 rc2015-03-31 11:03:07.000000 107=106+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.489602 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295371 v=3295369 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.489607 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295372 v=3295371 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382409=382402+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295371
2015-03-31 11:02:30.489618 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178799 v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178799
2015-03-31 11:02:30.489626 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295372 v=3295372 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295372
2015-03-31 11:02:30.489635 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.489646 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:30.489648 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27583 client_caps(grant ino 1000006b2f9 1851566 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:30.489670 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178798 ap=2+0 inode=0x3f449410 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400]
2015-03-31 11:02:30.489679 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408286 create #1000006026a/blarg10091 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.489691 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2f9
2015-03-31 11:02:30.489695 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178798 ap=2+0 inode=0x3f449410 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400]
2015-03-31 11:02:30.489702 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178798 ap=2+0 inode=0x3f449410 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400]
2015-03-31 11:02:30.489709 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178798 ap=2+0 inode=0x3f449410 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400]
2015-03-31 11:02:30.489713 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10091) auth_unpin by 0x3ceb558 on [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178798 ap=1+0 inode=0x3f449410 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400] now 1+0
2015-03-31 11:02:30.489721 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178798 ap=1+0 inode=0x3f449410 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400]
2015-03-31 11:02:30.489726 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.489742 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.489754 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178798 ap=1+0 inode=0x3f449410 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb400]
2015-03-31 11:02:30.489761 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.489774 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.489804 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.489815 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:30.489818 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:30.489829 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.489840 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:30.489841 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408290 readdir #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.489844 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408290 cr=0x25e3e180) #1000006026a
2015-03-31 11:02:30.489846 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.489847 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.489848 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.489871 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408290 cr=0x25e3e180)
2015-03-31 11:02:30.489873 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.489889 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.489900 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.489910 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.489924 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.489933 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.489943 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.489957 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.489968 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.489978 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.489989 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.489999 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490009 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31567} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490025 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:30.490027 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178799 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.490036 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:30.490041 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:30.490045 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490049 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:30.490051 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490055 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:30.490056 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490060 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:30.490062 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490065 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:30.490067 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490070 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:30.490072 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490074 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:30.490076 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490079 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:30.490081 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490084 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:30.490086 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490089 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:30.490091 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490094 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:30.490096 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490099 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:30.490100 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490103 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:30.490105 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490108 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:30.490110 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490113 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:30.490115 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490119 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:30.490121 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490123 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:30.490125 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490128 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:30.490130 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490132 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:30.490134 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490137 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:30.490139 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490141 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:30.490143 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490146 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:30.490147 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490150 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:30.490152 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490155 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:30.490157 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490160 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:30.490161 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490164 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:30.490166 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490169 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:30.490170 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490173 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:30.490175 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490178 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:30.490180 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490183 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:30.490185 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490188 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:30.490190 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490193 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:30.490194 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490208 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:30.490209 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490212 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:30.490214 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490227 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:30.490228 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490231 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:30.490233 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490235 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:30.490237 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490239 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:30.490253 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490255 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:30.490257 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490260 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:30.490261 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490264 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:30.490265 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490268 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:30.490269 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490271 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:30.490273 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490275 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:30.490277 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490280 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:30.490281 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490284 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:30.490286 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490288 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:30.490290 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490292 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:30.490294 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490296 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:30.490298 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490301 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:30.490302 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490305 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:30.490306 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490309 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:30.490310 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490313 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:30.490315 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490318 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:30.490319 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490322 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:30.490323 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490326 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:30.490327 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490330 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:30.490332 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490334 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:30.490336 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490338 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:30.490340 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490342 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:30.490344 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490347 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:30.490349 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490351 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:30.490353 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490355 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:30.490356 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490359 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:30.490361 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490363 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:30.490365 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490367 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:30.490369 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490371 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:30.490373 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490375 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:30.490377 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490379 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:30.490381 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490384 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:30.490385 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490388 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:30.490390 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490392 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:30.490394 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490396 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:30.490398 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490400 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:30.490402 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490404 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:30.490406 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490408 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:30.490410 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490413 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:30.490414 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490417 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:30.490418 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490420 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:30.490422 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490424 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:30.490426 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490428 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:30.490430 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490432 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:30.490434 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490436 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:30.490438 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490441 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:30.490442 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490445 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:30.490446 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490449 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:30.490450 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490453 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:30.490454 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490457 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:30.490459 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490461 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:30.490463 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490465 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:30.490467 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490469 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:30.490471 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490474 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:30.490475 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490478 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:30.490480 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490482 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:30.490484 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490487 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:30.490488 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490491 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:30.490493 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490495 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:30.490497 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490499 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:30.490501 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490503 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:30.490505 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490507 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:30.490509 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490511 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:30.490513 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490515 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:30.490517 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490519 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:30.490521 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490523 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:30.490525 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490527 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:30.490529 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490532 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:30.490533 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490536 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.490537 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490582 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408290 readdir #1000006026a 2015-03-31 11:03:07.000000) v2 readdir num=107 bytes=29207 end=1 complete=1
2015-03-31 11:02:30.490586 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408290 readdir #1000006026a 2015-03-31 11:03:07.000000) v2 readdir num=107 end=1 complete=1
2015-03-31 11:02:30.490589 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408290 readdir #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.490598 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.490601 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.490604 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31568
2015-03-31 11:02:30.490606 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31568 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.490617 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408290 cr=0x25e3e180)
2015-03-31 11:02:30.490635 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.490651 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.490663 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.490672 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.490681 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490691 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490701 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490709 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490730 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490739 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490748 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a623200 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.490760 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a623200 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.490769 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a623200 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.490798 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490810 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490820 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490830 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.490864 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408286 cr=0xaeef580)
2015-03-31 11:02:30.490871 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242ca800 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.490887 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242ca800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.490897 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10091) auth_unpin by 0x242ca800 on [dentry #1/test_small/small5/blarg10091 [2,head] auth (dn sync l=1) (dversion lock) v=178798 inode=0x3f449410 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3ceb400] now 0+0
2015-03-31 11:02:30.490904 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242ca800 on [dir 10000000000 /test_small/ [2,head] auth v=3295372 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:30.490915 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242ca800 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178799 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:30.490924 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242ca800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.490973 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408291 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.491001 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408291 cr=0x43d2f80)
2015-03-31 11:02:30.491004 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408291 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.491008 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408291 cr=0x43d2f80) #1000006b2f9
2015-03-31 11:02:30.491010 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f9 snap head
2015-03-31 11:02:30.491011 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.491012 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.491029 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408291 cr=0x43d2f80)
2015-03-31 11:02:30.491032 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.491050 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.491062 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.491073 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.491084 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.491098 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.491114 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.491124 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.491135 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.491145 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.491155 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.491175 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_pin by 0x23dd2300 on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410] now 1+0
2015-03-31 11:02:30.491195 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.491210 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.491235 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.491244 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.491254 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.491262 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.491272 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.491281 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.491295 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408291 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.491299 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408291 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.491309 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.491312 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.491317 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:30.491320 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.491334 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408291 cr=0x43d2f80)
2015-03-31 11:02:30.491353 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.491369 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.491383 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.491393 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.491403 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.491412 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.491433 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.491442 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.491452 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.491466 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.491477 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=0+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:30.491487 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_unpin by 0x23dd2300 on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410] now 0+0
2015-03-31 11:02:30.492746 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e75 follows 0 op update
2015-03-31 11:02:30.492749 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492760 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.492762 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.492780 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.492781 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492793 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492802 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.492803 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492809 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492816 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492822 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.492823 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492830 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492837 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492843 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492849 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.492850 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.492851 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e75 [2,head] /test_small/small1/blarg10091 auth v137000 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99ab50]
2015-03-31 11:02:30.492858 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.532043 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408292 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.532070 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408292 cr=0x929aa80)
2015-03-31 11:02:30.532071 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408292 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.532075 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408292 cr=0x929aa80) #1000006b2f9
2015-03-31 11:02:30.532076 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2f9 snap head
2015-03-31 11:02:30.532078 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.532079 7fbe462be700 10 mds.0.server ref is [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.532093 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408292 cr=0x929aa80)
2015-03-31 11:02:30.532095 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.532113 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.532124 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.532135 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.532145 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.532159 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.532174 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.532183 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.532194 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.532204 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.532214 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410]
2015-03-31 11:02:30.532223 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_pin by 0x23dd2300 on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410] now 1+0
2015-03-31 11:02:30.532233 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.532259 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.532285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.532295 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.532304 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.532313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.532322 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.532331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.532346 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408292 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.532350 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408292 getattr Xs #1000006b2f9 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.532360 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.532363 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.532367 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:30.532369 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.532382 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408292 cr=0x929aa80)
2015-03-31 11:02:30.532401 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.532417 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.532431 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.532441 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.532451 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.532460 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.532481 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.532491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f449410]
2015-03-31 11:02:30.532500 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.532515 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.532526 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=0+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:30.532536 7fbe462be700 10 mds.0.cache.ino(1000006b2f9) auth_unpin by 0x23dd2300 on [inode 1000006b2f9 [2,head] /test_small/small5/blarg10091 auth v178798 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f449410] now 0+0
2015-03-31 11:02:30.532831 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408293 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.532848 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408293 cr=0x23fbe180)
2015-03-31 11:02:30.532849 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408293 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.532852 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408293 cr=0x23fbe180) #10000004e73
2015-03-31 11:02:30.532854 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e73 snap head
2015-03-31 11:02:30.532856 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.532856 7fbe462be700 10 mds.0.server ref is [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.532866 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408293 cr=0x23fbe180)
2015-03-31 11:02:30.532869 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.532884 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.532893 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.532902 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.532908 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.532921 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.532936 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.532946 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.532956 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.532965 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.532974 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.532979 7fbe462be700 10 mds.0.cache.ino(10000004e73) auth_pin by 0x23dd2300 on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99a218] now 1+0
2015-03-31 11:02:30.532986 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.533001 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.533015 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.533025 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.533035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.533044 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.533053 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533065 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533071 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533095 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408293 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.533099 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408293 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.533121 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.533125 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.533128 7fbe462be700 10 mds.0.cache.ino(10000004e73) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.533130 7fbe462be700 10 mds.0.cache.ino(10000004e73) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.533141 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408293 cr=0x23fbe180)
2015-03-31 11:02:30.533160 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.533175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.533190 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.533200 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.533210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.533218 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.533238 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533245 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533251 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533257 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.533262 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.533277 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.533287 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.533295 7fbe462be700 10 mds.0.cache.ino(10000004e73) auth_unpin by 0x23dd2300 on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99a218] now 0+0
2015-03-31 11:02:30.533640 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408294 lookup #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.533660 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408294 cr=0x52d2300)
2015-03-31 11:02:30.533661 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408294 lookup #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.533664 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408294 cr=0x52d2300) #1000006026a/blarg10092
2015-03-31 11:02:30.533666 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.533669 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10092 [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock) v=177782 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.533677 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.533678 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408294 lookup #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.533688 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.533700 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408294 cr=0x52d2300)
2015-03-31 11:02:30.534178 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408295 lookup #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.534197 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408295 cr=0x45a2d00)
2015-03-31 11:02:30.534199 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408295 lookup #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.534202 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408295 cr=0x45a2d00) #1000006026a/blarg10092
2015-03-31 11:02:30.534204 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.534206 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10092 [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock) v=177782 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.534214 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.534215 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408295 lookup #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.534225 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.534238 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408295 cr=0x45a2d00)
2015-03-31 11:02:30.534717 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408296 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.534738 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408296 cr=0x968eb80)
2015-03-31 11:02:30.534740 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408296 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.534743 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408296 cr=0x968eb80) #10000004e73
2015-03-31 11:02:30.534745 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e73 snap head
2015-03-31 11:02:30.534746 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.534747 7fbe462be700 10 mds.0.server ref is [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.534758 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408296 cr=0x968eb80)
2015-03-31 11:02:30.534761 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.534778 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.534794 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.534804 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.534810 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.534825 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.534839 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.534849 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.534859 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.534868 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.534877 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.534882 7fbe462be700 10 mds.0.cache.ino(10000004e73) auth_pin by 0x23dd2300 on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99a218] now 1+0
2015-03-31 11:02:30.534889 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.534903 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.534918 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.534928 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.534948 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.534968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.534977 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.534982 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.534987 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.534993 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.535004 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408296 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.535008 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408296 getattr Xs #10000004e73 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.535018 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.535021 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.535026 7fbe462be700 10 mds.0.cache.ino(10000004e73) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.535028 7fbe462be700 10 mds.0.cache.ino(10000004e73) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.535041 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408296 cr=0x968eb80)
2015-03-31 11:02:30.535060 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.535076 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.535090 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.535100 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.535110 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.535118 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.535139 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.535145 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.535152 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.535159 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e99a218]
2015-03-31 11:02:30.535165 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.535180 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.535190 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x23dd2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.535199 7fbe462be700 10 mds.0.cache.ino(10000004e73) auth_unpin by 0x23dd2300 on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e99a218] now 0+0
2015-03-31 11:02:30.535511 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408297 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.535527 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408297 cr=0x26900f00)
2015-03-31 11:02:30.535530 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408297 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.535533 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408297 cr=0x26900f00) #1000006026a
2015-03-31 11:02:30.535534 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.535536 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.535537 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.535551 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408297 cr=0x26900f00)
2015-03-31 11:02:30.535553 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.535568 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.535577 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.535586 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.535600 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.535613 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.535623 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.535633 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.535642 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:30.535652 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.535666 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.535679 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.535690 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.535700 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535709 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535719 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535729 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31568} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535744 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408297 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.535748 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408297 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.535774 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.535777 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.535799 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31569
2015-03-31 11:02:30.535801 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31569 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.535813 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408297 cr=0x26900f00)
2015-03-31 11:02:30.535831 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.535846 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.535860 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.535869 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.535879 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31569} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535889 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31569} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535910 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31569} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535919 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+0 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31569} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.535929 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:30.535943 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:30.535953 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31569} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:30.536339 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408298 create #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.536359 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408298 cr=0x2645bc00)
2015-03-31 11:02:30.536362 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536379 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:30.536381 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536393 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.536394 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536406 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536416 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536425 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536434 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.536436 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408298 create #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.536439 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10092
2015-03-31 11:02:30.536440 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408298 cr=0x2645bc00) #1000006026a/blarg10092
2015-03-31 11:02:30.536442 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10092
2015-03-31 11:02:30.536443 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.536444 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.536446 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178799 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:30.536453 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178799 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:30.536460 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10092 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178799 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:30.536468 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408298 cr=0x2645bc00)
2015-03-31 11:02:30.536473 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.536489 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.536500 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock) v=177782 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536506 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536516 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:30.536531 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.536556 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:30.536566 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:30.536588 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock) v=177782 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536592 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10092) auth_pin by 0x23dd2300 on [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock) v=177782 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0] now 1+0
2015-03-31 11:02:30.536597 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=0+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:30.536607 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.536616 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock) v=177782 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536621 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177782 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536626 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177782 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536630 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177782 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536635 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177782 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536639 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10092) auth_pin by 0x3ceb738 on [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177782 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0] now 2+0
2015-03-31 11:02:30.536644 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x23dd2300) [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) v=177782 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536649 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.536664 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.536677 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.536689 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.536702 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.536712 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.536721 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.536730 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.536739 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536748 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536758 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536767 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536777 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536790 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536800 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536809 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536819 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536828 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536837 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536855 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2fa ([1000006b2fb~328], 808 left)
2015-03-31 11:02:30.536858 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.536859 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2fa [2,head] #1000006b2fa auth v1 s=0 n() (iversion lock) 0x3f3f48e8]
2015-03-31 11:02:30.536864 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178800
2015-03-31 11:02:30.536865 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10092)  pre_dirty [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) pv=178800 v=177782 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.536872 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3f48e8]
2015-03-31 11:02:30.536879 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x23dd2300 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:30.536888 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x924cba0
2015-03-31 11:02:30.536889 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178801
2015-03-31 11:02:30.536891 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178801 v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.536897 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178801 v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.536904 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f3f48e8]
2015-03-31 11:02:30.536909 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.536911 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536924 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295373
2015-03-31 11:02:30.536925 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295373 v=3295371 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.536929 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295373 (current v 3295371)
2015-03-31 11:02:30.536930 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178801 v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.536937 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.536938 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x23dd2300 on [dir 10000000000 /test_small/ [2,head] auth v=3295372 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:30.536947 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924ea90
2015-03-31 11:02:30.536948 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295374
2015-03-31 11:02:30.536949 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.536959 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.536969 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.536979 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.536980 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.486019 < 1, stopping
2015-03-31 11:02:30.536985 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.536995 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.536998 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295373 v=3295371 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.537002 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31569} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537014 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f3f48e8]
2015-03-31 11:02:30.537021 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.537024 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537030 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.537031 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537037 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537044 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537050 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537057 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537064 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537070 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537077 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537083 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537089 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537096 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537103 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537109 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537115 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537121 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537130 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.537131 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.537133 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f3f48e8 tracedn 0x3ceb5e0
2015-03-31 11:02:30.537135 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x23dd2300) [dentry #1/test_small/small5/blarg10092 [2,head] auth NULL (dn xlock x=1 by 0x23dd2300) (dversion lock w=1 last_client=708310) pv=178800 v=177782 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb5e0]
2015-03-31 11:02:30.537141 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408298 create #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.537149 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.537152 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31570
2015-03-31 11:02:30.537154 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31570 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.537160 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.537163 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.537165 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) including xattrs version 0
2015-03-31 11:02:30.537202 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537231 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537242 7fbe406af700  5 mds.0.log _submit_thread 5419744151~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.537246 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537260 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537275 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537297 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537308 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537318 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537328 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537340 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537351 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537361 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537372 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537382 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537627 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408299 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.537647 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408299 cr=0x8f0cd80)
2015-03-31 11:02:30.537649 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408299 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.537652 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408299 cr=0x8f0cd80) #1000006b2fa
2015-03-31 11:02:30.537654 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fa snap head
2015-03-31 11:02:30.537655 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.537656 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537669 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408299 cr=0x8f0cd80)
2015-03-31 11:02:30.537672 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537687 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537698 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537709 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537718 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537732 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.537746 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537755 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.537766 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537775 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.537790 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f3f48e8]
2015-03-31 11:02:30.537799 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_pin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3f48e8] now 1+0
2015-03-31 11:02:30.537809 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537823 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537838 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537848 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.537858 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537869 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.537894 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.537915 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.537930 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408299 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.537934 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408299 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.537943 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.537946 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.537950 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.537952 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.537964 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408299 cr=0x8f0cd80)
2015-03-31 11:02:30.537983 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.537999 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.538013 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538023 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538033 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538043 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538064 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.538074 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.538084 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.538099 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.538109 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.538120 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_unpin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8] now 0+0
2015-03-31 11:02:30.538417 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408300 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.538434 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408300 cr=0x26d3cb00)
2015-03-31 11:02:30.538436 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408300 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.538439 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408300 cr=0x26d3cb00) #1000006b2fa
2015-03-31 11:02:30.538440 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fa snap head
2015-03-31 11:02:30.538441 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.538442 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.538455 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408300 cr=0x26d3cb00)
2015-03-31 11:02:30.538458 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.538473 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538483 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538494 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.538503 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.538517 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.538531 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538540 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.538551 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538561 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.538571 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.538580 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_pin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8] now 1+0
2015-03-31 11:02:30.538590 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.538605 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.538619 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538629 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538639 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538649 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538660 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.538680 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.538706 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408300 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.538709 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408300 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.538718 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.538720 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.538724 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.538727 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.538739 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408300 cr=0x26d3cb00)
2015-03-31 11:02:30.538757 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.538772 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.538790 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538800 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.538810 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538832 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.538842 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.538852 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.538862 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.538877 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.538887 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.538898 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_unpin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8] now 0+0
2015-03-31 11:02:30.542300 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e73 follows 0 op update
2015-03-31 11:02:30.542303 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542311 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.542312 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.542328 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.542329 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542334 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542342 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.542345 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542355 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542375 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542382 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.542384 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542391 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542393 7fbe406af700  5 mds.0.log _submit_thread 5419745791~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.542398 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542403 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542409 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542415 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542420 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542425 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.542435 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.582124 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408301 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.582179 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408301 cr=0x26d3fd00)
2015-03-31 11:02:30.582183 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408301 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.582189 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408301 cr=0x26d3fd00) #1000006b2fa
2015-03-31 11:02:30.582193 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fa snap head
2015-03-31 11:02:30.582196 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.582198 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.582230 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408301 cr=0x26d3fd00)
2015-03-31 11:02:30.582233 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.582251 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.582263 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.582275 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.582285 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.582300 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.582325 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.582335 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.582357 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.582366 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.582376 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.582385 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_pin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8] now 1+0
2015-03-31 11:02:30.582395 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.582409 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.582422 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.582431 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.582441 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.582451 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.582460 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.582469 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.582484 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408301 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.582488 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408301 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.582498 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.582501 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.582506 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.582508 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.582521 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408301 cr=0x26d3fd00)
2015-03-31 11:02:30.582540 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.582556 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.582571 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.582581 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.582591 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.582602 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.582623 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.582634 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.582644 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.582659 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.582669 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.582680 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_unpin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8] now 0+0
2015-03-31 11:02:30.583937 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e73 follows 0 op update
2015-03-31 11:02:30.583940 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.583951 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.583953 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.583971 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.583971 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.583978 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.583987 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.583989 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.583994 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.584002 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.584007 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.584008 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.584016 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.584022 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.584027 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.584033 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.584034 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.584035 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e73 [2,head] /test_small/small1/blarg10092 auth v137002 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e99a218]
2015-03-31 11:02:30.584042 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.624029 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408302 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.624051 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408302 cr=0xa255f00)
2015-03-31 11:02:30.624054 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408302 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.624057 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408302 cr=0xa255f00) #1000006b2fa
2015-03-31 11:02:30.624059 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fa snap head
2015-03-31 11:02:30.624060 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.624061 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.624078 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408302 cr=0xa255f00)
2015-03-31 11:02:30.624080 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624098 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624110 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.624121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.624132 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624145 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.624160 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624170 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.624181 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.624191 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.624202 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:30.624212 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_pin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8] now 1+0
2015-03-31 11:02:30.624222 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624237 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624251 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624262 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624284 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.624306 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.624315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.624325 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.624339 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408302 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.624342 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408302 getattr Xs #1000006b2fa 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.624351 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.624353 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.624357 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.624359 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.624371 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408302 cr=0xa255f00)
2015-03-31 11:02:30.624390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624406 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624420 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624431 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624441 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.624451 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.624473 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.624483 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f3f48e8]
2015-03-31 11:02:30.624493 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.624508 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.624518 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.624529 7fbe462be700 10 mds.0.cache.ino(1000006b2fa) auth_unpin by 0x2b0c2800 on [inode 1000006b2fa [2,head] {#1000006b2fa /test_small/small5/blarg10092} auth v178800 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f3f48e8] now 0+0
2015-03-31 11:02:30.624815 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408303 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.624832 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408303 cr=0xa255a00)
2015-03-31 11:02:30.624835 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408303 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.624838 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408303 cr=0xa255a00) #10000004e81
2015-03-31 11:02:30.624839 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e81 snap head
2015-03-31 11:02:30.624841 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.624842 7fbe462be700 10 mds.0.server ref is [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.624851 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408303 cr=0xa255a00)
2015-03-31 11:02:30.624854 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624869 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624879 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.624888 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.624893 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624906 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.624920 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.624930 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.624941 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.624950 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.624959 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.624964 7fbe462be700 10 mds.0.cache.ino(10000004e81) auth_pin by 0x2b0c2800 on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0] now 1+0
2015-03-31 11:02:30.624971 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624985 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.624999 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.625010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.625020 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.625029 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.625038 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625045 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625052 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625057 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625084 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408303 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.625100 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408303 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.625110 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.625113 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.625117 7fbe462be700 10 mds.0.cache.ino(10000004e81) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.625119 7fbe462be700 10 mds.0.cache.ino(10000004e81) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.625130 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408303 cr=0xa255a00)
2015-03-31 11:02:30.625149 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.625164 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.625178 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.625188 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.625198 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.625207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.625227 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625234 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625239 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625245 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.625251 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.625265 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.625276 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.625285 7fbe462be700 10 mds.0.cache.ino(10000004e81) auth_unpin by 0x2b0c2800 on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9998e0] now 0+0
2015-03-31 11:02:30.625657 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408304 lookup #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.625677 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408304 cr=0x940fa80)
2015-03-31 11:02:30.625679 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408304 lookup #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.625682 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408304 cr=0x940fa80) #1000006026a/blarg10093
2015-03-31 11:02:30.625684 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.625687 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10093 [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock) v=177784 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.625695 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.625696 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408304 lookup #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.625706 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.625718 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408304 cr=0x940fa80)
2015-03-31 11:02:30.626196 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408305 lookup #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.626215 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408305 cr=0x940c380)
2015-03-31 11:02:30.626217 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408305 lookup #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.626220 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408305 cr=0x940c380) #1000006026a/blarg10093
2015-03-31 11:02:30.626221 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.626224 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10093 [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock) v=177784 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.626232 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.626233 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408305 lookup #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.626243 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.626255 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408305 cr=0x940c380)
2015-03-31 11:02:30.626734 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408306 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.626755 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408306 cr=0x940ee00)
2015-03-31 11:02:30.626757 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408306 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.626760 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408306 cr=0x940ee00) #10000004e81
2015-03-31 11:02:30.626762 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e81 snap head
2015-03-31 11:02:30.626763 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.626764 7fbe462be700 10 mds.0.server ref is [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.626776 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408306 cr=0x940ee00)
2015-03-31 11:02:30.626779 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.626805 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.626816 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.626826 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.626832 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.626846 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.626860 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.626870 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.626881 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.626890 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.626899 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.626904 7fbe462be700 10 mds.0.cache.ino(10000004e81) auth_pin by 0x2b0c2800 on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0] now 1+0
2015-03-31 11:02:30.626911 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.626926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.626940 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.626961 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.626971 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.626978 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.626998 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627005 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627010 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627016 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627029 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408306 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.627033 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408306 getattr Xs #10000004e81 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.627043 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.627045 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.627050 7fbe462be700 10 mds.0.cache.ino(10000004e81) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.627052 7fbe462be700 10 mds.0.cache.ino(10000004e81) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.627065 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408306 cr=0x940ee00)
2015-03-31 11:02:30.627085 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627101 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627116 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627126 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627136 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.627144 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.627165 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627172 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627178 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627184 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9998e0]
2015-03-31 11:02:30.627190 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.627204 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.627214 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2800 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.627224 7fbe462be700 10 mds.0.cache.ino(10000004e81) auth_unpin by 0x2b0c2800 on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9998e0] now 0+0
2015-03-31 11:02:30.627568 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408307 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.627589 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408307 cr=0x968e180)
2015-03-31 11:02:30.627591 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408307 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.627594 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408307 cr=0x968e180) #1000006026a
2015-03-31 11:02:30.627596 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.627597 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.627598 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627617 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408307 cr=0x968e180)
2015-03-31 11:02:30.627620 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627636 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627647 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627658 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627672 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.627687 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627696 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.627708 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627718 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.627729 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627744 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627758 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627768 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627778 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627803 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627824 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627834 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31570} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627850 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408307 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.627853 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408307 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.627863 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.627866 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.627871 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31571
2015-03-31 11:02:30.627872 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31571 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.627885 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408307 cr=0x968e180)
2015-03-31 11:02:30.627904 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627920 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.627934 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627944 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.627954 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627965 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627987 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.627997 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628007 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:30.628021 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:30.628031 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:30.628421 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408308 create #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.628440 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408308 cr=0x9cc5280)
2015-03-31 11:02:30.628444 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408308 create #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.628447 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10093
2015-03-31 11:02:30.628448 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408308 cr=0x9cc5280) #1000006026a/blarg10093
2015-03-31 11:02:30.628450 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10093
2015-03-31 11:02:30.628451 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.628453 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.628454 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178801 v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.628464 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178801 v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.628472 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10093 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178801 v=178799 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.628483 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408308 cr=0x9cc5280)
2015-03-31 11:02:30.628488 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.628507 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628518 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock) v=177784 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628525 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628537 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.628551 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.628566 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628576 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.628587 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock) v=177784 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628591 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10093) auth_pin by 0x2b0c2800 on [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock) v=177784 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0] now 1+0
2015-03-31 11:02:30.628597 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=1+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628608 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.628620 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock) v=177784 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628625 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177784 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628631 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177784 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628635 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177784 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628649 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177784 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628653 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10093) auth_pin by 0x3ceb918 on [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177784 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0] now 2+0
2015-03-31 11:02:30.628658 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2b0c2800) [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) v=177784 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628675 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.628690 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.628703 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.628715 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.628728 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628738 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628747 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628756 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628765 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628775 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628789 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628799 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628808 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628817 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628826 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628836 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628845 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628854 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628873 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2fb ([1000006b2fc~327], 807 left)
2015-03-31 11:02:30.628875 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.628876 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2fb [2,head] #1000006b2fb auth v1 s=0 n() (iversion lock) 0x3f348db8]
2015-03-31 11:02:30.628880 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178802
2015-03-31 11:02:30.628881 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10093)  pre_dirty [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) pv=178802 v=177784 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.628890 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f348db8]
2015-03-31 11:02:30.628896 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2b0c2800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178802 v=178799 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:30.628905 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x924d8b0
2015-03-31 11:02:30.628907 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178803
2015-03-31 11:02:30.628908 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178803 v=178799 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.628914 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178803 v=178799 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.628920 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f348db8]
2015-03-31 11:02:30.628926 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.628928 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295373 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628941 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295375
2015-03-31 11:02:30.628942 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295375 v=3295371 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.628946 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295375 (current v 3295371)
2015-03-31 11:02:30.628947 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178803 v=178799 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.628953 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.628955 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2b0c2800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295375 v=3295372 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:30.628964 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3b6caf0
2015-03-31 11:02:30.628965 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295376
2015-03-31 11:02:30.628966 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628977 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.628987 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.628997 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.628998 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.578036 < 1, stopping
2015-03-31 11:02:30.629002 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629012 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.629015 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295375 v=3295371 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.629019 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31571} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629031 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f348db8]
2015-03-31 11:02:30.629038 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.629040 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f348db8]
2015-03-31 11:02:30.629048 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.629049 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629057 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629063 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629069 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629076 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629082 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629088 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629094 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629100 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629107 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629113 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629120 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629126 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629133 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629139 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f348db8]
2015-03-31 11:02:30.629149 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.629150 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.629152 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f348db8 tracedn 0x3ceb7c0
2015-03-31 11:02:30.629154 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2b0c2800) [dentry #1/test_small/small5/blarg10093 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2800) (dversion lock w=1 last_client=708310) pv=178802 v=177784 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb7c0]
2015-03-31 11:02:30.629160 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408308 create #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.629166 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.629169 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31572
2015-03-31 11:02:30.629171 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31572 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.629177 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.629180 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.629183 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) including xattrs version 0
2015-03-31 11:02:30.629219 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629248 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629259 7fbe406af700  5 mds.0.log _submit_thread 5419746650~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.629263 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629277 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629291 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629314 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629325 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629335 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629345 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629357 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629368 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629379 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629390 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629400 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629682 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408309 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.629701 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408309 cr=0x2941d500)
2015-03-31 11:02:30.629703 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408309 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.629706 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408309 cr=0x2941d500) #1000006b2fb
2015-03-31 11:02:30.629708 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fb snap head
2015-03-31 11:02:30.629709 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.629710 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f348db8]
2015-03-31 11:02:30.629723 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408309 cr=0x2941d500)
2015-03-31 11:02:30.629726 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629741 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629751 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629762 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f348db8]
2015-03-31 11:02:30.629771 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629789 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.629804 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629813 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.629824 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629834 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.629844 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f348db8]
2015-03-31 11:02:30.629854 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_pin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f348db8] now 1+0
2015-03-31 11:02:30.629864 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629879 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.629893 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629904 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.629914 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629924 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.629948 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.629969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.629984 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408309 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.629987 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408309 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.629997 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.630000 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.630004 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.630006 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.630018 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408309 cr=0x2941d500)
2015-03-31 11:02:30.630037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630052 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630066 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630085 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630095 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630117 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.630127 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.630137 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.630151 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.630161 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.630172 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_unpin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8] now 0+0
2015-03-31 11:02:30.630483 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408310 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.630501 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408310 cr=0x6884880)
2015-03-31 11:02:30.630503 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408310 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.630506 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408310 cr=0x6884880) #1000006b2fb
2015-03-31 11:02:30.630508 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fb snap head
2015-03-31 11:02:30.630509 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.630510 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.630522 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408310 cr=0x6884880)
2015-03-31 11:02:30.630525 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630540 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630550 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630560 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.630569 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630583 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.630597 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630606 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.630617 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630627 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.630637 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.630646 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_pin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8] now 1+0
2015-03-31 11:02:30.630656 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630671 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630685 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630695 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630706 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630716 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630742 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.630763 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.630775 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408310 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.630778 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408310 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.630792 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.630794 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.630797 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.630800 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.630812 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408310 cr=0x6884880)
2015-03-31 11:02:30.630831 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630846 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.630860 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630870 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.630892 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630903 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.630913 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.630924 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.630933 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.630948 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.630958 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.630968 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_unpin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8] now 0+0
2015-03-31 11:02:30.634980 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e81 follows 0 op update
2015-03-31 11:02:30.634984 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.634992 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.634994 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.635009 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.635010 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635016 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635023 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.635025 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635035 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635056 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635062 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.635065 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635072 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635073 7fbe406af700  5 mds.0.log _submit_thread 5419748290~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.635078 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635083 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635089 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635095 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635101 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635108 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.635117 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.675031 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408311 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.675052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408311 cr=0x6883980)
2015-03-31 11:02:30.675056 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408311 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.675059 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408311 cr=0x6883980) #1000006b2fb
2015-03-31 11:02:30.675061 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fb snap head
2015-03-31 11:02:30.675062 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.675063 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.675078 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408311 cr=0x6883980)
2015-03-31 11:02:30.675081 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.675098 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.675111 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.675122 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.675133 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.675147 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.675161 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.675172 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.675182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.675193 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.675204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.675213 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_pin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8] now 1+0
2015-03-31 11:02:30.675224 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.675239 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.675253 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.675264 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.675286 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.675308 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.675317 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.675326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.675340 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408311 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.675344 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408311 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.675354 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.675357 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.675361 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.675364 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.675376 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408311 cr=0x6883980)
2015-03-31 11:02:30.675395 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.675411 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.675426 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.675436 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.675446 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.675457 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.675478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.675489 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.675499 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.675513 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.675524 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.675535 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_unpin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8] now 0+0
2015-03-31 11:02:30.676793 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e81 follows 0 op update
2015-03-31 11:02:30.676796 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676807 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.676809 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.676827 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.676828 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676835 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676844 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.676846 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676851 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676858 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676863 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.676864 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676872 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676878 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676884 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676890 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.676892 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.676893 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e81 [2,head] /test_small/small1/blarg10093 auth v137004 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9998e0]
2015-03-31 11:02:30.676899 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.716032 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408312 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.716052 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408312 cr=0x6883200)
2015-03-31 11:02:30.716057 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408312 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.716060 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408312 cr=0x6883200) #1000006b2fb
2015-03-31 11:02:30.716062 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fb snap head
2015-03-31 11:02:30.716063 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.716064 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.716081 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408312 cr=0x6883200)
2015-03-31 11:02:30.716083 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716101 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716112 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.716123 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.716133 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716148 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.716162 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716172 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.716183 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.716193 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.716204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:30.716213 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_pin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8] now 1+0
2015-03-31 11:02:30.716223 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716238 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716252 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716263 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716283 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.716294 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.716315 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.716324 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.716339 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408312 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.716343 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408312 getattr Xs #1000006b2fb 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.716353 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.716357 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.716361 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.716364 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.716376 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408312 cr=0x6883200)
2015-03-31 11:02:30.716395 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716411 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716425 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716435 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.716456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.716477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.716488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f348db8]
2015-03-31 11:02:30.716497 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.716512 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.716522 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.716533 7fbe462be700 10 mds.0.cache.ino(1000006b2fb) auth_unpin by 0x242cdf00 on [inode 1000006b2fb [2,head] {#1000006b2fb /test_small/small5/blarg10093} auth v178802 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f348db8] now 0+0
2015-03-31 11:02:30.716832 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408313 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.716847 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408313 cr=0x968b480)
2015-03-31 11:02:30.716849 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408313 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.716852 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408313 cr=0x968b480) #10000004e94
2015-03-31 11:02:30.716853 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e94 snap head
2015-03-31 11:02:30.716855 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.716856 7fbe462be700 10 mds.0.server ref is [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.716865 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408313 cr=0x968b480)
2015-03-31 11:02:30.716868 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716883 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716894 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.716902 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.716909 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.716922 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.716936 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.716945 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.716956 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.716965 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.716974 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.716979 7fbe462be700 10 mds.0.cache.ino(10000004e94) auth_pin by 0x242cdf00 on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8] now 1+0
2015-03-31 11:02:30.716986 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.717000 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.717013 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.717023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.717033 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.717042 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.717051 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717058 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717064 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717070 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717094 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408313 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.717097 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408313 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.717119 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.717122 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.717126 7fbe462be700 10 mds.0.cache.ino(10000004e94) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.717129 7fbe462be700 10 mds.0.cache.ino(10000004e94) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.717141 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408313 cr=0x968b480)
2015-03-31 11:02:30.717159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.717175 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.717188 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.717198 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.717208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.717217 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.717225 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717244 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717251 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717257 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.717264 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.717278 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.717288 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.717297 7fbe462be700 10 mds.0.cache.ino(10000004e94) auth_unpin by 0x242cdf00 on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e998fa8] now 0+0
2015-03-31 11:02:30.717662 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408314 lookup #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.717682 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408314 cr=0x237c6400)
2015-03-31 11:02:30.717685 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408314 lookup #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.717688 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408314 cr=0x237c6400) #1000006026a/blarg10094
2015-03-31 11:02:30.717690 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.717693 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10094 [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock) v=177786 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.717701 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.717702 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408314 lookup #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.717712 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.717725 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408314 cr=0x237c6400)
2015-03-31 11:02:30.718204 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408315 lookup #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.718223 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408315 cr=0x237c2300)
2015-03-31 11:02:30.718225 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408315 lookup #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.718228 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408315 cr=0x237c2300) #1000006026a/blarg10094
2015-03-31 11:02:30.718230 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.718232 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10094 [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock) v=177786 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.718240 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.718241 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408315 lookup #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.718251 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.718264 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408315 cr=0x237c2300)
2015-03-31 11:02:30.718745 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408316 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.718765 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408316 cr=0x237c5500)
2015-03-31 11:02:30.718767 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408316 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.718770 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408316 cr=0x237c5500) #10000004e94
2015-03-31 11:02:30.718772 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e94 snap head
2015-03-31 11:02:30.718774 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.718775 7fbe462be700 10 mds.0.server ref is [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.718792 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408316 cr=0x237c5500)
2015-03-31 11:02:30.718795 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.718812 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.718823 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.718833 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.718839 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.718853 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.718867 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.718876 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.718887 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.718896 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.718906 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.718912 7fbe462be700 10 mds.0.cache.ino(10000004e94) auth_pin by 0x242cdf00 on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8] now 1+0
2015-03-31 11:02:30.718919 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.718934 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.718948 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.718969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.718979 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.718999 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.719008 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719014 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719019 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719024 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719036 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408316 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.719039 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408316 getattr Xs #10000004e94 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.719050 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.719053 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.719057 7fbe462be700 10 mds.0.cache.ino(10000004e94) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.719059 7fbe462be700 10 mds.0.cache.ino(10000004e94) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.719072 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408316 cr=0x237c5500)
2015-03-31 11:02:30.719091 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719107 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719120 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719130 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719140 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.719149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.719169 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719176 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719183 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719189 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e998fa8]
2015-03-31 11:02:30.719196 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.719210 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.719220 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cdf00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.719229 7fbe462be700 10 mds.0.cache.ino(10000004e94) auth_unpin by 0x242cdf00 on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e998fa8] now 0+0
2015-03-31 11:02:30.719596 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408317 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.719616 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408317 cr=0x237c5780)
2015-03-31 11:02:30.719619 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408317 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.719622 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408317 cr=0x237c5780) #1000006026a
2015-03-31 11:02:30.719624 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.719626 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.719627 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719644 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408317 cr=0x237c5780)
2015-03-31 11:02:30.719647 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719664 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719675 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719686 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719700 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.719714 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719724 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.719734 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719745 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.719756 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719770 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719800 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719810 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719831 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719840 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719850 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719859 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (ixattr sync r=1) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31572} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719874 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408317 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.719878 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408317 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.719888 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.719890 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.719895 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31573
2015-03-31 11:02:30.719896 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31573 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.719909 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408317 cr=0x237c5780)
2015-03-31 11:02:30.719928 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719944 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.719958 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719968 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.719978 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.719989 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720010 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720020 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720030 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:30.720044 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:30.720054 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:30.720449 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408318 create #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.720469 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408318 cr=0x237c1400)
2015-03-31 11:02:30.720472 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408318 create #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.720475 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10094
2015-03-31 11:02:30.720476 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408318 cr=0x237c1400) #1000006026a/blarg10094
2015-03-31 11:02:30.720478 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10094
2015-03-31 11:02:30.720480 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.720481 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.720482 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178803 v=178799 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.720492 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178803 v=178799 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.720499 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10094 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178803 v=178799 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.720510 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408318 cr=0x237c1400)
2015-03-31 11:02:30.720515 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.720534 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.720545 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock) v=177786 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720552 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720564 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.720578 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.720592 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.720602 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.720612 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock) v=177786 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720617 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10094) auth_pin by 0x242cdf00 on [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock) v=177786 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0] now 1+0
2015-03-31 11:02:30.720623 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=2+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720634 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.720645 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock) v=177786 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720650 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177786 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720655 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177786 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720660 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177786 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720676 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177786 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720680 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10094) auth_pin by 0x3cebaf8 on [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177786 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0] now 2+0
2015-03-31 11:02:30.720698 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cdf00) [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dn xlock x=1 by 0x242cdf00) (dversion lock w=1 last_client=708310) v=177786 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720704 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.720718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.720731 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.720743 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.720756 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.720766 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.720775 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.720789 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.720798 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720808 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720818 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720828 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720837 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720846 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720855 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720864 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=3) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720873 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720883 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720901 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2fc ([1000006b2fd~326], 806 left)
2015-03-31 11:02:30.720904 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.720905 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2fc [2,head] #1000006b2fc auth v1 s=0 n() (iversion lock) 0x3f4df0f0]
2015-03-31 11:02:30.720909 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178804
2015-03-31 11:02:30.720910 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10094)  pre_dirty [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dn xlock x=1 by 0x242cdf00) (dversion lock w=1 last_client=708310) pv=178804 v=177786 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.720917 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4df0f0]
2015-03-31 11:02:30.720924 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cdf00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178804 v=178799 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:30.720933 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x9323c80
2015-03-31 11:02:30.720934 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178805
2015-03-31 11:02:30.720935 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178805 v=178799 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.720941 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178805 v=178799 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.720948 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4df0f0]
2015-03-31 11:02:30.720953 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.720955 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295375 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.720969 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295377
2015-03-31 11:02:30.720969 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295377 v=3295371 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.720973 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295377 (current v 3295371)
2015-03-31 11:02:30.720974 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178805 v=178799 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.720981 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.720982 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cdf00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295377 v=3295372 cv=3287205/3287205 ap=3+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 4
2015-03-31 11:02:30.720991 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2694b700
2015-03-31 11:02:30.720993 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295378
2015-03-31 11:02:30.720994 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721005 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721016 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721026 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.721027 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.670066 < 1, stopping
2015-03-31 11:02:30.721031 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721041 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=3 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.721045 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295377 v=3295371 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.721049 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31573} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721061 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4df0f0]
2015-03-31 11:02:30.721067 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.721070 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721078 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.721079 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721087 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721093 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721100 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721107 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721113 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721120 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721126 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721133 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721138 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721144 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721151 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721157 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721163 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721170 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721180 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.721181 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.721183 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4df0f0 tracedn 0x3ceb9a0
2015-03-31 11:02:30.721185 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cdf00) [dentry #1/test_small/small5/blarg10094 [2,head] auth NULL (dn xlock x=1 by 0x242cdf00) (dversion lock w=1 last_client=708310) pv=178804 v=177786 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3ceb9a0]
2015-03-31 11:02:30.721191 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408318 create #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.721198 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.721201 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31574
2015-03-31 11:02:30.721203 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31574 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.721209 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.721212 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.721214 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) including xattrs version 0
2015-03-31 11:02:30.721249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721279 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721290 7fbe406af700  5 mds.0.log _submit_thread 5419749149~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.721294 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721308 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721322 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721345 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721356 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721365 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721376 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721388 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721399 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721410 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ipolicy sync r=1) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721421 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721431 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721713 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408319 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.721732 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408319 cr=0x3b0e180)
2015-03-31 11:02:30.721734 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408319 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.721737 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408319 cr=0x3b0e180) #1000006b2fc
2015-03-31 11:02:30.721739 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fc snap head
2015-03-31 11:02:30.721740 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.721742 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721755 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408319 cr=0x3b0e180)
2015-03-31 11:02:30.721758 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721774 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721788 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721799 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721808 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721822 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.721837 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721846 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.721857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721867 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.721877 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4df0f0]
2015-03-31 11:02:30.721886 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_pin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4df0f0] now 1+0
2015-03-31 11:02:30.721896 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721911 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.721925 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721936 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.721946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721957 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.721982 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722017 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408319 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.722021 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408319 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.722030 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.722034 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.722037 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.722039 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.722051 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408319 cr=0x3b0e180)
2015-03-31 11:02:30.722070 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722086 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722099 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722109 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722119 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722129 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722151 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722161 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722170 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.722185 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.722195 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.722206 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_unpin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0] now 0+0
2015-03-31 11:02:30.722504 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408320 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.722521 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408320 cr=0x3b08f00)
2015-03-31 11:02:30.722523 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408320 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.722526 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408320 cr=0x3b08f00) #1000006b2fc
2015-03-31 11:02:30.722527 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fc snap head
2015-03-31 11:02:30.722529 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.722530 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.722541 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408320 cr=0x3b08f00)
2015-03-31 11:02:30.722544 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722558 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722569 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722579 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.722589 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722602 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.722616 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722625 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.722636 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722646 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.722656 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.722665 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_pin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0] now 1+0
2015-03-31 11:02:30.722675 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722690 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722704 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722714 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722724 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722733 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722744 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722753 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722793 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408320 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.722797 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408320 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.722806 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.722809 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.722813 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.722815 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.722827 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408320 cr=0x3b08f00)
2015-03-31 11:02:30.722846 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722861 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.722875 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722885 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.722907 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722917 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.722928 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722938 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.722947 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.722963 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.722973 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.722984 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_unpin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0] now 0+0
2015-03-31 11:02:30.726145 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e94 follows 0 op update
2015-03-31 11:02:30.726148 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726156 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.726158 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.726173 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.726174 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726180 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726187 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.726189 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726199 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726219 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726226 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.726227 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726234 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726237 7fbe406af700  5 mds.0.log _submit_thread 5419750789~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.726241 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726246 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726252 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726257 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726262 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726268 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.726277 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.757482 7fbe462be700  3 mds.0.server handle_client_session client_session(request_renewcaps seq 8443) from client.620289
2015-03-31 11:02:30.757486 7fbe462be700 10 mds.0.sessionmap touch_session s=0x397cfc0 name=client.620289
2015-03-31 11:02:30.757505 7fbe462be700  3 mds.0.server handle_client_session client_session(request_renewcaps seq 7447) from client.706230
2015-03-31 11:02:30.757509 7fbe462be700 10 mds.0.sessionmap touch_session s=0x397d280 name=client.706230
2015-03-31 11:02:30.757525 7fbe462be700  3 mds.0.server handle_client_session client_session(request_renewcaps seq 7666) from client.687246
2015-03-31 11:02:30.757529 7fbe462be700 10 mds.0.sessionmap touch_session s=0x397d540 name=client.687246
2015-03-31 11:02:30.766191 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408321 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.766226 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408321 cr=0xa256900)
2015-03-31 11:02:30.766230 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408321 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.766237 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408321 cr=0xa256900) #1000006b2fc
2015-03-31 11:02:30.766240 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fc snap head
2015-03-31 11:02:30.766243 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.766245 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.766278 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408321 cr=0xa256900)
2015-03-31 11:02:30.766293 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.766311 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.766324 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.766334 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.766345 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.766359 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.766374 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.766384 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.766395 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.766405 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.766416 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.766426 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_pin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0] now 1+0
2015-03-31 11:02:30.766447 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.766461 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.766474 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.766484 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.766493 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.766503 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.766512 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.766521 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.766535 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408321 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.766538 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408321 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.766548 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.766551 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.766556 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.766558 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.766571 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408321 cr=0xa256900)
2015-03-31 11:02:30.766589 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.766606 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.766620 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.766630 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.766640 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.766651 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.766672 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.766682 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.766692 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.766707 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.766717 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.766728 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_unpin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0] now 0+0
2015-03-31 11:02:30.766767 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004fad follows 0 op update
2015-03-31 11:02:30.766770 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@7},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766780 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.766804 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.766821 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.766822 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@7},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766828 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@7},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766837 7fbe462be700 10 mds.0.locker  wanted pFscr -> Fc
2015-03-31 11:02:30.766839 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted Fc on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766846 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766851 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.766853 7fbe462be700  7 mds.0.locker file_eval wanted=c loner_wanted=c other_wanted=  filelock=(ifile sync) on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766862 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766869 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766874 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766880 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.766882 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.766883 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004fad [2,head] /test_small/small1/blarg10393 auth v137604 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/Fc@7} | request=0 lock=0 caps=1 authpin=0 0x1e8ddb90]
2015-03-31 11:02:30.766890 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.766902 7fbe462be700  3 mds.0.server handle_client_session client_session(request_renewcaps seq 7422) from client.708310
2015-03-31 11:02:30.766905 7fbe462be700 10 mds.0.sessionmap touch_session s=0x397e040 name=client.708310
2015-03-31 11:02:30.767869 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e94 follows 0 op update
2015-03-31 11:02:30.767874 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767885 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.767887 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.767905 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.767906 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767913 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767920 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.767922 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767927 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767934 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767941 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.767942 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767949 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767956 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767961 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767967 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.767969 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.767970 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e94 [2,head] /test_small/small1/blarg10094 auth v137006 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998fa8]
2015-03-31 11:02:30.767977 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.807043 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408322 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.807060 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408322 cr=0xa251180)
2015-03-31 11:02:30.807062 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408322 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.807065 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408322 cr=0xa251180) #1000006b2fc
2015-03-31 11:02:30.807067 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fc snap head
2015-03-31 11:02:30.807068 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.807069 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.807085 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408322 cr=0xa251180)
2015-03-31 11:02:30.807088 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807105 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807118 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.807131 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.807141 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807156 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.807172 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807182 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.807193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.807204 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.807215 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:30.807225 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_pin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0] now 1+0
2015-03-31 11:02:30.807236 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807252 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807266 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807277 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.807319 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.807329 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.807338 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.807354 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408322 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.807358 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408322 getattr Xs #1000006b2fc 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.807369 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.807373 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.807377 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.807380 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.807394 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408322 cr=0xa251180)
2015-03-31 11:02:30.807414 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807430 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807445 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807456 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807467 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.807478 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.807500 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.807511 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4df0f0]
2015-03-31 11:02:30.807521 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.807536 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.807547 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.807558 7fbe462be700 10 mds.0.cache.ino(1000006b2fc) auth_unpin by 0x2a626e00 on [inode 1000006b2fc [2,head] {#1000006b2fc /test_small/small5/blarg10094} auth v178804 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4df0f0] now 0+0
2015-03-31 11:02:30.807863 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408323 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.807880 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408323 cr=0x9ae4380)
2015-03-31 11:02:30.807883 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408323 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.807886 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408323 cr=0x9ae4380) #10000004e76
2015-03-31 11:02:30.807887 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e76 snap head
2015-03-31 11:02:30.807889 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.807890 7fbe462be700 10 mds.0.server ref is [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.807900 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408323 cr=0x9ae4380)
2015-03-31 11:02:30.807902 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807918 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807929 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.807938 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.807943 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.807957 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.807971 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.807981 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.807993 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.808001 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.808011 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.808016 7fbe462be700 10 mds.0.cache.ino(10000004e76) auth_pin by 0x2a626e00 on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e998670] now 1+0
2015-03-31 11:02:30.808024 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.808038 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.808053 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.808063 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.808074 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.808083 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.808093 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808100 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808107 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808123 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808137 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408323 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.808151 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408323 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.808162 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.808165 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.808169 7fbe462be700 10 mds.0.cache.ino(10000004e76) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.808171 7fbe462be700 10 mds.0.cache.ino(10000004e76) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.808184 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408323 cr=0x9ae4380)
2015-03-31 11:02:30.808203 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.808219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.808234 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.808244 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.808255 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.808264 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.808285 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808292 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808299 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808305 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.808311 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.808326 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.808337 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.808346 7fbe462be700 10 mds.0.cache.ino(10000004e76) auth_unpin by 0x2a626e00 on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e998670] now 0+0
2015-03-31 11:02:30.808713 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408324 lookup #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.808734 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408324 cr=0x9ae4b00)
2015-03-31 11:02:30.808736 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408324 lookup #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.808739 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408324 cr=0x9ae4b00) #1000006026a/blarg10095
2015-03-31 11:02:30.808741 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.808744 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10095 [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock) v=177788 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.808752 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.808754 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408324 lookup #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.808764 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.808777 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408324 cr=0x9ae4b00)
2015-03-31 11:02:30.809280 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408325 lookup #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.809302 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408325 cr=0x51dd280)
2015-03-31 11:02:30.809304 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408325 lookup #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.809307 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408325 cr=0x51dd280) #1000006026a/blarg10095
2015-03-31 11:02:30.809309 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.809312 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10095 [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock) v=177788 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.809320 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.809321 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408325 lookup #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.809332 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.809345 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408325 cr=0x51dd280)
2015-03-31 11:02:30.809841 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408326 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.809861 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408326 cr=0x51d9b80)
2015-03-31 11:02:30.809863 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408326 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.809867 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408326 cr=0x51d9b80) #10000004e76
2015-03-31 11:02:30.809868 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e76 snap head
2015-03-31 11:02:30.809870 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.809871 7fbe462be700 10 mds.0.server ref is [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.809883 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408326 cr=0x51d9b80)
2015-03-31 11:02:30.809886 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.809905 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.809916 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.809926 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.809934 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.809948 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.809963 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.809974 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.809985 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.809995 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.810004 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.810009 7fbe462be700 10 mds.0.cache.ino(10000004e76) auth_pin by 0x2a626e00 on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998670] now 1+0
2015-03-31 11:02:30.810017 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810032 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810047 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810058 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810069 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.810091 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.810111 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810118 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810124 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810130 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810142 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408326 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.810146 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408326 getattr Xs #10000004e76 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.810157 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.810160 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.810165 7fbe462be700 10 mds.0.cache.ino(10000004e76) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.810167 7fbe462be700 10 mds.0.cache.ino(10000004e76) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.810181 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408326 cr=0x51d9b80)
2015-03-31 11:02:30.810200 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810216 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810231 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810242 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810252 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.810261 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.810281 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810288 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810295 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810301 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e998670]
2015-03-31 11:02:30.810307 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.810322 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.810333 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2a626e00 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.810342 7fbe462be700 10 mds.0.cache.ino(10000004e76) auth_unpin by 0x2a626e00 on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e998670] now 0+0
2015-03-31 11:02:30.810717 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408327 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.810737 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408327 cr=0x25e38280)
2015-03-31 11:02:30.810739 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408327 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.810742 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408327 cr=0x25e38280) #1000006026a
2015-03-31 11:02:30.810744 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.810746 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.810747 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.810765 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408327 cr=0x25e38280)
2015-03-31 11:02:30.810768 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810790 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810802 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.810814 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810828 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.810842 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810852 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.810864 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.810874 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.810885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810900 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.810915 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.810946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.810967 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.810977 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.810987 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (ixattr sync r=1) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31574} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811003 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408327 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.811007 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408327 getattr Xs #1000006026a 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.811018 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.811022 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.811027 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31575
2015-03-31 11:02:30.811029 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31575 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.811042 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408327 cr=0x25e38280)
2015-03-31 11:02:30.811062 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811078 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811093 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811104 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811114 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811125 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811148 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811158 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811168 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:30.811182 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:30.811193 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:30.811583 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408328 create #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.811604 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408328 cr=0x25e3b200)
2015-03-31 11:02:30.811607 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408328 create #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.811610 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10095
2015-03-31 11:02:30.811611 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408328 cr=0x25e3b200) #1000006026a/blarg10095
2015-03-31 11:02:30.811613 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10095
2015-03-31 11:02:30.811615 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.811616 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.811618 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178805 v=178799 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.811628 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178805 v=178799 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.811635 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10095 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178805 v=178799 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.811647 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408328 cr=0x25e3b200)
2015-03-31 11:02:30.811652 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811672 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811684 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock) v=177788 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811690 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811703 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811717 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.811733 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811742 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.811754 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock) v=177788 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811759 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10095) auth_pin by 0x2a626e00 on [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock) v=177788 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80] now 1+0
2015-03-31 11:02:30.811765 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=3+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811777 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.811793 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock) v=177788 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811808 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177788 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811814 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177788 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811819 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177788 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811835 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177788 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811840 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10095) auth_pin by 0x3cebcd8 on [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177788 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80] now 2+0
2015-03-31 11:02:30.811846 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2a626e00) [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) v=177788 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.811852 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811868 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811882 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811895 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.811909 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811919 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811929 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811939 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.811949 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811960 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811970 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811980 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811990 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.811999 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812010 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=3) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812020 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=4) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812030 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812040 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812059 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2fd ([1000006b2fe~325], 805 left)
2015-03-31 11:02:30.812061 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.812063 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2fd [2,head] #1000006b2fd auth v1 s=0 n() (iversion lock) 0x3f437648]
2015-03-31 11:02:30.812067 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178806
2015-03-31 11:02:30.812069 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10095)  pre_dirty [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) pv=178806 v=177788 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.812076 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f437648]
2015-03-31 11:02:30.812083 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2a626e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178806 v=178799 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:30.812093 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x39560f0
2015-03-31 11:02:30.812095 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178807
2015-03-31 11:02:30.812096 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178807 v=178799 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.812102 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178807 v=178799 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.812109 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f437648]
2015-03-31 11:02:30.812116 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.812117 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295377 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812132 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295379
2015-03-31 11:02:30.812133 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295379 v=3295371 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.812137 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295379 (current v 3295371)
2015-03-31 11:02:30.812138 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178807 v=178799 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.812145 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.812146 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2a626e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295379 v=3295372 cv=3287205/3287205 ap=4+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 5
2015-03-31 11:02:30.812156 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924f850
2015-03-31 11:02:30.812157 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295380
2015-03-31 11:02:30.812158 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812170 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812181 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812192 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.812194 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.761223 < 1, stopping
2015-03-31 11:02:30.812198 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812208 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=4 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.812212 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295379 v=3295371 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.812216 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31575} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812230 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f437648]
2015-03-31 11:02:30.812236 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.812239 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f437648]
2015-03-31 11:02:30.812247 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.812249 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812257 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812264 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812271 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812278 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812285 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812292 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812299 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812305 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812311 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812317 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812324 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812331 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812338 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812345 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f437648]
2015-03-31 11:02:30.812355 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.812356 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.812359 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f437648 tracedn 0x3cebb80
2015-03-31 11:02:30.812361 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2a626e00) [dentry #1/test_small/small5/blarg10095 [2,head] auth NULL (dn xlock x=1 by 0x2a626e00) (dversion lock w=1 last_client=708310) pv=178806 v=177788 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebb80]
2015-03-31 11:02:30.812367 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408328 create #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.812375 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.812379 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31576
2015-03-31 11:02:30.812381 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31576 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.812387 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.812390 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.812392 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) including xattrs version 0
2015-03-31 11:02:30.812430 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.812449 7fbe406af700  5 mds.0.log _submit_thread 5419751648~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.812447 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.812462 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.812475 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.812489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812511 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812522 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812532 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812542 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812554 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812565 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812576 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ipolicy sync r=1) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812587 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812597 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812882 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408329 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.812900 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408329 cr=0x25e38500)
2015-03-31 11:02:30.812902 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408329 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.812905 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408329 cr=0x25e38500) #1000006b2fd
2015-03-31 11:02:30.812907 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fd snap head
2015-03-31 11:02:30.812908 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.812909 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f437648]
2015-03-31 11:02:30.812922 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408329 cr=0x25e38500)
2015-03-31 11:02:30.812924 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.812940 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.812951 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.812962 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f437648]
2015-03-31 11:02:30.812971 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.812985 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.812999 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813008 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.813020 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813030 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.813041 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f437648]
2015-03-31 11:02:30.813050 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_pin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f437648] now 1+0
2015-03-31 11:02:30.813060 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813075 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813089 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813099 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813109 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813120 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813130 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.813151 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.813176 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408329 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.813180 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408329 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.813190 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.813193 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.813196 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.813199 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.813211 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408329 cr=0x25e38500)
2015-03-31 11:02:30.813230 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813245 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813259 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813269 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813278 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813288 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813309 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.813320 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.813329 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.813344 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.813355 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.813366 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_unpin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648] now 0+0
2015-03-31 11:02:30.813660 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408330 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.813678 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408330 cr=0x25e39e00)
2015-03-31 11:02:30.813680 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408330 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.813683 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408330 cr=0x25e39e00) #1000006b2fd
2015-03-31 11:02:30.813684 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fd snap head
2015-03-31 11:02:30.813686 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.813686 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.813698 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408330 cr=0x25e39e00)
2015-03-31 11:02:30.813700 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813715 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813726 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813736 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.813746 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813759 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.813773 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813787 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.813798 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813807 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.813818 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.813827 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_pin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648] now 1+0
2015-03-31 11:02:30.813837 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813851 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.813865 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813876 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.813886 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813896 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.813907 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.813926 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.813954 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408330 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.813957 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408330 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.813967 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.813970 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.813974 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.813977 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.813989 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408330 cr=0x25e39e00)
2015-03-31 11:02:30.814008 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.814023 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.814037 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.814046 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.814067 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.814077 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.814087 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.814098 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.814107 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.814121 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.814131 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.814142 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_unpin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648] now 0+0
2015-03-31 11:02:30.817968 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e76 follows 0 op update
2015-03-31 11:02:30.817971 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.817979 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.817981 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.817996 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.817997 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818002 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818010 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.818012 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818022 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818041 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818048 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.818049 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818056 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818060 7fbe406af700  5 mds.0.log _submit_thread 5419753288~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.818063 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818069 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818074 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818081 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818086 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818092 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.818102 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.858027 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408331 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.858048 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408331 cr=0x49d7300)
2015-03-31 11:02:30.858051 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408331 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.858055 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408331 cr=0x49d7300) #1000006b2fd
2015-03-31 11:02:30.858057 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fd snap head
2015-03-31 11:02:30.858058 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.858059 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.858076 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408331 cr=0x49d7300)
2015-03-31 11:02:30.858079 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.858097 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.858109 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.858121 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.858132 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.858147 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.858161 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.858171 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.858182 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.858193 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.858204 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.858214 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_pin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648] now 1+0
2015-03-31 11:02:30.858226 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.858241 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.858256 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.858267 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.858278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.858289 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.858300 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.858310 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.858328 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408331 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.858332 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408331 getattr Xs #1000006b2fd 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:30.858343 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.858347 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.858352 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.858355 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.858370 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408331 cr=0x49d7300)
2015-03-31 11:02:30.858379 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.858396 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.858411 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.858432 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.858442 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.858452 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.858474 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.858484 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.858494 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.858520 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.858530 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.858540 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_unpin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648] now 0+0
2015-03-31 11:02:30.859844 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e76 follows 0 op update
2015-03-31 11:02:30.859847 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859859 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.859861 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.859879 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.859880 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859887 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859895 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.859897 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859902 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859910 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859915 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.859916 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859922 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859929 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859935 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859941 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.859942 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.859943 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e76 [2,head] /test_small/small1/blarg10095 auth v137008 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e998670]
2015-03-31 11:02:30.859950 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.899071 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408332 getattr Xs #1000006b2fd 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.899088 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408332 cr=0xaee8f00)
2015-03-31 11:02:30.899090 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408332 getattr Xs #1000006b2fd 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.899093 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408332 cr=0xaee8f00) #1000006b2fd
2015-03-31 11:02:30.899095 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fd snap head
2015-03-31 11:02:30.899096 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.899097 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.899113 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408332 cr=0xaee8f00)
2015-03-31 11:02:30.899116 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.899137 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.899149 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.899160 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.899171 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.899185 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.899200 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.899210 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.899222 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.899232 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.899244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:30.899264 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_pin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648] now 1+0
2015-03-31 11:02:30.899285 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.899298 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.899312 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.899321 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.899331 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.899341 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.899350 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.899360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.899375 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408332 getattr Xs #1000006b2fd 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.899378 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408332 getattr Xs #1000006b2fd 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.899389 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.899393 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.899397 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.899400 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.899413 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408332 cr=0xaee8f00)
2015-03-31 11:02:30.899432 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.899448 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.899462 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.899472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.899483 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.899493 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.899514 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.899525 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f437648]
2015-03-31 11:02:30.899534 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.899548 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.899557 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.899568 7fbe462be700 10 mds.0.cache.ino(1000006b2fd) auth_unpin by 0x2b0c2300 on [inode 1000006b2fd [2,head] {#1000006b2fd /test_small/small5/blarg10095} auth v178806 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f437648] now 0+0
2015-03-31 11:02:30.899928 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408333 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.899948 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408333 cr=0xaee9180)
2015-03-31 11:02:30.899951 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408333 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.899955 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408333 cr=0xaee9180) #10000004e85
2015-03-31 11:02:30.899957 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e85 snap head
2015-03-31 11:02:30.899958 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.899959 7fbe462be700 10 mds.0.server ref is [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.899973 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408333 cr=0xaee9180)
2015-03-31 11:02:30.899976 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.899994 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.900006 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.900016 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.900023 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.900037 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.900052 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.900062 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.900073 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.900083 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.900092 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.900097 7fbe462be700 10 mds.0.cache.ino(10000004e85) auth_pin by 0x2b0c2300 on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e997d38] now 1+0
2015-03-31 11:02:30.900104 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.900119 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.900134 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.900155 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.900165 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.900184 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.900204 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900210 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900216 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900221 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900235 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408333 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.900239 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408333 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.900249 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.900252 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.900256 7fbe462be700 10 mds.0.cache.ino(10000004e85) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.900258 7fbe462be700 10 mds.0.cache.ino(10000004e85) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.900271 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408333 cr=0xaee9180)
2015-03-31 11:02:30.900290 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.900306 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.900320 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.900331 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.900341 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.900349 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.900370 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900376 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900382 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900389 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.900394 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.900409 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.900419 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.900428 7fbe462be700 10 mds.0.cache.ino(10000004e85) auth_unpin by 0x2b0c2300 on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e997d38] now 0+0
2015-03-31 11:02:30.900804 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408334 lookup #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.900823 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408334 cr=0xaeeeb80)
2015-03-31 11:02:30.900825 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408334 lookup #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.900828 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408334 cr=0xaeeeb80) #1000006026a/blarg10096
2015-03-31 11:02:30.900830 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.900832 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10096 [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock) v=177790 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.900841 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.900842 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408334 lookup #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.900852 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.900864 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408334 cr=0xaeeeb80)
2015-03-31 11:02:30.901350 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408335 lookup #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.901369 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408335 cr=0x26d3bc00)
2015-03-31 11:02:30.901372 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408335 lookup #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.901374 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408335 cr=0x26d3bc00) #1000006026a/blarg10096
2015-03-31 11:02:30.901376 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.901379 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10096 [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock) v=177790 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.901387 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.901388 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408335 lookup #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.901398 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.901410 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408335 cr=0x26d3bc00)
2015-03-31 11:02:30.901889 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408336 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.901909 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408336 cr=0x26d39680)
2015-03-31 11:02:30.901912 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408336 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.901915 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408336 cr=0x26d39680) #10000004e85
2015-03-31 11:02:30.901917 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e85 snap head
2015-03-31 11:02:30.901918 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.901919 7fbe462be700 10 mds.0.server ref is [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.901932 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408336 cr=0x26d39680)
2015-03-31 11:02:30.901935 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.901953 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.901964 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.901974 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.901979 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.901993 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.902007 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902017 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.902028 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.902037 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2b0c2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.902046 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.902051 7fbe462be700 10 mds.0.cache.ino(10000004e85) auth_pin by 0x2b0c2300 on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997d38] now 1+0
2015-03-31 11:02:30.902058 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902073 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902087 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902098 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902118 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.902127 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.902146 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902152 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902158 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902164 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902177 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408336 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.902181 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408336 getattr Xs #10000004e85 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.902192 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.902195 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.902198 7fbe462be700 10 mds.0.cache.ino(10000004e85) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.902200 7fbe462be700 10 mds.0.cache.ino(10000004e85) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.902214 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408336 cr=0x26d39680)
2015-03-31 11:02:30.902233 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902249 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902264 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902274 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902284 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.902293 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.902313 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902320 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902327 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902334 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e997d38]
2015-03-31 11:02:30.902339 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.902353 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.902364 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2b0c2300 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.902373 7fbe462be700 10 mds.0.cache.ino(10000004e85) auth_unpin by 0x2b0c2300 on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e997d38] now 0+0
2015-03-31 11:02:30.902721 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408337 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.902742 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408337 cr=0x45a2f80)
2015-03-31 11:02:30.902744 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408337 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.902747 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408337 cr=0x45a2f80) #1000006026a
2015-03-31 11:02:30.902749 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.902750 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.902751 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.902769 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408337 cr=0x45a2f80)
2015-03-31 11:02:30.902772 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902793 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902804 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.902815 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902829 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.902844 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902853 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.902864 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.902874 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.902885 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902899 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.902913 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902934 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.902944 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.902965 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.902975 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.902985 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (ixattr sync r=1) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31576} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903001 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408337 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.903005 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408337 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.903015 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.903019 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.903023 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31577
2015-03-31 11:02:30.903025 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31577 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.903038 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408337 cr=0x45a2f80)
2015-03-31 11:02:30.903056 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903072 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903087 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903097 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903107 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903118 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903140 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903150 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903160 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:30.903174 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:30.903184 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:30.903555 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408338 create #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.903576 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408338 cr=0x45a4380)
2015-03-31 11:02:30.903578 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408338 create #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.903581 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10096
2015-03-31 11:02:30.903582 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408338 cr=0x45a4380) #1000006026a/blarg10096
2015-03-31 11:02:30.903584 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10096
2015-03-31 11:02:30.903586 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.903587 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.903589 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178807 v=178799 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.903598 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178807 v=178799 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.903606 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10096 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178807 v=178799 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.903617 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408338 cr=0x45a4380)
2015-03-31 11:02:30.903622 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903641 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903652 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock) v=177790 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903658 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903670 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903684 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.903698 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903708 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.903719 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock) v=177790 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903724 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10096) auth_pin by 0x2b0c2300 on [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock) v=177790 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60] now 1+0
2015-03-31 11:02:30.903730 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903741 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.903763 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock) v=177790 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903768 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177790 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903773 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177790 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903777 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177790 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903789 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177790 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903805 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10096) auth_pin by 0x3cebeb8 on [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177790 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60] now 2+0
2015-03-31 11:02:30.903810 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2b0c2300) [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2300) (dversion lock w=1 last_client=708310) v=177790 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.903815 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903830 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903843 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903855 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.903868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903878 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903887 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903896 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.903905 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903915 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903925 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903934 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903944 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903953 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903963 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=4) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903972 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=5) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903981 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.903991 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904009 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2fe ([1000006b2ff~324], 804 left)
2015-03-31 11:02:30.904012 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.904013 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2fe [2,head] #1000006b2fe auth v1 s=0 n() (iversion lock) 0x3f325228]
2015-03-31 11:02:30.904017 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178808
2015-03-31 11:02:30.904018 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10096)  pre_dirty [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2300) (dversion lock w=1 last_client=708310) pv=178808 v=177790 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.904025 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f325228]
2015-03-31 11:02:30.904032 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2b0c2300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178808 v=178799 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:30.904041 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x26949080
2015-03-31 11:02:30.904043 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178809
2015-03-31 11:02:30.904044 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178809 v=178799 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.904050 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178809 v=178799 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.904057 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f325228]
2015-03-31 11:02:30.904062 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.904064 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295379 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904077 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295381
2015-03-31 11:02:30.904078 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295381 v=3295371 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.904082 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295381 (current v 3295371)
2015-03-31 11:02:30.904083 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178809 v=178799 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.904090 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.904092 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2b0c2300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295381 v=3295372 cv=3287205/3287205 ap=5+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 6
2015-03-31 11:02:30.904101 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x3953de0
2015-03-31 11:02:30.904102 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295382
2015-03-31 11:02:30.904103 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904114 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904123 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904134 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.904135 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.853173 < 1, stopping
2015-03-31 11:02:30.904139 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904150 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=5 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.904153 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295381 v=3295371 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.904157 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31577} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904170 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f325228]
2015-03-31 11:02:30.904177 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.904179 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f325228]
2015-03-31 11:02:30.904239 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.904241 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904249 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904257 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904263 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904270 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904277 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904284 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904290 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904296 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904303 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904309 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904316 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904321 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904328 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904334 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f325228]
2015-03-31 11:02:30.904344 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.904345 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.904347 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f325228 tracedn 0x3cebd60
2015-03-31 11:02:30.904349 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2b0c2300) [dentry #1/test_small/small5/blarg10096 [2,head] auth NULL (dn xlock x=1 by 0x2b0c2300) (dversion lock w=1 last_client=708310) pv=178808 v=177790 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebd60]
2015-03-31 11:02:30.904356 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408338 create #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.904364 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.904367 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31578
2015-03-31 11:02:30.904369 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31578 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.904374 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.904378 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.904380 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) including xattrs version 0
2015-03-31 11:02:30.904416 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.904444 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.904456 7fbe406af700  5 mds.0.log _submit_thread 5419754147~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.904459 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.904473 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.904487 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904521 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904531 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904542 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904554 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904566 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904576 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ipolicy sync r=1) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904587 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904597 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904854 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408339 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.904873 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408339 cr=0x5416b80)
2015-03-31 11:02:30.904876 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408339 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.904879 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408339 cr=0x5416b80) #1000006b2fe
2015-03-31 11:02:30.904881 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fe snap head
2015-03-31 11:02:30.904882 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.904883 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f325228]
2015-03-31 11:02:30.904896 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408339 cr=0x5416b80)
2015-03-31 11:02:30.904899 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.904915 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904925 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.904936 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f325228]
2015-03-31 11:02:30.904944 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.904958 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.904972 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.904982 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.904993 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905003 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.905013 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f325228]
2015-03-31 11:02:30.905022 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_pin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f325228] now 1+0
2015-03-31 11:02:30.905032 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905047 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905061 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905072 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905082 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905093 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905119 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905140 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905155 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408339 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.905159 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408339 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.905167 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.905171 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.905175 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.905177 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.905189 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408339 cr=0x5416b80)
2015-03-31 11:02:30.905208 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905223 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905237 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905247 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905257 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905267 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905288 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905299 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905308 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.905323 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.905334 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.905345 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_unpin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228] now 0+0
2015-03-31 11:02:30.905520 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408340 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.905538 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408340 cr=0x5412a80)
2015-03-31 11:02:30.905541 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408340 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.905544 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408340 cr=0x5412a80) #1000006b2fe
2015-03-31 11:02:30.905546 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fe snap head
2015-03-31 11:02:30.905548 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.905549 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.905571 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408340 cr=0x5412a80)
2015-03-31 11:02:30.905574 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905589 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905600 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905611 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.905620 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905634 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.905648 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905658 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.905668 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905678 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.905688 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.905697 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_pin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228] now 1+0
2015-03-31 11:02:30.905706 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905721 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905735 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905746 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905756 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905767 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905804 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905813 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905827 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408340 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.905830 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408340 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.905840 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.905844 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.905847 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.905849 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.905861 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408340 cr=0x5412a80)
2015-03-31 11:02:30.905880 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905895 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.905909 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905919 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.905940 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905951 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.905961 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905971 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.905981 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.905995 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.906005 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.906016 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_unpin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228] now 0+0
2015-03-31 11:02:30.911675 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e85 follows 0 op update
2015-03-31 11:02:30.911679 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911690 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.911692 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.911710 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.911711 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911717 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911724 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:30.911725 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911736 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911757 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911764 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.911767 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911774 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911775 7fbe406af700  5 mds.0.log _submit_thread 5419755787~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:30.911781 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911793 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911798 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911804 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911809 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911814 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.911824 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.951062 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408341 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.951083 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408341 cr=0x37d1680)
2015-03-31 11:02:30.951088 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408341 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.951092 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408341 cr=0x37d1680) #1000006b2fe
2015-03-31 11:02:30.951094 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fe snap head
2015-03-31 11:02:30.951095 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.951096 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.951111 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408341 cr=0x37d1680)
2015-03-31 11:02:30.951114 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.951132 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.951144 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.951156 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.951167 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.951182 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.951197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.951206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.951217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.951228 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.951250 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.951259 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_pin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228] now 1+0
2015-03-31 11:02:30.951270 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.951294 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.951319 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.951329 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.951338 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.951348 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.951358 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.951367 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.951382 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408341 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.951386 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408341 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.951396 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.951399 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.951404 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:30.951406 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.951419 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408341 cr=0x37d1680)
2015-03-31 11:02:30.951438 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.951454 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.951468 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.951479 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.951489 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.951499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.951520 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.951531 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.951541 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.951555 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.951565 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.951576 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_unpin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228] now 0+0
2015-03-31 11:02:30.952864 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e85 follows 0 op update
2015-03-31 11:02:30.952867 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952879 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:30.952880 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.952898 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:30.952899 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952906 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952914 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:30.952916 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952921 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952929 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952934 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:30.952935 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952942 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952949 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952954 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952959 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:30.952961 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:30.952962 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e85 [2,head] /test_small/small1/blarg10096 auth v137010 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997d38]
2015-03-31 11:02:30.952969 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.992071 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408342 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.992092 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408342 cr=0x37d0780)
2015-03-31 11:02:30.992096 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408342 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.992100 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408342 cr=0x37d0780) #1000006b2fe
2015-03-31 11:02:30.992102 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2fe snap head
2015-03-31 11:02:30.992103 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.992104 7fbe462be700 10 mds.0.server ref is [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.992121 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408342 cr=0x37d0780)
2015-03-31 11:02:30.992124 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992142 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992155 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.992167 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.992177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992192 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.992207 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992217 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.992229 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.992239 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.992260 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:30.992270 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_pin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228] now 1+0
2015-03-31 11:02:30.992280 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992305 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992330 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992340 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992350 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.992360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.992369 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.992378 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.992393 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408342 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.992397 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408342 getattr Xs #1000006b2fe 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.992407 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.992411 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.992415 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:30.992418 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.992431 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408342 cr=0x37d0780)
2015-03-31 11:02:30.992450 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992480 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992501 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.992512 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.992533 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.992543 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f325228]
2015-03-31 11:02:30.992553 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.992568 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.992578 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.992589 7fbe462be700 10 mds.0.cache.ino(1000006b2fe) auth_unpin by 0x28ebe400 on [inode 1000006b2fe [2,head] {#1000006b2fe /test_small/small5/blarg10096} auth v178808 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f325228] now 0+0
2015-03-31 11:02:30.992880 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408343 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.992897 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408343 cr=0x5e88f00)
2015-03-31 11:02:30.992899 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408343 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.992902 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408343 cr=0x5e88f00) #10000004e7e
2015-03-31 11:02:30.992904 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7e snap head
2015-03-31 11:02:30.992906 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.992907 7fbe462be700 10 mds.0.server ref is [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:30.992916 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408343 cr=0x5e88f00)
2015-03-31 11:02:30.992919 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992934 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992944 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.992953 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:30.992958 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.992972 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.992986 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.992995 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.993005 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.993014 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.993023 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:30.993028 7fbe462be700 10 mds.0.cache.ino(10000004e7e) auth_pin by 0x28ebe400 on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e997400] now 1+0
2015-03-31 11:02:30.993035 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.993049 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.993063 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.993073 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.993083 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.993092 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.993101 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993108 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993114 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993120 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993144 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408343 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.993148 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408343 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.993170 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.993173 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.993177 7fbe462be700 10 mds.0.cache.ino(10000004e7e) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:30.993179 7fbe462be700 10 mds.0.cache.ino(10000004e7e) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.993191 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408343 cr=0x5e88f00)
2015-03-31 11:02:30.993210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.993225 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.993239 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.993250 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.993259 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.993268 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.993288 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993295 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993302 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993308 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.993313 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.993328 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.993338 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.993347 7fbe462be700 10 mds.0.cache.ino(10000004e7e) auth_unpin by 0x28ebe400 on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e997400] now 0+0
2015-03-31 11:02:30.993691 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408344 lookup #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.993712 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408344 cr=0x5e8f080)
2015-03-31 11:02:30.993714 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408344 lookup #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.993716 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408344 cr=0x5e8f080) #1000006026a/blarg10097
2015-03-31 11:02:30.993718 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.993721 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10097 [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock) v=177792 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.993729 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.993730 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408344 lookup #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.993740 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.993752 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408344 cr=0x5e8f080)
2015-03-31 11:02:30.994237 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408345 lookup #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.994256 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408345 cr=0x26903480)
2015-03-31 11:02:30.994259 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408345 lookup #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.994262 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408345 cr=0x26903480) #1000006026a/blarg10097
2015-03-31 11:02:30.994263 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.994266 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10097 [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock) v=177792 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.994274 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:30.994275 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408345 lookup #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.994285 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.994296 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408345 cr=0x26903480)
2015-03-31 11:02:30.994765 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408346 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.994792 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408346 cr=0x26900000)
2015-03-31 11:02:30.994795 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408346 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.994798 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408346 cr=0x26900000) #10000004e7e
2015-03-31 11:02:30.994800 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004e7e snap head
2015-03-31 11:02:30.994801 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.994802 7fbe462be700 10 mds.0.server ref is [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:30.994813 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408346 cr=0x26900000)
2015-03-31 11:02:30.994816 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.994833 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.994845 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.994854 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:30.994861 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.994875 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.994889 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.994898 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.994909 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:30.994917 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:30.994927 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:30.994932 7fbe462be700 10 mds.0.cache.ino(10000004e7e) auth_pin by 0x28ebe400 on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997400] now 1+0
2015-03-31 11:02:30.994939 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.994953 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.994967 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.994978 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.994999 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.995020 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.995028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995033 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995039 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995044 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995057 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408346 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.995061 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408346 getattr Xs #10000004e7e 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.995071 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.995074 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.995078 7fbe462be700 10 mds.0.cache.ino(10000004e7e) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:30.995081 7fbe462be700 10 mds.0.cache.ino(10000004e7e) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.995095 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408346 cr=0x26900000)
2015-03-31 11:02:30.995114 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995130 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995144 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995154 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995175 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.995185 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:30.995195 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995202 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995209 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995215 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e997400]
2015-03-31 11:02:30.995220 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.995235 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.995245 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x28ebe400 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:30.995254 7fbe462be700 10 mds.0.cache.ino(10000004e7e) auth_unpin by 0x28ebe400 on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e997400] now 0+0
2015-03-31 11:02:30.995540 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408347 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.995557 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408347 cr=0x9d48280)
2015-03-31 11:02:30.995559 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408347 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.995562 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408347 cr=0x9d48280) #1000006026a
2015-03-31 11:02:30.995563 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.995565 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.995565 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995581 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408347 cr=0x9d48280)
2015-03-31 11:02:30.995583 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995597 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995607 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995618 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995631 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.995645 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995655 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.995665 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995675 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.995686 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995701 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995714 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995725 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995735 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995745 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995756 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995766 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (ixattr sync r=1) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31578} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995787 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408347 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.995802 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408347 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.995825 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.995827 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.995830 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31579
2015-03-31 11:02:30.995832 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31579 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.995844 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408347 cr=0x9d48280)
2015-03-31 11:02:30.995862 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995878 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.995891 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995902 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.995923 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995934 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995944 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995954 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.995964 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:30.995978 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:30.995988 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:30.996363 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408348 create #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.996383 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408348 cr=0x682eb80)
2015-03-31 11:02:30.996386 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408348 create #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.996389 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10097
2015-03-31 11:02:30.996390 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408348 cr=0x682eb80) #1000006026a/blarg10097
2015-03-31 11:02:30.996392 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10097
2015-03-31 11:02:30.996393 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.996394 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.996396 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178809 v=178799 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.996406 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178809 v=178799 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.996414 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10097 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178809 v=178799 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.996424 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408348 cr=0x682eb80)
2015-03-31 11:02:30.996429 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.996448 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996460 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock) v=177792 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996466 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996478 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.996492 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.996506 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996515 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.996527 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock) v=177792 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996531 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10097) auth_pin by 0x28ebe400 on [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock) v=177792 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40] now 1+0
2015-03-31 11:02:30.996537 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996548 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.996560 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock) v=177792 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996565 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177792 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996570 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177792 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996585 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177792 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996590 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177792 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996595 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10097) auth_pin by 0x3cec098 on [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177792 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40] now 2+0
2015-03-31 11:02:30.996613 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x28ebe400) [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dn xlock x=1 by 0x28ebe400) (dversion lock w=1 last_client=708310) v=177792 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996618 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.996633 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.996646 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.996659 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.996671 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996681 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996691 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996700 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996709 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996719 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996729 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996738 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996747 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996757 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996766 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=5) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996776 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=6) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996789 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996799 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996817 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b2ff ([1000006b300~323], 803 left)
2015-03-31 11:02:30.996820 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:30.996822 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b2ff [2,head] #1000006b2ff auth v1 s=0 n() (iversion lock) 0x3f424f48]
2015-03-31 11:02:30.996826 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178810
2015-03-31 11:02:30.996827 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10097)  pre_dirty [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dn xlock x=1 by 0x28ebe400) (dversion lock w=1 last_client=708310) pv=178810 v=177792 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.996834 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f424f48]
2015-03-31 11:02:30.996840 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x28ebe400 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178810 v=178799 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 6 + 12
2015-03-31 11:02:30.996850 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d0420
2015-03-31 11:02:30.996851 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178811
2015-03-31 11:02:30.996852 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178799 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.996858 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178799 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.996864 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f424f48]
2015-03-31 11:02:30.996870 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.996872 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295381 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996885 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295383
2015-03-31 11:02:30.996886 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295371 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.996890 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295383 (current v 3295371)
2015-03-31 11:02:30.996891 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178799 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=107+1497,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:30.996898 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:30.996900 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x28ebe400 on [dir 10000000000 /test_small/ [2,head] auth pv=3295383 v=3295372 cv=3287205/3287205 ap=6+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 6 + 7
2015-03-31 11:02:30.996909 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x2694aec0
2015-03-31 11:02:30.996910 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295384
2015-03-31 11:02:30.996911 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996923 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996933 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996943 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:30.996944 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.945981 < 1, stopping
2015-03-31 11:02:30.996948 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.996958 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=6 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:30.996962 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295371 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:30.996966 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31579} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.996978 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f424f48]
2015-03-31 11:02:30.996985 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:30.996988 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f424f48]
2015-03-31 11:02:30.996995 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:30.996996 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997004 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997011 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997017 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997023 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997030 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997036 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997043 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997049 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997055 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997061 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997067 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997074 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997080 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997087 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f424f48]
2015-03-31 11:02:30.997097 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:30.997098 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:30.997100 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f424f48 tracedn 0x3cebf40
2015-03-31 11:02:30.997102 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x28ebe400) [dentry #1/test_small/small5/blarg10097 [2,head] auth NULL (dn xlock x=1 by 0x28ebe400) (dversion lock w=1 last_client=708310) pv=178810 v=177792 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cebf40]
2015-03-31 11:02:30.997108 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408348 create #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.997114 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.997118 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31580
2015-03-31 11:02:30.997120 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31580 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.997125 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:30.997128 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:30.997131 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) including xattrs version 0
2015-03-31 11:02:30.997166 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997194 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997207 7fbe406af700  5 mds.0.log _submit_thread 5419756646~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:30.997209 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997234 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997249 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997260 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997271 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997281 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997292 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997304 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997315 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997326 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ipolicy sync r=1) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997336 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997346 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997573 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408349 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.997593 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408349 cr=0x682fd00)
2015-03-31 11:02:30.997595 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408349 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.997598 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408349 cr=0x682fd00) #1000006b2ff
2015-03-31 11:02:30.997600 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ff snap head
2015-03-31 11:02:30.997602 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.997603 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f424f48]
2015-03-31 11:02:30.997615 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408349 cr=0x682fd00)
2015-03-31 11:02:30.997618 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997633 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997643 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997654 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f424f48]
2015-03-31 11:02:30.997663 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997677 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.997692 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997701 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.997712 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997722 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.997733 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f424f48]
2015-03-31 11:02:30.997742 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_pin by 0x24afa300 on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f424f48] now 1+0
2015-03-31 11:02:30.997752 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997767 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997781 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997796 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997806 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997817 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.997837 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.997859 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.997874 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408349 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.997878 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408349 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.997888 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.997891 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.997895 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:30.997898 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.997910 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408349 cr=0x682fd00)
2015-03-31 11:02:30.997929 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997944 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.997958 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997968 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.997989 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998000 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998010 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.998021 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.998030 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.998045 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.998055 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.998066 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_unpin by 0x24afa300 on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f424f48] now 0+0
2015-03-31 11:02:30.998327 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408350 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.998344 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408350 cr=0x2645af80)
2015-03-31 11:02:30.998346 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408350 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.998349 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408350 cr=0x2645af80) #1000006b2ff
2015-03-31 11:02:30.998351 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ff snap head
2015-03-31 11:02:30.998352 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.998353 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f424f48]
2015-03-31 11:02:30.998365 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408350 cr=0x2645af80)
2015-03-31 11:02:30.998368 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998383 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.998393 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998404 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f424f48]
2015-03-31 11:02:30.998413 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998427 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.998441 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.998451 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.998461 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998472 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.998483 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f424f48]
2015-03-31 11:02:30.998492 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_pin by 0x24afa300 on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48] now 1+0
2015-03-31 11:02:30.998502 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998516 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998530 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.998541 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.998550 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998561 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998572 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.998592 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.998618 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408350 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.998622 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408350 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.998631 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.998634 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.998637 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:30.998641 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.998653 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408350 cr=0x2645af80)
2015-03-31 11:02:30.998671 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998687 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998701 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.998712 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.998733 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998743 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998754 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.998764 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:30.998774 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.998792 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.998814 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:30.998825 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_unpin by 0x24afa300 on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f424f48] now 0+0
2015-03-31 11:02:30.998884 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408351 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.998902 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408351 cr=0x2645a580)
2015-03-31 11:02:30.998904 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408351 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.998907 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408351 cr=0x2645a580) #1000006026a
2015-03-31 11:02:30.998909 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:30.998910 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:30.998911 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998926 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408351 cr=0x2645a580)
2015-03-31 11:02:30.998928 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998943 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.998953 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.998963 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.998977 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:30.998991 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.999011 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:30.999022 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999031 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:30.999042 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.999056 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.999070 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.999079 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.999089 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999099 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999110 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999119 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (ixattr sync r=1) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31580} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999146 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408351 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.999162 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408351 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:30.999171 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:30.999175 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:30.999178 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31581
2015-03-31 11:02:30.999180 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31581 mseq 0 xattrv 0 len 0
2015-03-31 11:02:30.999191 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408351 cr=0x2645a580)
2015-03-31 11:02:30.999210 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.999224 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:30.999238 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.999248 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:30.999268 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999290 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999300 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999310 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:30.999321 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:30.999335 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:30.999345 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:31.039063 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408352 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.039090 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408352 cr=0x26459e00)
2015-03-31 11:02:31.039094 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408352 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.039098 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408352 cr=0x26459e00) #1000006026a
2015-03-31 11:02:31.039100 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.039102 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.039103 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039122 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408352 cr=0x26459e00)
2015-03-31 11:02:31.039125 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039143 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039154 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039166 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039180 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:31.039195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039206 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:31.039217 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039227 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:31.039239 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039254 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039268 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039279 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039290 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039300 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039311 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039322 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039344 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:31.039366 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.039376 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0x26462c40 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:31.039379 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.039453 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7e follows 0 op update
2015-03-31 11:02:31.039456 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039464 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.039466 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039481 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.039482 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039488 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039495 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:31.039497 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039507 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039527 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039534 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:31.039535 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039543 7fbe406af700  5 mds.0.log _submit_thread 5419758286~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:31.039543 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039554 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039559 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039564 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039571 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039587 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039594 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.039604 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.039618 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408353 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.039638 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408353 cr=0x43d3c00)
2015-03-31 11:02:31.039640 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408353 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.039644 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408353 cr=0x43d3c00) #1000006b2ff
2015-03-31 11:02:31.039646 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ff snap head
2015-03-31 11:02:31.039647 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.039648 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.039662 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408353 cr=0x43d3c00)
2015-03-31 11:02:31.039664 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039681 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039693 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.039704 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.039714 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039729 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 8+0
2015-03-31 11:02:31.039744 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039755 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 8+1
2015-03-31 11:02:31.039766 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.039776 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=9+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 9+1
2015-03-31 11:02:31.039797 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.039817 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_pin by 0x2367d000 on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48] now 1+0
2015-03-31 11:02:31.039839 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1 [...2,head] / auth v53476 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039854 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1 [...2,head] / auth v53476 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=2) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.039879 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039889 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=2) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.039898 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=9+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.039908 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=9+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=2) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.039917 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.039927 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.039941 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408353 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.039944 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408353 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.039954 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.039958 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.039962 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:31.039965 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.039977 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408353 cr=0x43d3c00)
2015-03-31 11:02:31.039996 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1 [...2,head] / auth v53476 ap=8+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.040012 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=8+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.040023 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync r=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=9+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.040034 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.040044 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.040054 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 7+0
2015-03-31 11:02:31.040080 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 7+1
2015-03-31 11:02:31.040090 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 8+1
2015-03-31 11:02:31.040101 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_unpin by 0x2367d000 on [inode 1000006b2ff [2,head] {#1000006b2ff /test_small/small5/blarg10097} auth v178810 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f424f48] now 0+0
2015-03-31 11:02:31.041282 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004e7e follows 0 op update
2015-03-31 11:02:31.041285 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041296 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.041298 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 ap=7+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.041317 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.041318 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041324 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041333 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:31.041334 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041340 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041348 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041354 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:31.041355 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041362 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041367 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041373 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041378 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:31.041379 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:31.041380 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004e7e [2,head] /test_small/small1/blarg10097 auth v137012 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e997400]
2015-03-31 11:02:31.041387 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.053256 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:31.053262 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:31.053281 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:31.053283 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fa) mark_dirty [inode 1000006b2fa [2,head] /test_small/small5/blarg10092 auth v178799 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:31.053297 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10092)  mark_dirty [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178800 v=177782 ap=2+0 inode=0x3f3f48e8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0]
2015-03-31 11:02:31.053304 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178800 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 107=107+0) hs=108+1496,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178800
2015-03-31 11:02:31.053314 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fa) mark_dirty_parent
2015-03-31 11:02:31.053315 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295371 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 107=107+0) n(v1 rc2015-03-31 11:03:07.000000 108=107+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053333 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295371 ap=0+9 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.053337 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295373 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382410=382403+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295373
2015-03-31 11:02:31.053348 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178801 cv=170705/170705 ap=6+12+12 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 108=108+0) hs=108+1496,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178801
2015-03-31 11:02:31.053355 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295374 cv=3287205/3287205 ap=6+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382411=382404+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295374
2015-03-31 11:02:31.053363 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2fa [2,head] /test_small/small5/blarg10092 auth v178800 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f3f48e8]
2015-03-31 11:02:31.053374 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:31.053376 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27584 client_caps(grant ino 1000006b2fa 1851567 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:31.053397 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178800 ap=2+0 inode=0x3f3f48e8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0]
2015-03-31 11:02:31.053406 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408298 create #1000006026a/blarg10092 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:31.053419 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2fa
2015-03-31 11:02:31.053423 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178800 ap=2+0 inode=0x3f3f48e8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0]
2015-03-31 11:02:31.053432 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178800 ap=2+0 inode=0x3f3f48e8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0]
2015-03-31 11:02:31.053437 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178800 ap=2+0 inode=0x3f3f48e8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0]
2015-03-31 11:02:31.053443 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10092) auth_unpin by 0x3ceb738 on [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178800 ap=1+0 inode=0x3f3f48e8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0] now 1+0
2015-03-31 11:02:31.053449 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178800 ap=1+0 inode=0x3f3f48e8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0]
2015-03-31 11:02:31.053456 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=7+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=6 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.053471 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178800 ap=1+0 inode=0x3f3f48e8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb5e0]
2015-03-31 11:02:31.053477 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=6 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295373 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 109=108+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=6 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053490 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295373 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 109=108+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=6) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053502 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=6) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295373 pv3295383 ap=8+1 f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 109=108+1) (isnap sync r=1) (inest lock w=6) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053533 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408298 cr=0x2645bc00)
2015-03-31 11:02:31.053541 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x23dd2300 on [inode 1 [...2,head] / auth v53476 ap=6+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 6+0
2015-03-31 11:02:31.053557 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x23dd2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 6+1
2015-03-31 11:02:31.053569 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10092) auth_unpin by 0x23dd2300 on [dentry #1/test_small/small5/blarg10092 [2,head] auth (dn sync l=1) (dversion lock) v=178800 inode=0x3f3f48e8 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3ceb5e0] now 0+0
2015-03-31 11:02:31.053574 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x23dd2300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295374 cv=3287205/3287205 ap=5+8+9 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382411=382404+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 5 + 9
2015-03-31 11:02:31.053596 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x23dd2300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178801 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 108=108+0) hs=108+1496,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 5 + 10
2015-03-31 11:02:31.053603 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x23dd2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295373 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 109=108+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 7+1
2015-03-31 11:02:31.053632 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:31.053634 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:31.053638 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:31.053639 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fb) mark_dirty [inode 1000006b2fb [2,head] /test_small/small5/blarg10093 auth v178801 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f348db8]
2015-03-31 11:02:31.053650 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10093)  mark_dirty [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178802 v=177784 ap=2+0 inode=0x3f348db8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0]
2015-03-31 11:02:31.053656 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178802 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 108=108+0) hs=109+1495,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178802
2015-03-31 11:02:31.053665 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fb) mark_dirty_parent
2015-03-31 11:02:31.053667 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295373 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 108=108+0) n(v1 rc2015-03-31 11:03:07.000000 109=108+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053678 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295373 ap=0+8 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.053682 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295375 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382411=382404+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295375
2015-03-31 11:02:31.053692 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178803 cv=170705/170705 ap=5+10+10 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 109=109+0) hs=109+1495,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178803
2015-03-31 11:02:31.053709 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295376 cv=3287205/3287205 ap=5+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382412=382405+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295376
2015-03-31 11:02:31.053716 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2fb [2,head] /test_small/small5/blarg10093 auth v178802 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f348db8]
2015-03-31 11:02:31.053727 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:31.053729 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27585 client_caps(grant ino 1000006b2fb 1851568 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:31.053747 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178802 ap=2+0 inode=0x3f348db8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0]
2015-03-31 11:02:31.053755 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408308 create #1000006026a/blarg10093 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:31.053766 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2fb
2015-03-31 11:02:31.053769 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178802 ap=2+0 inode=0x3f348db8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0]
2015-03-31 11:02:31.053777 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178802 ap=2+0 inode=0x3f348db8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0]
2015-03-31 11:02:31.053788 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178802 ap=2+0 inode=0x3f348db8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0]
2015-03-31 11:02:31.053792 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10093) auth_unpin by 0x3ceb918 on [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178802 ap=1+0 inode=0x3f348db8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0] now 1+0
2015-03-31 11:02:31.053798 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178802 ap=1+0 inode=0x3f348db8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0]
2015-03-31 11:02:31.053802 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=6+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=5 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.053817 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178802 ap=1+0 inode=0x3f348db8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb7c0]
2015-03-31 11:02:31.053822 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=5 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295375 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 110=109+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=5 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053835 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295375 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 110=109+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=5) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053846 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=5) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295375 pv3295383 ap=7+1 f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 110=109+1) (isnap sync r=1) (inest lock w=5) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.053867 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408308 cr=0x9cc5280)
2015-03-31 11:02:31.053875 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2800 on [inode 1 [...2,head] / auth v53476 ap=5+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 5+0
2015-03-31 11:02:31.053891 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2800 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 5+1
2015-03-31 11:02:31.053903 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10093) auth_unpin by 0x2b0c2800 on [dentry #1/test_small/small5/blarg10093 [2,head] auth (dn sync l=1) (dversion lock) v=178802 inode=0x3f348db8 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3ceb7c0] now 0+0
2015-03-31 11:02:31.053908 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2b0c2800 on [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295376 cv=3287205/3287205 ap=4+7+8 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382412=382405+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 4 + 8
2015-03-31 11:02:31.053919 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2b0c2800 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178803 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 109=109+0) hs=109+1495,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 4 + 8
2015-03-31 11:02:31.053927 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2800 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295375 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 110=109+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 6+1
2015-03-31 11:02:31.053955 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:31.053957 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:31.053961 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:31.053963 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fc) mark_dirty [inode 1000006b2fc [2,head] /test_small/small5/blarg10094 auth v178803 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:31.053974 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10094)  mark_dirty [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178804 v=177786 ap=2+0 inode=0x3f4df0f0 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0]
2015-03-31 11:02:31.053980 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178804 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 109=109+0) hs=110+1494,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178804
2015-03-31 11:02:31.053989 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fc) mark_dirty_parent
2015-03-31 11:02:31.053990 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295375 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 109=109+0) n(v1 rc2015-03-31 11:03:07.000000 110=109+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054002 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295375 ap=0+7 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.054006 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295377 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382412=382405+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295377
2015-03-31 11:02:31.054016 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178805 cv=170705/170705 ap=4+8+8 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 110=110+0) hs=110+1494,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178805
2015-03-31 11:02:31.054024 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295378 cv=3287205/3287205 ap=4+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382413=382406+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295378
2015-03-31 11:02:31.054032 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2fc [2,head] /test_small/small5/blarg10094 auth v178804 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4df0f0]
2015-03-31 11:02:31.054041 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:31.054044 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27586 client_caps(grant ino 1000006b2fc 1851569 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:31.054063 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178804 ap=2+0 inode=0x3f4df0f0 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0]
2015-03-31 11:02:31.054070 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408318 create #1000006026a/blarg10094 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:31.054080 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2fc
2015-03-31 11:02:31.054083 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178804 ap=2+0 inode=0x3f4df0f0 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0]
2015-03-31 11:02:31.054090 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178804 ap=2+0 inode=0x3f4df0f0 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0]
2015-03-31 11:02:31.054095 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178804 ap=2+0 inode=0x3f4df0f0 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0]
2015-03-31 11:02:31.054100 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10094) auth_unpin by 0x3cebaf8 on [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178804 ap=1+0 inode=0x3f4df0f0 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0] now 1+0
2015-03-31 11:02:31.054106 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178804 ap=1+0 inode=0x3f4df0f0 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0]
2015-03-31 11:02:31.054111 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=5+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=4 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.054125 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178804 ap=1+0 inode=0x3f4df0f0 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3ceb9a0]
2015-03-31 11:02:31.054130 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=4 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295377 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 111=110+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=4 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054143 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295377 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 111=110+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=4) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054154 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=4) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295377 pv3295383 ap=6+1 f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 111=110+1) (isnap sync r=1) (inest lock w=4) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054172 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408318 cr=0x237c1400)
2015-03-31 11:02:31.054179 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242cdf00 on [inode 1 [...2,head] / auth v53476 ap=4+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 4+0
2015-03-31 11:02:31.054195 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cdf00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 4+1
2015-03-31 11:02:31.054207 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10094) auth_unpin by 0x242cdf00 on [dentry #1/test_small/small5/blarg10094 [2,head] auth (dn sync l=1) (dversion lock) v=178804 inode=0x3f4df0f0 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3ceb9a0] now 0+0
2015-03-31 11:02:31.054212 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x242cdf00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295378 cv=3287205/3287205 ap=3+6+7 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382413=382406+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 3 + 7
2015-03-31 11:02:31.054222 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x242cdf00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178805 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 110=110+0) hs=110+1494,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 3 + 6
2015-03-31 11:02:31.054230 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cdf00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295377 pv3295383 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 111=110+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 5+1
2015-03-31 11:02:31.054255 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:31.054257 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:31.054261 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:31.054262 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fd) mark_dirty [inode 1000006b2fd [2,head] /test_small/small5/blarg10095 auth v178805 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f437648]
2015-03-31 11:02:31.054273 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10095)  mark_dirty [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178806 v=177788 ap=2+0 inode=0x3f437648 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80]
2015-03-31 11:02:31.054279 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178806 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 110=110+0) hs=111+1493,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178806
2015-03-31 11:02:31.054288 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fd) mark_dirty_parent
2015-03-31 11:02:31.054289 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295377 pv3295383 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 110=110+0) n(v1 rc2015-03-31 11:03:07.000000 111=110+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054301 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295377 ap=0+6 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.054305 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295379 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382413=382406+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295379
2015-03-31 11:02:31.054315 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178807 cv=170705/170705 ap=3+6+6 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 111=111+0) hs=111+1493,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178807
2015-03-31 11:02:31.054323 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295380 cv=3287205/3287205 ap=3+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382414=382407+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295380
2015-03-31 11:02:31.054332 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2fd [2,head] /test_small/small5/blarg10095 auth v178806 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f437648]
2015-03-31 11:02:31.054342 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:31.054344 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27587 client_caps(grant ino 1000006b2fd 1851570 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:07.000000) v4
2015-03-31 11:02:31.054361 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178806 ap=2+0 inode=0x3f437648 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80]
2015-03-31 11:02:31.054369 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408328 create #1000006026a/blarg10095 2015-03-31 11:03:07.000000) v2
2015-03-31 11:02:31.054379 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2fd
2015-03-31 11:02:31.054382 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178806 ap=2+0 inode=0x3f437648 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80]
2015-03-31 11:02:31.054388 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178806 ap=2+0 inode=0x3f437648 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80]
2015-03-31 11:02:31.054394 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178806 ap=2+0 inode=0x3f437648 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80]
2015-03-31 11:02:31.054399 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10095) auth_unpin by 0x3cebcd8 on [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178806 ap=1+0 inode=0x3f437648 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80] now 1+0
2015-03-31 11:02:31.054404 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178806 ap=1+0 inode=0x3f437648 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80]
2015-03-31 11:02:31.054409 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=4+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=3 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.054422 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178806 ap=1+0 inode=0x3f437648 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebb80]
2015-03-31 11:02:31.054427 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=3 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295379 pv3295383 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 112=111+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=3 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054440 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295379 pv3295383 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 112=111+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=3) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054452 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=3) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295379 pv3295383 ap=5+1 f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 112=111+1) (isnap sync r=1) (inest lock w=3) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054471 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408328 cr=0x25e3b200)
2015-03-31 11:02:31.054479 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2a626e00 on [inode 1 [...2,head] / auth v53476 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:31.054494 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a626e00 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:31.054506 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10095) auth_unpin by 0x2a626e00 on [dentry #1/test_small/small5/blarg10095 [2,head] auth (dn sync l=1) (dversion lock) v=178806 inode=0x3f437648 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3cebb80] now 0+0
2015-03-31 11:02:31.054512 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2a626e00 on [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295380 cv=3287205/3287205 ap=2+5+6 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382414=382407+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 6
2015-03-31 11:02:31.054522 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2a626e00 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178807 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 111=111+0) hs=111+1493,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:31.054530 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a626e00 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295379 pv3295383 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 112=111+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 4+1
2015-03-31 11:02:31.054556 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:31.054558 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:31.054562 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:31.054563 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fe) mark_dirty [inode 1000006b2fe [2,head] /test_small/small5/blarg10096 auth v178807 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f325228]
2015-03-31 11:02:31.054573 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10096)  mark_dirty [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178808 v=177790 ap=2+0 inode=0x3f325228 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60]
2015-03-31 11:02:31.054579 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178808 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 111=111+0) hs=112+1492,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178808
2015-03-31 11:02:31.054586 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fe) mark_dirty_parent
2015-03-31 11:02:31.054588 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295379 pv3295383 ap=4+1 f(v0 m2015-03-31 11:03:07.000000 111=111+0) n(v1 rc2015-03-31 11:03:07.000000 112=111+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054600 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295379 ap=0+5 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.054604 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295381 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382414=382407+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295381
2015-03-31 11:02:31.054614 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178809 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 112=112+0) hs=112+1492,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178809
2015-03-31 11:02:31.054620 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295382 cv=3287205/3287205 ap=2+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382415=382408+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295382
2015-03-31 11:02:31.054629 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2fe [2,head] /test_small/small5/blarg10096 auth v178808 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f325228]
2015-03-31 11:02:31.054639 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:31.054641 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27588 client_caps(grant ino 1000006b2fe 1851571 seq 6 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:08.000000) v4
2015-03-31 11:02:31.054659 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178808 ap=2+0 inode=0x3f325228 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60]
2015-03-31 11:02:31.054666 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408338 create #1000006026a/blarg10096 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.054675 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2fe
2015-03-31 11:02:31.054677 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178808 ap=2+0 inode=0x3f325228 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60]
2015-03-31 11:02:31.054683 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178808 ap=2+0 inode=0x3f325228 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60]
2015-03-31 11:02:31.054689 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178808 ap=2+0 inode=0x3f325228 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60]
2015-03-31 11:02:31.054694 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10096) auth_unpin by 0x3cebeb8 on [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178808 ap=1+0 inode=0x3f325228 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60] now 1+0
2015-03-31 11:02:31.054699 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178808 ap=1+0 inode=0x3f325228 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60]
2015-03-31 11:02:31.054705 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.054718 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178808 ap=1+0 inode=0x3f325228 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebd60]
2015-03-31 11:02:31.054724 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=2 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295381 pv3295383 ap=4+1 f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 113=112+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054736 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295381 pv3295383 ap=4+1 f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 113=112+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054748 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=2) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295381 pv3295383 ap=4+1 f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 113=112+1) (isnap sync r=1) (inest lock w=2) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054766 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408338 cr=0x45a4380)
2015-03-31 11:02:31.054774 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2b0c2300 on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.054799 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2b0c2300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.054810 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10096) auth_unpin by 0x2b0c2300 on [dentry #1/test_small/small5/blarg10096 [2,head] auth (dn sync l=1) (dversion lock) v=178808 inode=0x3f325228 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3cebd60] now 0+0
2015-03-31 11:02:31.054816 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2b0c2300 on [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295382 cv=3287205/3287205 ap=1+4+5 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382415=382408+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 5
2015-03-31 11:02:31.054827 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2b0c2300 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178809 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 112=112+0) hs=112+1492,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:31.054834 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2b0c2300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295381 pv3295383 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 113=112+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:31.054864 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:31.054866 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:31.054871 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:31.054872 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ff) mark_dirty [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178809 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.054882 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10097)  mark_dirty [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178810 v=177792 ap=2+0 inode=0x3f424f48 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40]
2015-03-31 11:02:31.054888 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178810 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 112=112+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178810
2015-03-31 11:02:31.054896 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ff) mark_dirty_parent
2015-03-31 11:02:31.054898 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295381 pv3295383 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 112=112+0) n(v1 rc2015-03-31 11:03:08.000000 113=112+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.054908 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295383 v=3295381 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.054912 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295383 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382415=382408+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295383
2015-03-31 11:02:31.054922 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178811 v=178811 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178811
2015-03-31 11:02:31.054929 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295384 v=3295384 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382416=382409+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295384
2015-03-31 11:02:31.054937 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.054947 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:31.054950 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27589 client_caps(grant ino 1000006b2ff 1851572 seq 5 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:08.000000) v4
2015-03-31 11:02:31.054968 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178810 ap=2+0 inode=0x3f424f48 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40]
2015-03-31 11:02:31.054976 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408348 create #1000006026a/blarg10097 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.054986 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b2ff
2015-03-31 11:02:31.054989 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178810 ap=2+0 inode=0x3f424f48 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40]
2015-03-31 11:02:31.054997 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178810 ap=2+0 inode=0x3f424f48 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40]
2015-03-31 11:02:31.055002 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178810 ap=2+0 inode=0x3f424f48 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40]
2015-03-31 11:02:31.055007 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10097) auth_unpin by 0x3cec098 on [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178810 ap=1+0 inode=0x3f424f48 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40] now 1+0
2015-03-31 11:02:31.055012 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178810 ap=1+0 inode=0x3f424f48 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40]
2015-03-31 11:02:31.055018 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.055032 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.055044 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178810 ap=1+0 inode=0x3f424f48 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cebf40]
2015-03-31 11:02:31.055049 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.055062 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.055074 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.055085 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:31.055088 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.055097 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.055109 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:31.055110 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408352 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.055114 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408352 cr=0x26459e00) #1000006026a
2015-03-31 11:02:31.055116 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.055117 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.055118 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055129 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408352 cr=0x26459e00)
2015-03-31 11:02:31.055132 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.055147 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.055158 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055168 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.055182 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.055191 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055201 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.055215 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.055225 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055235 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055246 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055276 7fbe43ab9700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055286 7fbe43ab9700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055296 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055305 7fbe43ab9700 10 mds.0.locker  got rdlock on (ilink sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055315 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055325 7fbe43ab9700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31581} | dirtyscattered=0 request=1 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055341 7fbe43ab9700 10 mds.0.server reply to stat on client_request(client.708310:40408352 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.055346 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408352 getattr pAsLsXsFs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.055356 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.055359 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.055364 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31582
2015-03-31 11:02:31.055366 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31582 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.055379 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408352 cr=0x26459e00)
2015-03-31 11:02:31.055398 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.055414 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.055439 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.055449 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.055459 7fbe43ab9700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055470 7fbe43ab9700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (ilink sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055501 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055511 7fbe43ab9700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055522 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055532 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055544 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055554 7fbe43ab9700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055569 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055578 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055598 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x24afa300 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.055613 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x24afa300 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.055623 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x24afa300 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.055649 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055661 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055671 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055681 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.055703 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408348 cr=0x682eb80)
2015-03-31 11:02:31.055710 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x28ebe400 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.055726 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x28ebe400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.055737 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10097) auth_unpin by 0x28ebe400 on [dentry #1/test_small/small5/blarg10097 [2,head] auth (dn sync l=1) (dversion lock) v=178810 inode=0x3f424f48 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3cebf40] now 0+0
2015-03-31 11:02:31.055744 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x28ebe400 on [dir 10000000000 /test_small/ [2,head] auth v=3295384 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382416=382409+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:31.055755 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x28ebe400 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178811 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:31.055773 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x28ebe400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.055837 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408354 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.055867 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408354 cr=0x43d1180)
2015-03-31 11:02:31.055869 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408354 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.055873 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408354 cr=0x43d1180) #1000006b2ff
2015-03-31 11:02:31.055875 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b2ff snap head
2015-03-31 11:02:31.055876 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.055877 7fbe462be700 10 mds.0.server ref is [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.055893 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408354 cr=0x43d1180)
2015-03-31 11:02:31.055896 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.055914 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.055926 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.055937 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.055947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.055962 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.055977 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.055988 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.055999 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.056009 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.056020 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f424f48]
2015-03-31 11:02:31.056029 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_pin by 0x2367d000 on [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f424f48] now 1+0
2015-03-31 11:02:31.056040 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056055 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056070 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056082 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056093 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056104 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.056125 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.056152 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408354 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056167 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408354 getattr Xs #1000006b2ff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056178 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.056182 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.056186 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:31.056188 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.056203 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408354 cr=0x43d1180)
2015-03-31 11:02:31.056223 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056240 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056254 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056265 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056276 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056286 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056307 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.056317 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f424f48]
2015-03-31 11:02:31.056327 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.056343 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.056354 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=0+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:31.056364 7fbe462be700 10 mds.0.cache.ino(1000006b2ff) auth_unpin by 0x2367d000 on [inode 1000006b2ff [2,head] /test_small/small5/blarg10097 auth v178810 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f424f48] now 0+0
2015-03-31 11:02:31.056402 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408355 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056421 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408355 cr=0xb261180)
2015-03-31 11:02:31.056422 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408355 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056425 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408355 cr=0xb261180) #1000006026a
2015-03-31 11:02:31.056427 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.056428 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.056429 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.056441 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408355 cr=0xb261180)
2015-03-31 11:02:31.056443 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.056458 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.056469 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.056478 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.056492 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.056507 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.056517 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.056528 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.056536 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.056547 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056561 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056585 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056604 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056615 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056626 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056636 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056647 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31582} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056662 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408355 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056677 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408355 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056687 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.056691 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.056694 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31583
2015-03-31 11:02:31.056696 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31583 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.056708 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408355 cr=0xb261180)
2015-03-31 11:02:31.056728 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056743 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.056758 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056768 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.056778 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056794 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056815 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056824 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.056841 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.056856 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.056866 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.056965 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408356 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056988 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408356 cr=0xb263200)
2015-03-31 11:02:31.056991 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408356 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.056994 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408356 cr=0xb263200) #10000004efa
2015-03-31 11:02:31.056996 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004efa snap head
2015-03-31 11:02:31.056997 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.056998 7fbe462be700 10 mds.0.server ref is [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.057008 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408356 cr=0xb263200)
2015-03-31 11:02:31.057011 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.057026 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.057035 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.057044 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.057050 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.057063 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.057078 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.057088 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.057099 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.057111 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:31.057121 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.057127 7fbe462be700 10 mds.0.cache.ino(10000004efa) auth_pin by 0x2367d000 on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8] now 1+0
2015-03-31 11:02:31.057133 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057148 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057161 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057172 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057183 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.057192 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.057202 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057207 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057224 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057230 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057243 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408356 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.057247 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408356 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.057257 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.057259 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.057263 7fbe462be700 10 mds.0.cache.ino(10000004efa) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:31.057265 7fbe462be700 10 mds.0.cache.ino(10000004efa) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.057277 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408356 cr=0xb263200)
2015-03-31 11:02:31.057297 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057312 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057327 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057337 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057348 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.057357 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.057378 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057384 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057390 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057396 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.057403 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.057418 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.057429 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:31.057438 7fbe462be700 10 mds.0.cache.ino(10000004efa) auth_unpin by 0x2367d000 on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e996ac8] now 0+0
2015-03-31 11:02:31.057546 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408357 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.057562 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408357 cr=0xb267800)
2015-03-31 11:02:31.057564 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408357 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.057567 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408357 cr=0xb267800) #1000006026a
2015-03-31 11:02:31.057569 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.057570 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.057571 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.057584 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408357 cr=0xb267800)
2015-03-31 11:02:31.057586 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.057600 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.057611 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.057625 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.057639 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.057653 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.057663 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.057674 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.057683 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.057694 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057709 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057723 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057734 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057745 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057755 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057766 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057776 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31583} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057807 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408357 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.057811 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408357 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.057830 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.057832 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.057835 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31584
2015-03-31 11:02:31.057837 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31584 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.057850 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408357 cr=0xb267800)
2015-03-31 11:02:31.057869 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057884 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.057899 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057909 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.057920 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057930 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057952 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057961 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.057976 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.057990 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.058001 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.058096 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408358 lookup #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.058114 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408358 cr=0xb261e00)
2015-03-31 11:02:31.058117 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408358 lookup #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.058119 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408358 cr=0xb261e00) #1000006026a/blarg10098
2015-03-31 11:02:31.058122 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.058125 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10098 [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock) v=177794 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec120]
2015-03-31 11:02:31.058132 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:31.058133 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408358 lookup #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.058143 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.058153 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408358 cr=0xb261e00)
2015-03-31 11:02:31.098040 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408359 lookup #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098062 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408359 cr=0x8f08500)
2015-03-31 11:02:31.098066 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408359 lookup #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098069 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408359 cr=0x8f08500) #1000006026a/blarg10098
2015-03-31 11:02:31.098072 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.098075 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10098 [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock) v=177794 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec120]
2015-03-31 11:02:31.098084 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:31.098086 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408359 lookup #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098097 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.098109 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408359 cr=0x8f08500)
2015-03-31 11:02:31.098141 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408360 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098159 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408360 cr=0x8f0d280)
2015-03-31 11:02:31.098161 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408360 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098164 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408360 cr=0x8f0d280) #1000006026a
2015-03-31 11:02:31.098166 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.098167 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.098168 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.098185 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408360 cr=0x8f0d280)
2015-03-31 11:02:31.098188 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.098204 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.098216 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.098227 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.098241 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.098256 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.098265 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.098276 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.098286 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.098298 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098313 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098327 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.098338 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.098349 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098360 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098370 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098380 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31584} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098397 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408360 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098401 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408360 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098411 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.098415 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.098418 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31585
2015-03-31 11:02:31.098420 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31585 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.098443 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408360 cr=0x8f0d280)
2015-03-31 11:02:31.098462 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098491 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098506 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.098517 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.098527 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098537 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098549 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098558 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098575 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.098589 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.098601 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.098638 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408361 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098656 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408361 cr=0x3b9d000)
2015-03-31 11:02:31.098658 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408361 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098661 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408361 cr=0x3b9d000) #1000006026a
2015-03-31 11:02:31.098663 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.098664 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.098665 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.098677 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408361 cr=0x3b9d000)
2015-03-31 11:02:31.098679 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.098694 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.098704 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.098714 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.098728 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.098743 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.098753 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.098764 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.098773 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.098789 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098814 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098838 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.098849 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.098858 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098868 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098878 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098889 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31585} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.098904 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408361 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098908 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408361 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.098917 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.098921 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.098924 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31586
2015-03-31 11:02:31.098926 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31586 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.098938 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408361 cr=0x3b9d000)
2015-03-31 11:02:31.098957 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098973 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.098987 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.098998 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.099009 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.099019 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.099041 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.099049 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.099059 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.099074 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.099085 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.099120 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408362 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.099137 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408362 cr=0x3b9c100)
2015-03-31 11:02:31.099139 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408362 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.099142 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408362 cr=0x3b9c100) #10000004efa
2015-03-31 11:02:31.099144 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004efa snap head
2015-03-31 11:02:31.099145 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.099146 7fbe462be700 10 mds.0.server ref is [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.099154 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408362 cr=0x3b9c100)
2015-03-31 11:02:31.099157 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.099172 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.099181 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.099189 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.099195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.099209 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.099223 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.099233 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.099244 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.099254 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:31.099264 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.099269 7fbe462be700 10 mds.0.cache.ino(10000004efa) auth_pin by 0x2367d000 on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8] now 1+0
2015-03-31 11:02:31.099276 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.099291 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.099305 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.099326 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.099336 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.099346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.099355 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099361 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099368 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099374 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099386 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408362 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.099388 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408362 getattr Xs #10000004efa 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.099409 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.099411 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.099414 7fbe462be700 10 mds.0.cache.ino(10000004efa) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:31.099416 7fbe462be700 10 mds.0.cache.ino(10000004efa) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.099428 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408362 cr=0x3b9c100)
2015-03-31 11:02:31.099447 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.099463 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.099478 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.099488 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.099498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.099507 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.099528 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099535 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099541 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099548 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e996ac8]
2015-03-31 11:02:31.099554 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.099569 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.099580 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x2367d000 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:31.099589 7fbe462be700 10 mds.0.cache.ino(10000004efa) auth_unpin by 0x2367d000 on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e996ac8] now 0+0
2015-03-31 11:02:31.099816 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408363 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.099834 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408363 cr=0x25f4e400)
2015-03-31 11:02:31.099836 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408363 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.099839 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408363 cr=0x25f4e400) #1000006026a
2015-03-31 11:02:31.099841 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.099842 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.099843 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.099857 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408363 cr=0x25f4e400)
2015-03-31 11:02:31.099859 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.099874 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.099884 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.099894 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.099907 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.099922 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.099931 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.099942 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.099952 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.099963 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.099977 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.099991 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.100003 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.100013 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100034 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100051 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31586} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100067 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408363 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.100071 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408363 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.100091 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.100095 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.100098 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31587
2015-03-31 11:02:31.100110 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31587 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.100122 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408363 cr=0x25f4e400)
2015-03-31 11:02:31.100141 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.100156 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.100170 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.100180 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.100190 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31587} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100201 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31587} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100222 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31587} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100231 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31587} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.100242 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.100256 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.100267 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31587} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.100635 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408364 create #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.100655 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408364 cr=0x25f4af80)
2015-03-31 11:02:31.100657 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100675 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:31.100677 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100688 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:31.100689 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100701 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100712 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100722 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100731 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.100732 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408364 create #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.100735 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10098
2015-03-31 11:02:31.100736 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408364 cr=0x25f4af80) #1000006026a/blarg10098
2015-03-31 11:02:31.100739 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10098
2015-03-31 11:02:31.100740 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.100741 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.100742 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178811 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:31.100751 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178811 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:31.100757 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10098 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178811 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:31.100766 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408364 cr=0x25f4af80)
2015-03-31 11:02:31.100771 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.100792 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.100804 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock) v=177794 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100810 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100820 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.100834 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2367d000 on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.100859 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.100869 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.100890 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock) v=177794 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100894 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10098) auth_pin by 0x2367d000 on [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock) v=177794 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120] now 1+0
2015-03-31 11:02:31.100899 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=0+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.100908 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.100919 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock) v=177794 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100924 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177794 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100930 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177794 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100934 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177794 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100939 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177794 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100943 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10098) auth_pin by 0x3cec278 on [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177794 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120] now 2+0
2015-03-31 11:02:31.100950 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x2367d000) [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) v=177794 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.100954 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.100969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.100983 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.100998 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101033 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101050 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101059 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101069 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101079 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101089 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101099 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101109 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101119 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101129 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101140 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101149 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101159 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101177 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b300 ([1000006b301~322], 802 left)
2015-03-31 11:02:31.101180 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:31.101182 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b300 [2,head] #1000006b300 auth v1 s=0 n() (iversion lock) 0x3f4901f8]
2015-03-31 11:02:31.101186 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178812
2015-03-31 11:02:31.101187 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10098)  pre_dirty [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) pv=178812 v=177794 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.101195 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4901f8]
2015-03-31 11:02:31.101202 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x2367d000 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178811 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:31.101212 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x91d56a0
2015-03-31 11:02:31.101214 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178813
2015-03-31 11:02:31.101215 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178813 v=178811 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.101222 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178813 v=178811 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.101228 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f4901f8]
2015-03-31 11:02:31.101233 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:31.101235 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101249 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295385
2015-03-31 11:02:31.101250 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295385 v=3295383 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.101254 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295385 (current v 3295383)
2015-03-31 11:02:31.101255 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178813 v=178811 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=113+1491,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.101262 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:31.101263 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x2367d000 on [dir 10000000000 /test_small/ [2,head] auth v=3295384 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382416=382409+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:31.101273 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x924ee00
2015-03-31 11:02:31.101274 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295386
2015-03-31 11:02:31.101275 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101286 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101297 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101308 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:31.101310 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.05034 ago, continuing
2015-03-31 11:02:31.101313 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 10000000000 [...2,head] /test_small/ auth v120428 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101324 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120430
2015-03-31 11:02:31.101325 7fbe462be700 10 mds.0.cache.den(1 test_small)  pre_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120430 v=120428 ap=0+2 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:31.101329 7fbe462be700 10 mds.0.cache.ino(10000000000) pre_dirty 120430 (current v 120428)
2015-03-31 11:02:31.101330 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 10000000000 /test_small/ [2,head] auth pv=3295386 v=3295384 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382416=382409+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770]
2015-03-31 11:02:31.101340 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:31.101341 7fbe462be700 10 mds.0.cache.dir(1) auth_pin by 0x2367d000 on [dir 1 / [2,head] auth v=120429 cv=119911/119911 dir_auth=0 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:07.000000 b422190196760 382423=382414+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] count now 1 + 2
2015-03-31 11:02:31.101351 7fbe462be700 10 mds.0.cache.dir(1) project_fnode 0x924f7a0
2015-03-31 11:02:31.101352 7fbe462be700 10 mds.0.cache.dir(1) pre_dirty 120431
2015-03-31 11:02:31.101353 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101368 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101383 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101394 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:31.101396 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 1.05034 ago, continuing
2015-03-31 11:02:31.101398 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1 [...2,head] / auth v53476 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101417 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small [2,head] auth (dversion lock) pv=120430 v=120428 ap=0+2 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:31.101422 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101434 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295385 v=3295383 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.101437 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31587} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101451 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f4901f8]
2015-03-31 11:02:31.101458 7fbe462be700 10 mds.0.cache.ino(1000006b300) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:31.101461 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101469 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:31.101470 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101477 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101484 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101490 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101498 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101505 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101511 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101517 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101523 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101529 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101535 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101542 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101548 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101554 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101560 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f4901f8]
2015-03-31 11:02:31.101570 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.101571 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:31.101572 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f4901f8 tracedn 0x3cec120
2015-03-31 11:02:31.101574 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x2367d000) [dentry #1/test_small/small5/blarg10098 [2,head] auth NULL (dn xlock x=1 by 0x2367d000) (dversion lock w=1 last_client=708310) pv=178812 v=177794 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec120]
2015-03-31 11:02:31.101581 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408364 create #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.101588 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.101591 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31588
2015-03-31 11:02:31.101593 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31588 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.101599 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:31.101602 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:31.101605 7fbe462be700 10 mds.0.cache.ino(1000006b300) including xattrs version 0
2015-03-31 11:02:31.101641 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101670 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101694 7fbe406af700  5 mds.0.log _submit_thread 5419759145~2770 : EUpdate openc [metablob 1, 3 dirs]
2015-03-31 11:02:31.101686 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101705 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101720 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101732 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101743 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101753 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101765 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101777 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101792 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101802 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101817 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101827 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101879 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408365 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.101898 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408365 cr=0x968b200)
2015-03-31 11:02:31.101900 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408365 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.101904 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408365 cr=0x968b200) #1000006026a
2015-03-31 11:02:31.101905 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.101907 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.101908 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101922 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408365 cr=0x968b200)
2015-03-31 11:02:31.101925 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101941 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.101952 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.101963 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.101978 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.101993 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102008 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.102020 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102030 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.102041 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102056 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102071 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102082 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102093 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102108 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102118 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102143 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31588} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102159 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408365 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.102164 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408365 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.102174 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.102177 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.102180 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31589
2015-03-31 11:02:31.102182 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31589 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.102195 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408365 cr=0x968b200)
2015-03-31 11:02:31.102214 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102231 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102245 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102255 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102266 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102277 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102303 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102313 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102324 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.102338 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.102352 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.102455 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408366 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.102473 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408366 cr=0x968c880)
2015-03-31 11:02:31.102476 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408366 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.102479 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408366 cr=0x968c880) #1000006b300
2015-03-31 11:02:31.102480 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b300 snap head
2015-03-31 11:02:31.102481 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.102482 7fbe462be700 10 mds.0.server ref is [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f4901f8]
2015-03-31 11:02:31.102496 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408366 cr=0x968c880)
2015-03-31 11:02:31.102498 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102515 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102526 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102536 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4901f8]
2015-03-31 11:02:31.102546 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102561 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.102576 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102587 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.102598 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102609 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.102620 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f4901f8]
2015-03-31 11:02:31.102629 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_pin by 0x242c9400 on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4901f8] now 1+0
2015-03-31 11:02:31.102640 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102655 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102671 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102682 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102693 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102718 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102739 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.102749 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.102763 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408366 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.102767 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408366 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.102777 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.102780 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.102787 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:31.102790 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.102802 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408366 cr=0x968c880)
2015-03-31 11:02:31.102821 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102837 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.102852 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102862 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.102873 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102883 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.102905 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.102916 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.102926 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.102941 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.102952 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.102963 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_unpin by 0x242c9400 on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4901f8] now 0+0
2015-03-31 11:02:31.143057 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408367 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.143078 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408367 cr=0x968e400)
2015-03-31 11:02:31.143082 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408367 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.143086 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408367 cr=0x968e400) #1000006b300
2015-03-31 11:02:31.143088 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b300 snap head
2015-03-31 11:02:31.143089 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.143090 7fbe462be700 10 mds.0.server ref is [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.143107 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408367 cr=0x968e400)
2015-03-31 11:02:31.143110 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143128 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143141 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143152 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.143163 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143178 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.143193 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143204 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.143216 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143227 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.143238 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.143247 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_pin by 0x242c9400 on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4901f8] now 1+0
2015-03-31 11:02:31.143258 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143273 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143288 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143299 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143320 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143330 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143340 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.143350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.143364 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408367 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.143369 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408367 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.143380 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.143384 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.143388 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:31.143390 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.143404 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408367 cr=0x968e400)
2015-03-31 11:02:31.143424 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143440 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143455 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143466 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143477 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143487 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143509 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.143520 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.143530 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.143546 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.143557 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.143568 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_unpin by 0x242c9400 on [inode 1000006b300 [2,head] {#1000006b300 /test_small/small5/blarg10098} auth v178812 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f4901f8] now 0+0
2015-03-31 11:02:31.143604 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408368 readdir #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.143622 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408368 cr=0x9689e00)
2015-03-31 11:02:31.143624 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408368 readdir #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.143639 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408368 cr=0x9689e00) #1000006026a
2015-03-31 11:02:31.143641 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.143642 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.143643 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143658 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408368 cr=0x9689e00)
2015-03-31 11:02:31.143661 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143677 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143687 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143698 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53476 pv53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143712 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242c9400 on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.143727 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143747 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.143764 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143788 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.143798 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143812 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.143826 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143837 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.143847 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143857 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143867 7fbe462be700  7 mds.0.locker rdlock_start  on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143877 7fbe462be700  7 mds.0.locker simple_sync on (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143887 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:31.143897 7fbe462be700  7 mds.0.locker rdlock_start waiting on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.143907 7fbe462be700 10 mds.0.cache.ino(1000006026a) add_waiter tag 40000000 0xa0b7aa0 !ambig 1 !frozen 1 !freezing 1
2015-03-31 11:02:31.143909 7fbe462be700 10 mds.0.locker nudge_log (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.146737 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004efa follows 0 op update
2015-03-31 11:02:31.146740 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146751 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.146753 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.146774 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.146775 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146785 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146794 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:31.146796 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146807 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146816 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146822 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:31.146823 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146832 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146839 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146842 7fbe406af700  5 mds.0.log _submit_thread 5419761935~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:31.146845 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146850 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146855 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146861 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146867 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.146876 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.157934 7fbe43ab9700 10 MDSIOContextBase::complete: 12C_IO_Wrapper
2015-03-31 11:02:31.157937 7fbe43ab9700 10 MDSInternalContextBase::complete: 11C_MarkEvent
2015-03-31 11:02:31.157942 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_openc_finish
2015-03-31 11:02:31.157943 7fbe43ab9700 10 mds.0.cache.ino(1000006b300) mark_dirty [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178811 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.157954 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10098)  mark_dirty [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) pv=178812 v=177794 ap=2+0 inode=0x3f4901f8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120]
2015-03-31 11:02:31.157962 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178813 v=178812 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 113=113+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178812
2015-03-31 11:02:31.157971 7fbe43ab9700 10 mds.0.cache.ino(1000006b300) mark_dirty_parent
2015-03-31 11:02:31.157972 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) mark_dirty [inode 1000006026a [...2,head] /test_small/small5/ auth v3295383 pv3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 113=113+0) n(v1 rc2015-03-31 11:03:08.000000 114=113+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.157984 7fbe43ab9700 10 mds.0.cache.den(10000000000 small5)  mark_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295385 v=3295383 ap=0+4 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.157988 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295386 v=3295385 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382416=382409+7)/n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382406=382399+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295385
2015-03-31 11:02:31.157999 7fbe43ab9700 10 mds.0.cache.ino(10000000000) mark_dirty [inode 10000000000 [...2,head] /test_small/ auth v120428 pv120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:07.000000 b422190090565 382407=382399+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.158010 7fbe43ab9700 10 mds.0.cache.den(1 test_small)  mark_dirty [dentry #1/test_small [2,head] auth (dversion lock) pv=120430 v=120428 ap=0+3 inode=0x39c1270 | inodepin=1 dirty=1 0x4768000]
2015-03-31 11:02:31.158014 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120431 v=120430 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:07.000000 b422190196760 382423=382414+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120430
2015-03-31 11:02:31.158024 7fbe43ab9700 10 mds.0.cache.ino(1) mark_dirty [inode 1 [...2,head] / auth v53476 pv53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.158040 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) mark_dirty (already dirty) [dir 1000006026a /test_small/small5/ [2,head] auth pv=178813 v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] version 178813
2015-03-31 11:02:31.158047 7fbe43ab9700 10 mds.0.cache.dir(10000000000) mark_dirty (already dirty) [dir 10000000000 /test_small/ [2,head] auth pv=3295386 v=3295386 cv=3287205/3287205 ap=1+3+4 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382417=382410+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] version 3295386
2015-03-31 11:02:31.158054 7fbe43ab9700 10 mds.0.cache.dir(1) mark_dirty (already dirty) [dir 1 / [2,head] auth pv=120431 v=120431 cv=119911/119911 dir_auth=0 ap=1+2+3 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:08.000000 b422190196760 382434=382425+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=1 0x4758000] version 120431
2015-03-31 11:02:31.158063 7fbe43ab9700 10 mds.0.locker share_inode_max_size on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.158073 7fbe43ab9700 10 mds.0.locker share_inode_max_size with client.708310
2015-03-31 11:02:31.158075 7fbe43ab9700 10 mds.0.15 send_message_client_counted client.708310 seq 27590 client_caps(grant ino 1000006b300 1851573 seq 4 caps=pAsxLsXsxFsxcrwb dirty=- wanted=pAsxXsxFxwb follows 0 size 0/4194304 ts 1 mtime 2015-03-31 11:03:08.000000) v4
2015-03-31 11:02:31.158094 7fbe43ab9700  7 mds.0.cache send_dentry_link [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178812 ap=2+0 inode=0x3f4901f8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120]
2015-03-31 11:02:31.158104 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408364 create #1000006026a/blarg10098 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.158122 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 1000006b300
2015-03-31 11:02:31.158125 7fbe43ab9700 10 mds.0.locker xlock_finish on (dn xlockdone l=1 x=1) [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn xlockdone l=1 x=1) (dversion lock w=1 last_client=708310) v=178812 ap=2+0 inode=0x3f4901f8 | request=1 lock=2 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120]
2015-03-31 11:02:31.158134 7fbe43ab9700 10 mds.0.locker eval_gather (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178812 ap=2+0 inode=0x3f4901f8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120]
2015-03-31 11:02:31.158140 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (dn xlockdone l=1) on [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn xlockdone l=1) (dversion lock w=1 last_client=708310) v=178812 ap=2+0 inode=0x3f4901f8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120]
2015-03-31 11:02:31.158144 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10098) auth_unpin by 0x3cec278 on [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178812 ap=1+0 inode=0x3f4901f8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120] now 1+0
2015-03-31 11:02:31.158150 7fbe43ab9700 10 mds.0.locker simple_eval (dn sync l=1) on [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178812 ap=1+0 inode=0x3f4901f8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120]
2015-03-31 11:02:31.158156 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.158175 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.158191 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.158206 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.158228 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.158239 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.158249 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (dversion lock w=1 last_client=708310) on [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn sync l=1) (dversion lock w=1 last_client=708310) v=178812 ap=1+0 inode=0x3f4901f8 | request=1 lock=1 inodepin=1 dirty=1 authpin=1 clientlease=1 0x3cec120]
2015-03-31 11:02:31.158254 7fbe43ab9700  7 mds.0.locker local_wrlock_finish  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.158266 7fbe43ab9700  7 mds.0.locker wrlock_finish on (ifile lock->sync w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.158277 7fbe43ab9700 10 mds.0.locker eval_gather (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.158299 7fbe43ab9700 10 mds.0.locker  next state is sync issued/allows loner /scr xlocker /scr other /scr
2015-03-31 11:02:31.158302 7fbe43ab9700  7 mds.0.locker eval_gather finished gather on (ifile lock->sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock->sync) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888]
2015-03-31 11:02:31.158313 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x66050b0 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=1 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.158324 7fbe43ab9700 10 MDSInternalContextBase::complete: 18C_MDS_RetryRequest
2015-03-31 11:02:31.158325 7fbe43ab9700  7 mds.0.server dispatch_client_request client_request(client.708310:40408368 readdir #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.158328 7fbe43ab9700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408368 cr=0x9689e00) #1000006026a
2015-03-31 11:02:31.158330 7fbe43ab9700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.158331 7fbe43ab9700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.158332 7fbe43ab9700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158342 7fbe43ab9700 10 mds.0.locker acquire_locks request(client.708310:40408368 cr=0x9689e00)
2015-03-31 11:02:31.158345 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.158360 7fbe43ab9700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.158371 7fbe43ab9700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158380 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.158394 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.158405 7fbe43ab9700 10 mds.0.locker  already auth_pinned [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158415 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.158430 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.158441 7fbe43ab9700 10 mds.0.locker  already rdlocked (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158451 7fbe43ab9700  7 mds.0.locker rdlock_start  on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158461 7fbe43ab9700 10 mds.0.locker  got rdlock on (ifile sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158471 7fbe43ab9700  7 mds.0.locker rdlock_start  on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158490 7fbe43ab9700 10 mds.0.locker  got rdlock on (idft sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (idft sync r=1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31589} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.158506 7fbe43ab9700 10 mds.0.server  frag * offset ''
2015-03-31 11:02:31.158508 7fbe43ab9700 10 mds.0.server handle_client_readdir on [dir 1000006026a /test_small/small5/ [2,head] auth v=178813 cv=170705/170705 ap=1+1+1 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.158517 7fbe43ab9700 10 mds.0.server snapid head
2015-03-31 11:02:31.158521 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 24
2015-03-31 11:02:31.158524 7fbe43ab9700 10 mds.0.cache.ino(1000006b28f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 24 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158529 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 24
2015-03-31 11:02:31.158531 7fbe43ab9700 10 mds.0.cache.ino(1000006b290) encode_inodestat caps pAsxLsXsxFsxcrwb seq 24 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158535 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 24
2015-03-31 11:02:31.158537 7fbe43ab9700 10 mds.0.cache.ino(1000006b291) encode_inodestat caps pAsxLsXsxFsxcrwb seq 24 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158540 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 24
2015-03-31 11:02:31.158542 7fbe43ab9700 10 mds.0.cache.ino(1000006b292) encode_inodestat caps pAsxLsXsxFsxcrwb seq 24 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158545 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 24
2015-03-31 11:02:31.158547 7fbe43ab9700 10 mds.0.cache.ino(1000006b293) encode_inodestat caps pAsxLsXsxFsxcrwb seq 24 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158550 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 24
2015-03-31 11:02:31.158551 7fbe43ab9700 10 mds.0.cache.ino(1000006b294) encode_inodestat caps pAsxLsXsxFsxcrwb seq 24 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158554 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:31.158556 7fbe43ab9700 10 mds.0.cache.ino(1000006b295) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158559 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:31.158560 7fbe43ab9700 10 mds.0.cache.ino(1000006b296) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158563 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:31.158565 7fbe43ab9700 10 mds.0.cache.ino(1000006b297) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158568 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:31.158569 7fbe43ab9700 10 mds.0.cache.ino(1000006b298) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158572 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:31.158574 7fbe43ab9700 10 mds.0.cache.ino(1000006b299) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158577 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:31.158579 7fbe43ab9700 10 mds.0.cache.ino(1000006b29a) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158582 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 23
2015-03-31 11:02:31.158583 7fbe43ab9700 10 mds.0.cache.ino(1000006b29b) encode_inodestat caps pAsxLsXsxFsxcrwb seq 23 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158586 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:31.158588 7fbe43ab9700 10 mds.0.cache.ino(1000006b29c) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158591 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:31.158592 7fbe43ab9700 10 mds.0.cache.ino(1000006b29d) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158595 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:31.158597 7fbe43ab9700 10 mds.0.cache.ino(1000006b29e) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158600 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:31.158602 7fbe43ab9700 10 mds.0.cache.ino(1000006b29f) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158605 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:31.158606 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158609 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:31.158611 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158614 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 22
2015-03-31 11:02:31.158615 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 22 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158618 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:31.158620 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158623 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:31.158635 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158637 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:31.158639 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158642 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:31.158654 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158657 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:31.158658 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158660 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 21
2015-03-31 11:02:31.158662 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 21 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158665 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:31.158666 7fbe43ab9700 10 mds.0.cache.ino(1000006b2a9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158681 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:31.158682 7fbe43ab9700 10 mds.0.cache.ino(1000006b2aa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158685 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:31.158686 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ab) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158689 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:31.158690 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ac) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158693 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:31.158695 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ad) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158697 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:31.158699 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ae) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158701 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 20
2015-03-31 11:02:31.158702 7fbe43ab9700 10 mds.0.cache.ino(1000006b2af) encode_inodestat caps pAsxLsXsxFsxcrwb seq 20 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158705 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:31.158707 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158709 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:31.158711 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158714 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:31.158715 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158717 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:31.158719 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158721 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:31.158723 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158726 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 19
2015-03-31 11:02:31.158727 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 19 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158730 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:31.158731 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158733 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:31.158735 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158737 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:31.158739 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158741 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:31.158743 7fbe43ab9700 10 mds.0.cache.ino(1000006b2b9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158746 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:31.158747 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ba) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158750 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:31.158752 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158754 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 18
2015-03-31 11:02:31.158756 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 18 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158759 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:31.158760 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158763 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:31.158764 7fbe43ab9700 10 mds.0.cache.ino(1000006b2be) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158767 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:31.158768 7fbe43ab9700 10 mds.0.cache.ino(1000006b2bf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158771 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:31.158772 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158775 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 17
2015-03-31 11:02:31.158776 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 17 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158779 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:31.158780 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158788 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:31.158790 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158792 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:31.158794 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158797 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:31.158798 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158801 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:31.158802 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158805 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 16
2015-03-31 11:02:31.158806 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 16 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158809 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:31.158811 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158813 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:31.158815 7fbe43ab9700 10 mds.0.cache.ino(1000006b2c9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158817 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:31.158819 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ca) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158822 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:31.158823 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158826 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:31.158827 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158830 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:31.158831 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158834 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 15
2015-03-31 11:02:31.158836 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ce) encode_inodestat caps pAsxLsXsxFsxcrwb seq 15 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158838 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:31.158840 7fbe43ab9700 10 mds.0.cache.ino(1000006b2cf) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158843 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:31.158844 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158847 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:31.158848 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158851 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:31.158852 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158855 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:31.158856 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158859 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:31.158861 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158863 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 14
2015-03-31 11:02:31.158865 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 14 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158867 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:31.158869 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158871 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:31.158873 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158875 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:31.158877 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158879 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:31.158881 7fbe43ab9700 10 mds.0.cache.ino(1000006b2d9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158884 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 13
2015-03-31 11:02:31.158885 7fbe43ab9700 10 mds.0.cache.ino(1000006b2da) encode_inodestat caps pAsxLsXsxFsxcrwb seq 13 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158888 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:31.158889 7fbe43ab9700 10 mds.0.cache.ino(1000006b2db) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158892 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:31.158894 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158896 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:31.158898 7fbe43ab9700 10 mds.0.cache.ino(1000006b2dd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158900 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 12
2015-03-31 11:02:31.158902 7fbe43ab9700 10 mds.0.cache.ino(1000006b2de) encode_inodestat caps pAsxLsXsxFsxcrwb seq 12 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158904 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:31.158906 7fbe43ab9700 10 mds.0.cache.ino(1000006b2df) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158908 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:31.158910 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158912 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:31.158914 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158917 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:31.158918 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158921 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:31.158922 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158925 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:31.158926 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158929 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 11
2015-03-31 11:02:31.158930 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 11 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158933 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:31.158934 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158937 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:31.158939 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158941 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:31.158943 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158945 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:31.158947 7fbe43ab9700 10 mds.0.cache.ino(1000006b2e9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158950 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:31.158951 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ea) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158954 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 10
2015-03-31 11:02:31.158955 7fbe43ab9700 10 mds.0.cache.ino(1000006b2eb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 10 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158958 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:31.158960 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ec) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158962 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:31.158964 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ed) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158966 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:31.158968 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ee) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158970 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:31.158972 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ef) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158974 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:31.158976 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f0) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158979 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:31.158980 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f1) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158983 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 9
2015-03-31 11:02:31.158984 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f2) encode_inodestat caps pAsxLsXsxFsxcrwb seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158987 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:31.158989 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f3) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158991 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:31.158993 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f4) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158995 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:31.158997 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f5) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.158999 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:31.159001 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f6) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159003 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:31.159005 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f7) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159007 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:31.159009 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f8) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159011 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 8
2015-03-31 11:02:31.159013 7fbe43ab9700 10 mds.0.cache.ino(1000006b2f9) encode_inodestat caps pAsxLsXsxFsxcrwb seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159016 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:31.159017 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fa) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159020 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:31.159021 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fb) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159024 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:31.159025 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fc) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159028 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:31.159029 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fd) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159032 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:31.159034 7fbe43ab9700 10 mds.0.cache.ino(1000006b2fe) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159036 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:31.159038 7fbe43ab9700 10 mds.0.cache.ino(1000006b2ff) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159040 7fbe43ab9700 10 mds.0.cache.ino(1000006b300) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:31.159042 7fbe43ab9700 10 mds.0.cache.ino(1000006b300) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159086 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408368 readdir #1000006026a 2015-03-31 11:03:08.000000) v2 readdir num=114 bytes=31118 end=1 complete=1
2015-03-31 11:02:31.159091 7fbe43ab9700 10 mds.0.server reply to client_request(client.708310:40408368 readdir #1000006026a 2015-03-31 11:03:08.000000) v2 readdir num=114 end=1 complete=1
2015-03-31 11:02:31.159094 7fbe43ab9700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408368 readdir #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.159103 7fbe43ab9700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.159105 7fbe43ab9700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.159108 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31590
2015-03-31 11:02:31.159110 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31590 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.159121 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408368 cr=0x9689e00)
2015-03-31 11:02:31.159139 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.159155 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.159168 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.159178 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.159186 7fbe43ab9700  7 mds.0.locker rdlock_finish on (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159196 7fbe43ab9700 10 mds.0.locker scatter_eval (idft sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159205 7fbe43ab9700  7 mds.0.locker rdlock_finish on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159213 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159223 7fbe43ab9700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159242 7fbe43ab9700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159251 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x242c9400 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.159263 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242c9400 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.159272 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242c9400 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.159534 7fbe43ab9700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159546 7fbe43ab9700  7 mds.0.locker wrlock_finish on (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159556 7fbe43ab9700 10 mds.0.locker scatter_eval (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159566 7fbe43ab9700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.159587 7fbe43ab9700  7 mds.0.cache request_finish request(client.708310:40408364 cr=0x25f4af80)
2015-03-31 11:02:31.159605 7fbe43ab9700 10 mds.0.cache.ino(1) auth_unpin by 0x2367d000 on [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.159620 7fbe43ab9700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2367d000 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.159641 7fbe43ab9700 10 mds.0.cache.den(1000006026a blarg10098) auth_unpin by 0x2367d000 on [dentry #1/test_small/small5/blarg10098 [2,head] auth (dn sync l=1) (dversion lock) v=178812 inode=0x3f4901f8 | request=1 lock=0 inodepin=1 dirty=1 authpin=0 clientlease=1 0x3cec120] now 0+0
2015-03-31 11:02:31.159649 7fbe43ab9700 10 mds.0.cache.dir(1) auth_unpin by 0x2367d000 on [dir 1 / [2,head] auth v=120431 cv=119911/119911 dir_auth=0 ap=0+0+1 state=1610612738|complete f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:03:08.000000 b422190196760 382434=382425+9)/n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382320=382311+9) hs=2+0,ss=0+0 dirty=1 | child=1 subtree=1 subtreetemp=0 dirty=1 waiter=0 authpin=0 0x4758000] count now 0 + 1
2015-03-31 11:02:31.159659 7fbe43ab9700 10 mds.0.cache.dir(10000000000) auth_unpin by 0x2367d000 on [dir 10000000000 /test_small/ [2,head] auth v=3295386 cv=3287205/3287205 ap=0+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382417=382410+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=0 0x4758770] count now 0 + 2
2015-03-31 11:02:31.159667 7fbe43ab9700 10 mds.0.cache.dir(1000006026a) auth_unpin by 0x2367d000 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178813 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298] count now 0 + 0
2015-03-31 11:02:31.159675 7fbe43ab9700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2367d000 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.159738 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408369 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.159769 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408369 cr=0x23fbc880)
2015-03-31 11:02:31.159771 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408369 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.159775 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408369 cr=0x23fbc880) #1000006b300
2015-03-31 11:02:31.159777 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b300 snap head
2015-03-31 11:02:31.159778 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.159779 7fbe462be700 10 mds.0.server ref is [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.159801 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408369 cr=0x23fbc880)
2015-03-31 11:02:31.159804 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.159822 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.159834 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.159845 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.159855 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.159871 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.159886 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.159904 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.159916 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.159936 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.159945 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.159954 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_pin by 0x25c25500 on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8] now 1+0
2015-03-31 11:02:31.159974 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.159999 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.160012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.160022 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.160031 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.160041 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.160050 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.160058 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.160072 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408369 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.160076 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408369 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.160086 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.160089 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.160094 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 6
2015-03-31 11:02:31.160096 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat caps pAsxLsXsxFsxcrwb seq 6 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.160111 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408369 cr=0x23fbc880)
2015-03-31 11:02:31.160130 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.160146 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.160160 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.160171 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.160181 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.160191 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.160212 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.160222 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.160232 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.160247 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.160258 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=0+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:31.160268 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_unpin by 0x25c25500 on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8] now 0+0
2015-03-31 11:02:31.161530 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004efa follows 0 op update
2015-03-31 11:02:31.161534 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161545 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.161547 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.161565 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.161566 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161573 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161580 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:31.161581 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161587 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161594 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161599 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:31.161600 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161606 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161613 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161618 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161624 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:31.161625 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:31.161626 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004efa [2,head] /test_small/small1/blarg10098 auth v137014 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996ac8]
2015-03-31 11:02:31.161633 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.201072 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408370 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.201093 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408370 cr=0x23fbc100)
2015-03-31 11:02:31.201098 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408370 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.201101 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408370 cr=0x23fbc100) #1000006b300
2015-03-31 11:02:31.201103 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b300 snap head
2015-03-31 11:02:31.201104 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.201105 7fbe462be700 10 mds.0.server ref is [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=0 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.201121 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408370 cr=0x23fbc100)
2015-03-31 11:02:31.201124 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.201142 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.201154 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.201165 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.201175 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.201190 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.201205 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.201216 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.201227 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.201237 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.201258 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8]
2015-03-31 11:02:31.201268 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_pin by 0x25c25500 on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8] now 1+0
2015-03-31 11:02:31.201278 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.201303 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.201328 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.201338 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.201347 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.201357 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.201366 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.201375 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@6},l=708310 | request=1 lock=1 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.201398 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408370 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.201402 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408370 getattr Xs #1000006b300 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.201413 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.201416 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.201421 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 7
2015-03-31 11:02:31.201423 7fbe462be700 10 mds.0.cache.ino(1000006b300) encode_inodestat caps pAsxLsXsxFsxcrwb seq 7 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.201437 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408370 cr=0x23fbc100)
2015-03-31 11:02:31.201456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.201472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.201486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.201496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.201507 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.201516 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.201537 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.201547 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 ap=1+0 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=1 0x3f4901f8]
2015-03-31 11:02:31.201556 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.201571 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.201581 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=0+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+1
2015-03-31 11:02:31.201592 7fbe462be700 10 mds.0.cache.ino(1000006b300) auth_unpin by 0x25c25500 on [inode 1000006b300 [2,head] /test_small/small5/blarg10098 auth v178812 dirtyparent s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@7},l=708310 | request=1 lock=0 caps=1 dirtyparent=1 dirty=1 authpin=0 0x3f4901f8] now 0+0
2015-03-31 11:02:31.201903 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408371 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.201921 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408371 cr=0x6887800)
2015-03-31 11:02:31.201924 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408371 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.201927 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408371 cr=0x6887800) #10000004eff
2015-03-31 11:02:31.201929 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004eff snap head
2015-03-31 11:02:31.201930 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.201931 7fbe462be700 10 mds.0.server ref is [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.201940 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408371 cr=0x6887800)
2015-03-31 11:02:31.201943 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.201958 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.201968 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.201978 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.201983 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.201996 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.202010 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.202020 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.202037 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.202045 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:31.202055 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.202059 7fbe462be700 10 mds.0.cache.ino(10000004eff) auth_pin by 0x25c25500 on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e996190] now 1+0
2015-03-31 11:02:31.202067 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.202081 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.202095 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.202105 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.202115 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.202125 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.202134 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202139 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202145 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202161 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202185 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408371 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.202189 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408371 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.202199 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.202203 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.202206 7fbe462be700 10 mds.0.cache.ino(10000004eff) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:31.202208 7fbe462be700 10 mds.0.cache.ino(10000004eff) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.202220 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408371 cr=0x6887800)
2015-03-31 11:02:31.202239 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.202254 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.202268 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.202279 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.202289 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.202297 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.202317 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202323 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202329 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202334 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.202341 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.202355 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.202366 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:31.202375 7fbe462be700 10 mds.0.cache.ino(10000004eff) auth_unpin by 0x25c25500 on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e996190] now 0+0
2015-03-31 11:02:31.202751 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408372 lookup #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.202768 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408372 cr=0x6887d00)
2015-03-31 11:02:31.202771 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408372 lookup #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.202774 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408372 cr=0x6887d00) #1000006026a/blarg10099
2015-03-31 11:02:31.202776 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.202778 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10099 [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock) v=177796 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec300]
2015-03-31 11:02:31.202792 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:31.202794 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408372 lookup #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.202806 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.202818 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408372 cr=0x6887d00)
2015-03-31 11:02:31.203319 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408373 lookup #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.203338 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408373 cr=0x9408c80)
2015-03-31 11:02:31.203341 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408373 lookup #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.203344 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408373 cr=0x9408c80) #1000006026a/blarg10099
2015-03-31 11:02:31.203346 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.203349 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg10099 [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock) v=177796 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec300]
2015-03-31 11:02:31.203355 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:31.203356 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408373 lookup #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.203368 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.203378 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408373 cr=0x9408c80)
2015-03-31 11:02:31.203859 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408374 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.203879 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408374 cr=0x9408f00)
2015-03-31 11:02:31.203881 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408374 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.203884 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408374 cr=0x9408f00) #10000004eff
2015-03-31 11:02:31.203886 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000004eff snap head
2015-03-31 11:02:31.203888 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.203889 7fbe462be700 10 mds.0.server ref is [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.203900 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408374 cr=0x9408f00)
2015-03-31 11:02:31.203903 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.203920 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.203932 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.203942 7fbe462be700 10 mds.0.locker  must authpin [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.203947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.203962 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.203976 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.203987 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.203998 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.204007 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:31.204017 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.204022 7fbe462be700 10 mds.0.cache.ino(10000004eff) auth_pin by 0x25c25500 on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996190] now 1+0
2015-03-31 11:02:31.204028 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.204043 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.204058 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.204069 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.204090 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.204111 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.204120 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204125 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204131 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204136 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204148 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408374 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.204152 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408374 getattr Xs #10000004eff 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.204162 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.204166 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.204169 7fbe462be700 10 mds.0.cache.ino(10000004eff) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:31.204171 7fbe462be700 10 mds.0.cache.ino(10000004eff) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.204184 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408374 cr=0x9408f00)
2015-03-31 11:02:31.204203 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.204219 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.204233 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.204243 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.204253 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.204262 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.204283 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204289 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204294 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204300 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e996190]
2015-03-31 11:02:31.204306 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.204320 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.204331 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x25c25500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:31.204340 7fbe462be700 10 mds.0.cache.ino(10000004eff) auth_unpin by 0x25c25500 on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e996190] now 0+0
2015-03-31 11:02:31.204716 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408375 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.204737 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408375 cr=0x940b480)
2015-03-31 11:02:31.204739 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408375 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.204742 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408375 cr=0x940b480) #1000006026a
2015-03-31 11:02:31.204744 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.204745 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.204746 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.204763 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408375 cr=0x940b480)
2015-03-31 11:02:31.204765 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.204786 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.204797 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.204808 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.204822 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.204836 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.204846 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.204857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.204867 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+0
2015-03-31 11:02:31.204878 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.204893 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.204907 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.204925 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.204946 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.204968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.204977 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.204987 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (ixattr sync r=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31590} | dirtyscattered=0 request=1 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205006 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408375 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.205010 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408375 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.205019 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.205022 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.205025 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXsFs seq 31591
2015-03-31 11:02:31.205028 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXsFs seq 31591 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.205041 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408375 cr=0x940b480)
2015-03-31 11:02:31.205060 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.205075 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.205089 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.205099 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.205109 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31591} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205119 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31591} | dirtyscattered=0 request=1 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205140 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31591} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+0 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31591} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205158 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938] now 0+0
2015-03-31 11:02:31.205172 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=0+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270] now 0+1
2015-03-31 11:02:31.205182 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31591} | dirtyscattered=0 request=1 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888] now 0+0
2015-03-31 11:02:31.205548 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408376 create #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.205566 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408376 cr=0x940a080)
2015-03-31 11:02:31.205570 7fbe462be700 10 mds.0.locker process_cap_release client.708310 pAsLsXs on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXsFs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205587 7fbe462be700 10 mds.0.locker  wanted p -> p
2015-03-31 11:02:31.205590 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205601 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:31.205603 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205615 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205625 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205633 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205642 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.205643 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408376 create #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.205646 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg10099
2015-03-31 11:02:31.205647 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408376 cr=0x940a080) #1000006026a/blarg10099
2015-03-31 11:02:31.205649 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg10099
2015-03-31 11:02:31.205651 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.205652 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.205653 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178813 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:31.205661 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth v=178813 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:31.205668 7fbe462be700 10 mds.0.server prepare_null_dentry blarg10099 in [dir 1000006026a /test_small/small5/ [2,head] auth v=178813 cv=170705/170705 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=0 0x4759298]
2015-03-31 11:02:31.205677 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408376 cr=0x940a080)
2015-03-31 11:02:31.205682 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.205698 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.205714 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock) v=177796 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205719 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205729 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=0 0x39c0938]
2015-03-31 11:02:31.205743 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x25c25500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.205768 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x39c1270]
2015-03-31 11:02:31.205777 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x25c25500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+0 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+0
2015-03-31 11:02:31.205803 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock) v=177796 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205807 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10099) auth_pin by 0x25c25500 on [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock) v=177796 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300] now 1+0
2015-03-31 11:02:31.205813 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=0+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=0 0x6604888]
2015-03-31 11:02:31.205822 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x25c25500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.205832 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock) v=177796 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205837 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177796 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205842 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177796 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205846 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177796 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205850 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177796 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205854 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10099) auth_pin by 0x3cec458 on [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177796 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300] now 2+0
2015-03-31 11:02:31.205859 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x25c25500) [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) v=177796 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.205865 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.205879 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.205893 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.205906 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.205919 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.205929 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.205938 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.205947 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.205957 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=0 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205969 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205979 7fbe462be700 10 mds.0.locker wrlock_start (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205988 7fbe462be700  7 mds.0.locker simple_lock on (ifile sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.205999 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206008 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206020 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206028 7fbe462be700 10 mds.0.locker wrlock_start (inest lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206038 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206046 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206058 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206076 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b301 ([1000006b302~321], 801 left)
2015-03-31 11:02:31.206079 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:31.206080 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b301 [2,head] #1000006b301 auth v1 s=0 n() (iversion lock) 0x3f42bde8]
2015-03-31 11:02:31.206084 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178814
2015-03-31 11:02:31.206085 7fbe462be700 10 mds.0.cache.den(1000006026a blarg10099)  pre_dirty [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) pv=178814 v=177796 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.206092 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42bde8]
2015-03-31 11:02:31.206100 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x25c25500 on [dir 1000006026a /test_small/small5/ [2,head] auth v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 1 + 2
2015-03-31 11:02:31.206109 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x2694f640
2015-03-31 11:02:31.206110 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178815
2015-03-31 11:02:31.206111 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178815 v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.206118 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178815 v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.206124 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42bde8]
2015-03-31 11:02:31.206130 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:31.206132 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206145 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295387
2015-03-31 11:02:31.206146 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295387 v=3295385 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.206149 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295387 (current v 3295385)
2015-03-31 11:02:31.206150 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178815 v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.206157 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:31.206159 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x25c25500 on [dir 10000000000 /test_small/ [2,head] auth v=3295386 cv=3287205/3287205 ap=1+1+2 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382417=382410+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 1 + 2
2015-03-31 11:02:31.206166 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x91d5750
2015-03-31 11:02:31.206167 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295388
2015-03-31 11:02:31.206168 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206179 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206189 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206199 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:31.206201 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.104899 < 1, stopping
2015-03-31 11:02:31.206205 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206215 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=1 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:31.206219 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295387 v=3295385 ap=0+2 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.206223 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31591} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206236 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f42bde8]
2015-03-31 11:02:31.206242 7fbe462be700 10 mds.0.cache.ino(1000006b301) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:31.206245 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206252 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:31.206254 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206261 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206267 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206273 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206280 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206285 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206290 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206297 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206301 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206307 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206313 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206319 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206325 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206331 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206336 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42bde8]
2015-03-31 11:02:31.206346 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.206347 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:31.206349 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f42bde8 tracedn 0x3cec300
2015-03-31 11:02:31.206351 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x25c25500) [dentry #1/test_small/small5/blarg10099 [2,head] auth NULL (dn xlock x=1 by 0x25c25500) (dversion lock w=1 last_client=708310) pv=178814 v=177796 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec300]
2015-03-31 11:02:31.206357 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408376 create #1000006026a/blarg10099 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.206363 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.206366 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31592
2015-03-31 11:02:31.206368 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31592 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.206373 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:31.206376 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:31.206378 7fbe462be700 10 mds.0.cache.ino(1000006b301) including xattrs version 0
2015-03-31 11:02:31.206414 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.206443 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.206455 7fbe406af700  5 mds.0.log _submit_thread 5419762794~1620 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:31.206459 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.206472 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.206498 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206510 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206521 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206531 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206542 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206553 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206565 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206576 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ipolicy sync r=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206587 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206597 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206799 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408377 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.206819 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408377 cr=0x940e180)
2015-03-31 11:02:31.206821 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408377 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.206824 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408377 cr=0x940e180) #1000006b301
2015-03-31 11:02:31.206826 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b301 snap head
2015-03-31 11:02:31.206827 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.206828 7fbe462be700 10 mds.0.server ref is [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f42bde8]
2015-03-31 11:02:31.206842 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408377 cr=0x940e180)
2015-03-31 11:02:31.206844 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.206860 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206875 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206885 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42bde8]
2015-03-31 11:02:31.206895 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.206909 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.206924 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.206932 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.206943 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.206953 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.206964 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42bde8]
2015-03-31 11:02:31.206973 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_pin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42bde8] now 1+0
2015-03-31 11:02:31.206983 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.206998 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207012 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207023 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207033 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207053 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207076 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207085 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207099 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408377 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.207103 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408377 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.207113 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.207116 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.207119 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:31.207123 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.207135 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408377 cr=0x940e180)
2015-03-31 11:02:31.207154 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207169 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207183 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207193 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207204 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207226 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207236 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207246 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207256 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.207271 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.207280 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.207291 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_unpin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8] now 0+0
2015-03-31 11:02:31.207513 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408378 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.207534 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408378 cr=0x940b700)
2015-03-31 11:02:31.207537 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408378 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.207543 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408378 cr=0x940b700) #1000006b301
2015-03-31 11:02:31.207545 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b301 snap head
2015-03-31 11:02:31.207546 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.207547 7fbe462be700 10 mds.0.server ref is [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.207558 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408378 cr=0x940b700)
2015-03-31 11:02:31.207560 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207576 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207587 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207597 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.207606 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207620 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.207637 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207650 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.207665 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207675 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.207686 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.207695 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_pin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8] now 1+0
2015-03-31 11:02:31.207705 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207720 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207734 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207747 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207768 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207778 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207792 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207802 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207816 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408378 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.207820 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408378 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.207829 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.207833 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.207836 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:31.207839 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.207852 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408378 cr=0x940b700)
2015-03-31 11:02:31.207860 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207876 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.207890 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207900 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.207921 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207932 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.207942 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207952 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.207961 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.207976 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.207987 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.207996 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_unpin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8] now 0+0
2015-03-31 11:02:31.212982 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004eff follows 0 op update
2015-03-31 11:02:31.212985 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.212996 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.212997 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.213016 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.213017 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213023 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213031 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:31.213033 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213044 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213063 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213069 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:31.213071 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213080 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213082 7fbe406af700  5 mds.0.log _submit_thread 5419764434~839 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:31.213086 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213091 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213096 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213103 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213110 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213117 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.213126 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.218229 7fbe426b3700 10 mds.beacon.cephnautilus01 _send up:active seq 17076
2015-03-31 11:02:31.218569 7fbe462be700 10 mds.beacon.cephnautilus01 handle_mds_beacon up:active seq 17076 rtt 0.000324
2015-03-31 11:02:31.253083 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408379 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.253112 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408379 cr=0x2bd62580)
2015-03-31 11:02:31.253114 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408379 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.253117 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408379 cr=0x2bd62580) #1000006b301
2015-03-31 11:02:31.253119 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b301 snap head
2015-03-31 11:02:31.253120 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.253121 7fbe462be700 10 mds.0.server ref is [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.253137 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408379 cr=0x2bd62580)
2015-03-31 11:02:31.253140 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.253161 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.253173 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.253186 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.253197 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.253212 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.253238 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.253248 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.253278 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.253300 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.253314 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.253324 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_pin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8] now 1+0
2015-03-31 11:02:31.253333 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.253347 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.253361 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.253371 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.253381 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.253391 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.253401 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.253409 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.253424 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408379 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.253428 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408379 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.253439 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.253442 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.253447 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:31.253450 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.253463 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408379 cr=0x2bd62580)
2015-03-31 11:02:31.253482 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.253499 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.253513 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.253523 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.253534 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.253544 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.253565 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.253576 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.253586 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.253600 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.253611 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.253622 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_unpin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8] now 0+0
2015-03-31 11:02:31.254891 7fbe462be700  7 mds.0.locker handle_client_caps on 10000004eff follows 0 op update
2015-03-31 11:02:31.254894 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254906 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.254908 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.254926 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.254926 7fbe462be700 10 mds.0.locker   cap inode [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254933 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254941 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:31.254942 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254949 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254956 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254961 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:31.254962 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254969 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254976 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254981 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254987 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:31.254988 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:31.254989 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000004eff [2,head] /test_small/small1/blarg10099 auth v137016 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e996190]
2015-03-31 11:02:31.254997 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.294039 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408380 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.294063 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408380 cr=0x2bd66900)
2015-03-31 11:02:31.294067 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408380 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.294070 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408380 cr=0x2bd66900) #1000006b301
2015-03-31 11:02:31.294072 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b301 snap head
2015-03-31 11:02:31.294074 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.294075 7fbe462be700 10 mds.0.server ref is [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.294090 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408380 cr=0x2bd66900)
2015-03-31 11:02:31.294093 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294112 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294124 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.294136 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.294147 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294162 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.294177 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294188 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.294199 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.294220 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.294231 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8]
2015-03-31 11:02:31.294241 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_pin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8] now 1+0
2015-03-31 11:02:31.294262 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294289 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294302 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294312 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294321 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.294331 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.294341 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.294350 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.294365 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408380 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.294369 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408380 getattr Xs #1000006b301 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.294379 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.294381 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.294386 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 5
2015-03-31 11:02:31.294388 7fbe462be700 10 mds.0.cache.ino(1000006b301) encode_inodestat caps pAsxLsXsxFsxcrwb seq 5 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.294402 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408380 cr=0x2bd66900)
2015-03-31 11:02:31.294421 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294437 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294451 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294462 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294471 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.294482 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.294504 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.294514 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42bde8]
2015-03-31 11:02:31.294524 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.294539 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.294550 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.294562 7fbe462be700 10 mds.0.cache.ino(1000006b301) auth_unpin by 0x242cd500 on [inode 1000006b301 [2,head] {#1000006b301 /test_small/small5/blarg10099} auth v178814 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@5},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42bde8] now 0+0
2015-03-31 11:02:31.294856 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408381 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.294871 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408381 cr=0x2bd67d00)
2015-03-31 11:02:31.294873 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408381 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.294876 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408381 cr=0x2bd67d00) #10000000069
2015-03-31 11:02:31.294878 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000000069 snap head
2015-03-31 11:02:31.294879 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.294880 7fbe462be700 10 mds.0.server ref is [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.294890 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408381 cr=0x2bd67d00)
2015-03-31 11:02:31.294893 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294908 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294920 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.294929 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.294934 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.294948 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.294963 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.294972 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.294983 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.294991 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cd500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:31.295001 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.295006 7fbe462be700 10 mds.0.cache.ino(10000000069) auth_pin by 0x242cd500 on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8] now 1+0
2015-03-31 11:02:31.295013 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.295027 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.295041 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.295059 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.295069 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.295078 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.295087 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295093 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295099 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295105 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@7} | request=1 lock=2 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295127 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408381 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.295131 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408381 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.295152 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.295155 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.295159 7fbe462be700 10 mds.0.cache.ino(10000000069) encode_inodestat issueing pAsLsXsFscr seq 8
2015-03-31 11:02:31.295161 7fbe462be700 10 mds.0.cache.ino(10000000069) encode_inodestat caps pAsLsXsFscr seq 8 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.295173 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408381 cr=0x2bd67d00)
2015-03-31 11:02:31.295192 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.295207 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.295221 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.295232 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.295241 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.295250 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.295269 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295276 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295282 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295288 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.295294 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.295309 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.295320 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cd500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:31.295329 7fbe462be700 10 mds.0.cache.ino(10000000069) auth_unpin by 0x242cd500 on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9574b8] now 0+0
2015-03-31 11:02:31.295692 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408382 lookup #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.295711 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408382 cr=0x2bd64d80)
2015-03-31 11:02:31.295713 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408382 lookup #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.295716 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408382 cr=0x2bd64d80) #1000006026a/blarg101
2015-03-31 11:02:31.295718 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.295721 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg101 [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock) v=177798 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.295729 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:31.295730 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408382 lookup #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.295740 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.295753 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408382 cr=0x2bd64d80)
2015-03-31 11:02:31.296246 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408383 lookup #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.296265 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408383 cr=0x9cc3c00)
2015-03-31 11:02:31.296268 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408383 lookup #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.296271 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408383 cr=0x9cc3c00) #1000006026a/blarg101
2015-03-31 11:02:31.296273 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.296275 7fbe462be700 10 mds.0.cache traverse: miss on null+readable dentry blarg101 [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock) v=177798 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.296282 7fbe462be700 10 mds.0.server FAIL on error -2
2015-03-31 11:02:31.296284 7fbe462be700 10 mds.0.server reply_request -2 ((2) No such file or directory) client_request(client.708310:40408383 lookup #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.296293 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.296304 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408383 cr=0x9cc3c00)
2015-03-31 11:02:31.296780 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408384 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.296811 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408384 cr=0x9cc1180)
2015-03-31 11:02:31.296813 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408384 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.296816 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408384 cr=0x9cc1180) #10000000069
2015-03-31 11:02:31.296818 7fbe462be700  7 mds.0.cache traverse: opening base ino 10000000069 snap head
2015-03-31 11:02:31.296819 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.296820 7fbe462be700 10 mds.0.server ref is [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.296831 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408384 cr=0x9cc1180)
2015-03-31 11:02:31.296834 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.296852 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.296864 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.296873 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.296879 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.296893 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.296907 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.296918 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.296929 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808]
2015-03-31 11:02:31.296939 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_pin by 0x242cd500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+0 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808] now 1+0
2015-03-31 11:02:31.296947 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.296954 7fbe462be700 10 mds.0.cache.ino(10000000069) auth_pin by 0x242cd500 on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8] now 1+0
2015-03-31 11:02:31.296960 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.296975 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.296990 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297010 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297032 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.297041 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (isnap sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=1 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.297049 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297055 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297060 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297066 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (ixattr sync r=1) (iversion lock) caps={708310=pAsLsXsFscr/-@8} | request=1 lock=2 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297077 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408384 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.297081 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408384 getattr Xs #10000000069 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.297092 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.297096 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.297099 7fbe462be700 10 mds.0.cache.ino(10000000069) encode_inodestat issueing pAsLsXsFscr seq 9
2015-03-31 11:02:31.297101 7fbe462be700 10 mds.0.cache.ino(10000000069) encode_inodestat caps pAsLsXsFscr seq 9 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.297114 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408384 cr=0x9cc1180)
2015-03-31 11:02:31.297122 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.297149 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.297163 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297174 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297184 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.297193 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=1+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=1 0x5d19808]
2015-03-31 11:02:31.297212 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297219 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=1 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297224 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297231 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 ap=1+0 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=1 0x1e9574b8]
2015-03-31 11:02:31.297236 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.297250 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.297261 7fbe462be700 10 mds.0.cache.ino(10000000001) auth_unpin by 0x242cd500 on [inode 10000000001 [...2,head] /test_small/small1/ auth v2196005 ap=0+1 f(v0 m2015-03-28 16:14:14.000000 100001=100001+0) n(v0 rc2015-03-28 16:14:14.000000 b102401024000 100002=100001+1) (iversion lock) caps={275009=pAsLsXsFs/-@1,708310=pAsLsXsFs/-@17} | request=0 lock=0 dirfrag=1 caps=1 authpin=0 0x5d19808] now 0+1
2015-03-31 11:02:31.297269 7fbe462be700 10 mds.0.cache.ino(10000000069) auth_unpin by 0x242cd500 on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=1 lock=0 caps=1 authpin=0 0x1e9574b8] now 0+0
2015-03-31 11:02:31.297664 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408385 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.297684 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408385 cr=0x9cc6180)
2015-03-31 11:02:31.297686 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408385 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.297689 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408385 cr=0x9cc6180) #1000006026a
2015-03-31 11:02:31.297691 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.297692 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.297693 7fbe462be700 10 mds.0.server ref is [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.297711 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408385 cr=0x9cc6180)
2015-03-31 11:02:31.297714 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.297731 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297742 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.297752 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.297766 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.297781 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297798 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.297817 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.297828 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.297839 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.297854 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.297868 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297890 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.297900 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.297921 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.297931 7fbe462be700  7 mds.0.locker rdlock_start  on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.297941 7fbe462be700 10 mds.0.locker  got rdlock on (ixattr sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (ixattr sync r=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31592} | dirtyscattered=0 request=1 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.297956 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408385 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.297960 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408385 getattr Xs #1000006026a 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.297971 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.297980 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.297984 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31593
2015-03-31 11:02:31.297986 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31593 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.297999 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408385 cr=0x9cc6180)
2015-03-31 11:02:31.298019 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298034 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298048 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298058 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298069 7fbe462be700  7 mds.0.locker rdlock_finish on (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298079 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=1 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298101 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298111 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298121 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 1+0
2015-03-31 11:02:31.298135 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 1+1
2015-03-31 11:02:31.298146 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=1 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 1+1
2015-03-31 11:02:31.298532 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408386 create #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.298550 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408386 cr=0x9cc6e00)
2015-03-31 11:02:31.298552 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408386 create #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.298555 7fbe462be700  7 mds.0.server open w/ O_CREAT on #1000006026a/blarg101
2015-03-31 11:02:31.298556 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry request(client.708310:40408386 cr=0x9cc6e00) #1000006026a/blarg101
2015-03-31 11:02:31.298558 7fbe462be700 10 mds.0.server traverse_to_auth_dir dirpath #1000006026a dname blarg101
2015-03-31 11:02:31.298560 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006026a snap head
2015-03-31 11:02:31.298561 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.298562 7fbe462be700 10 mds.0.server traverse_to_auth_dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178815 v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.298572 7fbe462be700 10 mds.0.server rdlock_path_xlock_dentry dir [dir 1000006026a /test_small/small5/ [2,head] auth pv=178815 v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.298579 7fbe462be700 10 mds.0.server prepare_null_dentry blarg101 in [dir 1000006026a /test_small/small5/ [2,head] auth pv=178815 v=178813 cv=170705/170705 ap=1+2+2 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.298589 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408386 cr=0x9cc6e00)
2015-03-31 11:02:31.298595 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298614 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298625 7fbe462be700 10 mds.0.locker  must authpin [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock) v=177798 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298631 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298643 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=1+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298658 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x242cd500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.298672 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=1+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298682 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x242cd500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.298694 7fbe462be700 10 mds.0.locker  auth_pinning [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock) v=177798 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=0 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298699 7fbe462be700 10 mds.0.cache.den(1000006026a blarg101) auth_pin by 0x242cd500 on [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock) v=177798 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0] now 1+0
2015-03-31 11:02:31.298705 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=1+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298716 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x242cd500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.298727 7fbe462be700  7 mds.0.locker local_wrlock_start  on (dversion lock) on [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock) v=177798 ap=1+0 inode=0 | request=0 lock=0 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298732 7fbe462be700 10 mds.0.locker  got wrlock on (dversion lock w=1 last_client=708310) [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177798 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298738 7fbe462be700  7 mds.0.locker xlock_start on (dn sync) on [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177798 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298742 7fbe462be700  7 mds.0.locker simple_lock on (dn sync) on [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dversion lock w=1 last_client=708310) v=177798 ap=1+0 inode=0 | request=0 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298758 7fbe462be700  7 mds.0.locker simple_xlock on (dn lock) on [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177798 ap=1+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298763 7fbe462be700 10 mds.0.cache.den(1000006026a blarg101) auth_pin by 0x3cec638 on [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dn lock) (dversion lock w=1 last_client=708310) v=177798 ap=2+0 inode=0 | request=1 lock=1 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0] now 2+0
2015-03-31 11:02:31.298769 7fbe462be700 10 mds.0.locker  got xlock on (dn xlock x=1 by 0x242cd500) [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) v=177798 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298789 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298804 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298817 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298830 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.298843 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298853 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298862 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298872 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.298881 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298890 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298900 7fbe462be700 10 mds.0.locker wrlock_start (ifile lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=1) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298910 7fbe462be700 10 mds.0.locker  got wrlock on (ifile lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298919 7fbe462be700  7 mds.0.locker rdlock_start  on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298928 7fbe462be700 10 mds.0.locker  got rdlock on (iauth sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298938 7fbe462be700 10 mds.0.locker wrlock_start (inest lock w=1) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298947 7fbe462be700 10 mds.0.locker  got wrlock on (inest lock w=2) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298957 7fbe462be700  7 mds.0.locker rdlock_start  on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298965 7fbe462be700 10 mds.0.locker  got rdlock on (ipolicy sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.298983 7fbe462be700 10 mds.0.server prepare_new_inode used_prealloc 1000006b302 ([1000006b303~320], 800 left)
2015-03-31 11:02:31.298986 7fbe462be700 10 mds.0.server  dir mode 040755 new mode 0100644
2015-03-31 11:02:31.298987 7fbe462be700 10 mds.0.server prepare_new_inode [inode 1000006b302 [2,head] #1000006b302 auth v1 s=0 n() (iversion lock) 0x3f42ab78]
2015-03-31 11:02:31.298991 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178816
2015-03-31 11:02:31.298992 7fbe462be700 10 mds.0.cache.den(1000006026a blarg101)  pre_dirty [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) pv=178816 v=177798 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.298999 7fbe462be700 10 mds.0.cache predirty_journal_parents do_parent_mtime linkunlink=1 primary_dn follows head [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42ab78]
2015-03-31 11:02:31.299006 7fbe462be700 10 mds.0.cache.dir(1000006026a) auth_pin by 0x242cd500 on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178816 v=178813 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298] count now 2 + 4
2015-03-31 11:02:31.299015 7fbe462be700 10 mds.0.cache.dir(1000006026a) project_fnode 0x3c34620
2015-03-31 11:02:31.299017 7fbe462be700 10 mds.0.cache.dir(1000006026a) pre_dirty 178817
2015-03-31 11:02:31.299018 7fbe462be700 10 mds.0.cache predirty_journal_parents updating mtime UNDERWATER on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178817 v=178813 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.299024 7fbe462be700 10 mds.0.cache predirty_journal_parents updating size on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178817 v=178813 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.299032 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 1 [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0)/n() (iversion lock) cr={708310=0-4194304@1} 0x3f42ab78]
2015-03-31 11:02:31.299037 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:31.299038 7fbe462be700  7 mds.0.locker local_wrlock_grab  on (iversion lock w=1 last_client=708310) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295387 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=1 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299051 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295389
2015-03-31 11:02:31.299052 7fbe462be700 10 mds.0.cache.den(10000000000 small5)  pre_dirty [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295389 v=3295385 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.299056 7fbe462be700 10 mds.0.cache.ino(1000006026a) pre_dirty 3295389 (current v 3295385)
2015-03-31 11:02:31.299057 7fbe462be700 10 mds.0.cache predirty_journal_parents frag->inode on [dir 1000006026a /test_small/small5/ [2,head] auth pv=178817 v=178813 cv=170705/170705 ap=2+4+4 state=1610612738|complete f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 114=114+0) hs=114+1490,ss=0+0 dirty=927 | child=1 dirty=1 waiter=0 authpin=1 0x4759298]
2015-03-31 11:02:31.299063 7fbe462be700 10 mds.0.cache project_rstat_frag_to_inode [2,head]
2015-03-31 11:02:31.299065 7fbe462be700 10 mds.0.cache.dir(10000000000) auth_pin by 0x242cd500 on [dir 10000000000 /test_small/ [2,head] auth pv=3295389 v=3295386 cv=3287205/3287205 ap=2+2+3 state=1610612738|complete f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382417=382410+7) hs=10+0,ss=0+0 dirty=2 | child=1 dirty=1 waiter=0 authpin=1 0x4758770] count now 2 + 3
2015-03-31 11:02:31.299073 7fbe462be700 10 mds.0.cache.dir(10000000000) project_fnode 0x9683de0
2015-03-31 11:02:31.299074 7fbe462be700 10 mds.0.cache.dir(10000000000) pre_dirty 3295390
2015-03-31 11:02:31.299075 7fbe462be700 10 mds.0.cache  taking wrlock on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299087 7fbe462be700  7 mds.0.locker wrlock_force  on (inest lock w=1 dirty) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=1 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299097 7fbe462be700 10 mds.0.cache projected_rstat_inode_to_frag first 2 linkunlink 0 [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299108 7fbe462be700 10 mds.0.cache _project_rstat_inode_to_frag [2,head]
2015-03-31 11:02:31.299109 7fbe462be700 10 mds.0.cache predirty_journal_parents last prop 0.197806 < 1, stopping
2015-03-31 11:02:31.299113 7fbe462be700 10 mds.0.cache predirty_journal_parents stop.  marking nestlock on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299123 7fbe462be700 10 mds.0.locker mark_updated_scatterlock (inest lock w=2 dirty) - already on list since 2015-03-31 11:02:28.183466
2015-03-31 11:02:31.299126 7fbe462be700 10 mds.0.cache journal_cow_dentry follows head on [dentry #1/test_small/small5 [2,head] auth (dversion lock) pv=3295389 v=3295385 ap=0+3 inode=0x6604888 | inodepin=1 dirty=1 clientlease=0 0x676a960]
2015-03-31 11:02:31.299130 7fbe462be700 10 mds.0.cache journal_cow_dentry follows 1 < first on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (iauth sync r=1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31593} | dirtyscattered=0 request=0 lock=6 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299145 7fbe462be700  7 mds.0.locker issue_new_caps for mode 2 on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} 0x3f42ab78]
2015-03-31 11:02:31.299151 7fbe462be700 10 mds.0.cache.ino(1000006b302) add_client_cap first cap, joining realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0)
2015-03-31 11:02:31.299154 7fbe462be700 10 mds.0.locker eval 2496 [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0} | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299161 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:31.299162 7fbe462be700  7 mds.0.locker file_eval wanted=xwb loner_wanted=xwb other_wanted=  filelock=(ifile sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299169 7fbe462be700  7 mds.0.locker file_eval stable, bump to loner (ifile sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299176 7fbe462be700  7 mds.0.locker file_excl (ifile sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299182 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299188 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (iauth sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299194 7fbe462be700  7 mds.0.locker simple_excl on (iauth sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299200 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299206 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299211 7fbe462be700  7 mds.0.locker simple_eval stable, going to excl (ixattr sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299218 7fbe462be700  7 mds.0.locker simple_excl on (ixattr sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299223 7fbe462be700 10 mds.0.locker scatter_eval (inest sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299229 7fbe462be700  7 mds.0.locker simple_lock on (inest sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299235 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299241 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299246 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsxLsXsxFsxcrwbl, xlocker allowed=pAsxLsXsxFsxcrwbl, others allowed=pLs on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=-/pAsxXsxFxwb@0},l=708310 | caps=1 0x3f42ab78]
2015-03-31 11:02:31.299256 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.299257 7fbe462be700 10 mds.0.server adding ino to reply to indicate inode was created
2015-03-31 11:02:31.299259 7fbe462be700 10 mds.0.server journal_and_reply tracei 0x3f42ab78 tracedn 0x3cec4e0
2015-03-31 11:02:31.299261 7fbe462be700 10 mds.0.locker set_xlocks_done on (dn xlock x=1 by 0x242cd500) [dentry #1/test_small/small5/blarg101 [2,head] auth NULL (dn xlock x=1 by 0x242cd500) (dversion lock w=1 last_client=708310) pv=178816 v=177798 ap=2+0 inode=0 | request=1 lock=2 inodepin=0 dirty=1 authpin=1 clientlease=0 0x3cec4e0]
2015-03-31 11:02:31.299267 7fbe462be700 10 mds.0.server early_reply 0 ((0) Success) client_request(client.708310:40408386 create #1000006026a/blarg101 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.299273 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.299276 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat issueing pAsLsXs seq 31594
2015-03-31 11:02:31.299278 7fbe462be700 10 mds.0.cache.ino(1000006026a) encode_inodestat caps pAsLsXs seq 31594 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.299283 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 1
2015-03-31 11:02:31.299287 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat caps pAsxLsXsxFsxcrwb seq 1 mseq 0 xattrv 0 len 4
2015-03-31 11:02:31.299289 7fbe462be700 10 mds.0.cache.ino(1000006b302) including xattrs version 0
2015-03-31 11:02:31.299325 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299354 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299366 7fbe406af700  5 mds.0.log _submit_thread 5419765293~1618 : EUpdate openc [metablob 10000000000, 2 dirs]
2015-03-31 11:02:31.299369 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299383 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299409 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299420 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (ipolicy sync r=1) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299431 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299441 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299452 7fbe462be700  7 mds.0.locker rdlock_finish on (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299464 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=5 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299476 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299486 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ipolicy sync r=1) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299497 7fbe462be700  7 mds.0.locker rdlock_finish on (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299508 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299765 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408387 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.299786 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408387 cr=0x9cc2580)
2015-03-31 11:02:31.299789 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408387 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.299792 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408387 cr=0x9cc2580) #1000006b302
2015-03-31 11:02:31.299794 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b302 snap head
2015-03-31 11:02:31.299795 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.299796 7fbe462be700 10 mds.0.server ref is [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=1 caps=1 0x3f42ab78]
2015-03-31 11:02:31.299808 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408387 cr=0x9cc2580)
2015-03-31 11:02:31.299811 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299826 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299837 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299848 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42ab78]
2015-03-31 11:02:31.299857 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299872 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:31.299886 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299901 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:31.299913 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.299923 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:31.299934 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 0x3f42ab78]
2015-03-31 11:02:31.299943 7fbe462be700 10 mds.0.cache.ino(1000006b302) auth_pin by 0x2a625500 on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42ab78] now 1+0
2015-03-31 11:02:31.299953 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299968 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.299982 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.299992 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300002 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300013 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300037 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.300057 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@1},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.300075 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408387 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.300078 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408387 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.300088 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.300091 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.300095 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 2
2015-03-31 11:02:31.300098 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat caps pAsxLsXsxFsxcrwb seq 2 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.300110 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408387 cr=0x9cc2580)
2015-03-31 11:02:31.300129 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300145 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300159 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300170 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300180 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300189 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300211 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.300221 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.300231 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.300245 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.300255 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.300266 7fbe462be700 10 mds.0.cache.ino(1000006b302) auth_unpin by 0x2a625500 on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42ab78] now 0+0
2015-03-31 11:02:31.300561 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408388 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.300576 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408388 cr=0x9cc6b80)
2015-03-31 11:02:31.300579 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408388 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.300582 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408388 cr=0x9cc6b80) #1000006b302
2015-03-31 11:02:31.300583 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b302 snap head
2015-03-31 11:02:31.300585 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.300586 7fbe462be700 10 mds.0.server ref is [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42ab78]
2015-03-31 11:02:31.300597 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408388 cr=0x9cc6b80)
2015-03-31 11:02:31.300599 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300615 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300626 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300636 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42ab78]
2015-03-31 11:02:31.300645 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300660 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:31.300675 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300688 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:31.300699 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300708 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:31.300719 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42ab78]
2015-03-31 11:02:31.300728 7fbe462be700 10 mds.0.cache.ino(1000006b302) auth_pin by 0x2a625500 on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78] now 1+0
2015-03-31 11:02:31.300737 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300752 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300766 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300779 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300794 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300805 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300825 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.300847 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@2},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.300861 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408388 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.300864 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408388 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.300874 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.300877 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.300880 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 3
2015-03-31 11:02:31.300882 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat caps pAsxLsXsxFsxcrwb seq 3 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.300895 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408388 cr=0x9cc6b80)
2015-03-31 11:02:31.300913 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300929 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.300943 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300953 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.300973 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300983 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.300994 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.301005 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.301014 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.301028 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.301043 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.301054 7fbe462be700 10 mds.0.cache.ino(1000006b302) auth_unpin by 0x2a625500 on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42ab78] now 0+0
2015-03-31 11:02:31.304471 7fbe462be700  7 mds.0.locker handle_client_caps on 10000000069 follows 0 op update
2015-03-31 11:02:31.304474 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304485 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.304487 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.304506 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.304506 7fbe462be700 10 mds.0.locker   cap inode [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304513 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304521 7fbe462be700 10 mds.0.locker  wanted - -> pFscr
2015-03-31 11:02:31.304523 7fbe462be700 10 mds.0.locker  adding to open file list [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304534 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted pFscr on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304553 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304559 7fbe462be700 10 mds.0.locker eval set loner to client.708310
2015-03-31 11:02:31.304560 7fbe462be700  7 mds.0.locker file_eval wanted=scr loner_wanted=scr other_wanted=  filelock=(ifile sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304568 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304571 7fbe406af700  5 mds.0.log _submit_thread 5419766931~837 : EOpen [metablob 10000000001, 1 dirs], 1 open files
2015-03-31 11:02:31.304575 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304581 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304586 7fbe462be700 10 mds.0.locker scatter_eval (inest lock) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304591 7fbe462be700 10 mds.0.locker simple_eval (iflock sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304597 7fbe462be700 10 mds.0.locker simple_eval (ipolicy sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304602 7fbe462be700  7 mds.0.locker issue_caps loner client.708310 allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr, others allowed=pAsLsXsFscr on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.304612 7fbe462be700 10 mds.0.locker eval done
2015-03-31 11:02:31.344059 7fbe462be700  4 mds.0.server handle_client_request client_request(client.708310:40408389 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.344081 7fbe462be700  7 mds.0.cache request_start request(client.708310:40408389 cr=0x60abe80)
2015-03-31 11:02:31.344083 7fbe462be700  7 mds.0.server dispatch_client_request client_request(client.708310:40408389 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.344086 7fbe462be700 10 mds.0.server rdlock_path_pin_ref request(client.708310:40408389 cr=0x60abe80) #1000006b302
2015-03-31 11:02:31.344088 7fbe462be700  7 mds.0.cache traverse: opening base ino 1000006b302 snap head
2015-03-31 11:02:31.344090 7fbe462be700 10 mds.0.cache path_traverse finish on snapid head
2015-03-31 11:02:31.344091 7fbe462be700 10 mds.0.server ref is [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=1 lock=0 caps=1 authpin=0 0x3f42ab78]
2015-03-31 11:02:31.344108 7fbe462be700 10 mds.0.locker acquire_locks request(client.708310:40408389 cr=0x60abe80)
2015-03-31 11:02:31.344111 7fbe462be700 10 mds.0.locker  must authpin [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.344129 7fbe462be700 10 mds.0.locker  must authpin [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.344141 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.344153 7fbe462be700 10 mds.0.locker  must authpin [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42ab78]
2015-03-31 11:02:31.344164 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.344179 7fbe462be700 10 mds.0.cache.ino(1) auth_pin by 0x2a625500 on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 3+0
2015-03-31 11:02:31.344195 7fbe462be700 10 mds.0.locker  auth_pinning [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.344214 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_pin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 3+1
2015-03-31 11:02:31.344226 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.344236 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_pin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 3+1
2015-03-31 11:02:31.344248 7fbe462be700 10 mds.0.locker  auth_pinning [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42ab78]
2015-03-31 11:02:31.344269 7fbe462be700 10 mds.0.cache.ino(1000006b302) auth_pin by 0x2a625500 on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78] now 1+0
2015-03-31 11:02:31.344279 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.344317 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (isnap sync r=1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.344330 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.344346 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (isnap sync r=1) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=2 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.344355 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.344365 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (isnap sync r=1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=4 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.344375 7fbe462be700  7 mds.0.locker rdlock_start  on (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.344384 7fbe462be700 10 mds.0.locker  got rdlock on (isnap sync r=1) [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@3},l=708310 | request=2 lock=1 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.344398 7fbe462be700 10 mds.0.server reply to stat on client_request(client.708310:40408389 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.344402 7fbe462be700 10 mds.0.server reply_request 0 ((0) Success) client_request(client.708310:40408389 getattr Xs #1000006b302 2015-03-31 11:03:08.000000) v2
2015-03-31 11:02:31.344413 7fbe462be700 10 mds.0.server apply_allocated_inos 0 / [] / 0
2015-03-31 11:02:31.344417 7fbe462be700 10 mds.0.server set_trace_dist snaprealm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) len=48
2015-03-31 11:02:31.344421 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat issueing pAsxLsXsxFsxcrwb seq 4
2015-03-31 11:02:31.344423 7fbe462be700 10 mds.0.cache.ino(1000006b302) encode_inodestat caps pAsxLsXsxFsxcrwb seq 4 mseq 0 xattrv 0 len 0
2015-03-31 11:02:31.344437 7fbe462be700  7 mds.0.cache request_finish request(client.708310:40408389 cr=0x60abe80)
2015-03-31 11:02:31.344456 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.344472 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1 [...2,head] / auth v53477 ap=3+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.344486 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.344496 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=3+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270]
2015-03-31 11:02:31.344506 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.344516 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=3+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888]
2015-03-31 11:02:31.344537 7fbe462be700  7 mds.0.locker rdlock_finish on (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.344548 7fbe462be700 10 mds.0.locker simple_eval (isnap sync) on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 ap=1+0 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=1 0x3f42ab78]
2015-03-31 11:02:31.344557 7fbe462be700 10 mds.0.cache.ino(1) auth_unpin by 0x2a625500 on [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938] now 2+0
2015-03-31 11:02:31.344572 7fbe462be700 10 mds.0.cache.ino(10000000000) auth_unpin by 0x2a625500 on [inode 10000000000 [...2,head] /test_small/ auth v120430 ap=2+1 f(v0 m2015-03-30 12:06:43.000000 10=3+7) n(v7366 rc2015-03-31 11:03:08.000000 b422190090565 382418=382410+8) (inest lock w=2 dirty) (iversion lock) caps={275009=pAsLsXsFs/-@3,708310=pAsLsXsFs/-@167} | dirtyscattered=1 request=0 lock=1 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x39c1270] now 2+1
2015-03-31 11:02:31.344583 7fbe462be700 10 mds.0.cache.ino(1000006026a) auth_unpin by 0x2a625500 on [inode 1000006026a [...2,head] /test_small/small5/ auth v3295385 pv3295389 ap=2+1 f(v0 m2015-03-31 11:03:08.000000 114=114+0) n(v1 rc2015-03-31 11:03:08.000000 115=114+1) (inest lock w=2) (ifile lock w=2) (iversion lock w=2 last_client=708310) caps={275009=pAsLsXs/-@2,708310=pAsLsXs/p@31594} | dirtyscattered=0 request=0 lock=3 dirfrag=1 caps=1 dirtyrstat=0 dirty=1 waiter=0 authpin=1 0x6604888] now 2+1
2015-03-31 11:02:31.344594 7fbe462be700 10 mds.0.cache.ino(1000006b302) auth_unpin by 0x2a625500 on [inode 1000006b302 [2,head] {#1000006b302 /test_small/small5/blarg101} auth v178816 s=0 n(v0 1=1+0) (iauth excl) (ifile excl) (ixattr excl) (iversion lock) cr={708310=0-4194304@1} caps={708310=pAsxLsXsxFsxcrwb/pAsxXsxFxwb@4},l=708310 | request=2 lock=0 caps=1 authpin=0 0x3f42ab78] now 0+0
2015-03-31 11:02:31.345872 7fbe462be700  7 mds.0.locker handle_client_caps on 10000000069 follows 0 op update
2015-03-31 11:02:31.345876 7fbe462be700 10 mds.0.cache pick_inode_snap follows 0 on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345887 7fbe462be700 10  mds.0.cache.snaprealm(1 seq 1 0x357fbc0) get_snaps  (seq 1 cached_seq 1)
2015-03-31 11:02:31.345889 7fbe462be700 10 mds.0.cache  realm snaprealm(1 seq 1 lc 0 cr 0 cps 1 snaps={} 0x357fbc0) [inode 1 [...2,head] / auth v53477 ap=2+0 snaprealm=0x357fbc0 f(v0 m2015-03-29 14:32:20.000000 2=0+2) n(v8750 rc2015-03-31 11:02:31.000000 b422190196760 382321=382311+10)/n(v0 1=0+1) (inest lock dirty) (iversion lock) caps={275009=pAsLsXsFs/-@1,279736=pAsLsXsFs/-@0,620289=pAsLsXsFs/-@0,687246=pAsLsXsFs/-@0,706230=pAsLsXsFs/-@0,708310=pAsLsXsFs/-@59} | dirtyscattered=1 request=0 lock=0 dirfrag=1 caps=1 dirty=1 authpin=1 0x39c0938]
2015-03-31 11:02:31.345908 7fbe462be700 10 mds.0.cache  snaps 
2015-03-31 11:02:31.345908 7fbe462be700 10 mds.0.locker   cap inode [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345915 7fbe462be700 10 mds.0.locker  follows 0 retains pAsLsXsFscr dirty - on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/pFscr@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345923 7fbe462be700 10 mds.0.locker  wanted pFscr -> -
2015-03-31 11:02:31.345925 7fbe462be700 10 mds.0.locker  removing unwanted file from open file list [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345930 7fbe462be700 10 mds.0.locker _do_cap_update dirty - issued pAsLsXsFscr wanted - on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345938 7fbe462be700 10 mds.0.locker eval 2496 [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310 | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345943 7fbe462be700 10 mds.0.locker eval doesn't want loner
2015-03-31 11:02:31.345944 7fbe462be700  7 mds.0.locker file_eval wanted= loner_wanted= other_wanted=  filelock=(ifile sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345950 7fbe462be700 10 mds.0.locker simple_eval (iauth sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345957 7fbe462be700 10 mds.0.locker simple_eval (ilink sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345963 7fbe462be700 10 mds.0.locker simple_eval (ixattr sync) on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9},l=708310(-1) | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345969 7fbe462be700 10 mds.0.locker   trying to drop loner
2015-03-31 11:02:31.345970 7fbe462be700 10 mds.0.locker   dropped loner
2015-03-31 11:02:31.345971 7fbe462be700  7 mds.0.locker issue_caps allowed=pAsLsXsFscr, xlocker allowed=pAsLsXsFscr on [inode 10000000069 [2,head] /test_small/small1/blarg101 auth v59082 s=1024000 n(v0 b1024000 1=1+0) (iversion lock) caps={708310=pAsLsXsFscr/-@9} | request=0 lock=0 caps=1 authpin=0 0x1e9574b8]
2015-03-31 11:02:31.345978 7fbe462be700 10 mds.0.locker eval done
_______________________________________________
ceph-users mailing list
ceph-users@xxxxxxxxxxxxxx
http://lists.ceph.com/listinfo.cgi/ceph-users-ceph.com

[Index of Archives]     [Information on CEPH]     [Linux Filesystem Development]     [Ceph Development]     [Ceph Large]     [Linux USB Development]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [xfs]


  Powered by Linux